/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-blue: #0052CC;
  --primary-purple: #7C3AED;
  --accent-cyan: #00D9FF;
  --success-green: #10B981;
  --warning-orange: #F59E0B;
  --error-red: #F04438;
  --neutral-gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
  --gradient-success: linear-gradient(135deg, var(--success-green) 0%, #22C55E 100%);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 12px;
  --border-radius-large: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Animations */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

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

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

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

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  font-family: var(--font-primary);
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 24px;
  font-size: 16px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 10px 22px;
  font-size: 16px;
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  border-radius: var(--border-radius-large);
}

.btn-full {
  width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-cta {
  display: flex;
  gap: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%230052CC" fill-opacity="0.02"><circle cx="30" cy="30" r="1"/></g></g></svg>') repeat;
  pointer-events: none;
}

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

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--neutral-gray);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Statistics Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.stat {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.stat:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-accent);
}

.stat-percent, .stat-currency, .stat-unit {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-purple);
}

.stat-label {
  font-size: 14px;
  color: var(--neutral-gray);
  margin-top: 8px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.hero-img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* ===== SECTIONS ===== */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--neutral-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background-color: var(--light-gray);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  border-left: 4px solid var(--error-red);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.problem-icon {
  margin-bottom: 24px;
}

.problem-card h3 {
  color: var(--error-red);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.problem-card ul {
  list-style: none;
  text-align: left;
}

.problem-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.problem-card li:last-child {
  border-bottom: none;
}

/* ===== SOLUTION SECTION ===== */
.solution {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 82, 204, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.benefit-icon {
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.benefit-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.benefit-card li {
  padding: 6px 0;
  position: relative;
  padding-left: 24px;
}

.benefit-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.metric-highlight {
  background: var(--gradient-success);
  color: var(--white);
  padding: 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  margin-top: auto;
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
  background: var(--light-gray);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.industry-icon {
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.industry-content p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.industry-content strong {
  color: var(--black);
}

/* ===== FEATURES SECTION ===== */
.features {
  background: var(--white);
}

.features-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--light-gray);
  border-radius: var(--border-radius-large);
  padding: 8px;
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-weight: 600;
  white-space: nowrap;
  min-width: 0;
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.tab-btn:not(.active) {
  color: var(--neutral-gray);
}

.tab-btn:not(.active):hover {
  background: rgba(0, 82, 204, 0.1);
  color: var(--primary-blue);
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
  display: block;
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-text h3 {
  margin-bottom: 24px;
  color: var(--primary-blue);
}

.feature-text ul {
  list-style: none;
}

.feature-text li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.feature-text li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: bold;
}

.integration-categories {
  display: grid;
  gap: 16px;
}

.integration-category {
  background: var(--light-gray);
  padding: 16px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-blue);
}

/* Feature Visuals */
.waveform-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 200px;
}

.wave-bar {
  width: 8px;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: wave 1.5s ease-in-out infinite;
  animation-delay: var(--delay);
}

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

.integration-network {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.network-node {
  position: absolute;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  transform-origin: center;
  animation: rotate 20s linear infinite;
}

.network-node.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-accent);
  font-size: 16px;
  z-index: 2;
}

.network-node:not(.center) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle)));
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg) translateY(-120px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateY(-120px) rotate(-360deg); }
}

.dashboard-mockup {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: var(--border-radius-large);
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.dashboard-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

.dashboard-metrics {
  display: flex;
  gap: 24px;
}

.metric-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: var(--font-accent);
}

.metric-label {
  font-size: 14px;
  opacity: 0.8;
}

.security-shield {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: center;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

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

.pricing-header h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

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

.currency {
  font-size: 20px;
  color: var(--neutral-gray);
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black);
  font-family: var(--font-accent);
}

.period {
  font-size: 16px;
  color: var(--neutral-gray);
}

.custom {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
}

.pricing-description {
  color: var(--neutral-gray);
  font-size: 16px;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.bonus {
  background: linear-gradient(135deg, #fef3e2 0%, #fde68a 100%);
  color: #92400e;
  padding: 16px;
  border-radius: var(--border-radius);
  margin: 20px 0;
  font-size: 14px;
  font-weight: 600;
}

.roi-info {
  font-size: 14px;
  color: var(--success-green);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-guarantee {
  max-width: 800px;
  margin: 64px auto 0;
  text-align: center;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-lg);
}

.pricing-guarantee h4 {
  margin-bottom: 24px;
  color: var(--primary-blue);
}

.guarantee-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.guarantee-item {
  color: var(--success-green);
  font-weight: 600;
}

.money-back {
  background: var(--gradient-success);
  color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23FFFFFF" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>') repeat;
  pointer-events: none;
}

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

.cta-title {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.urgency-banner {
  background: rgba(245, 158, 11, 0.9);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--border-radius-large);
  margin-bottom: 32px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

.benefits-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.benefit-item {
  font-weight: 600;
  font-size: 16px;
}

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

.cta .btn-primary {
  background: var(--white);
  color: var(--primary-blue);
}

.cta .btn-primary:hover {
  background: var(--light-gray);
}

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

.cta .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.trust-line {
  opacity: 0.8;
  font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.contact-info p {
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: var(--accent-cyan);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 20px;
  transition: transform var(--transition-fast);
}

.social-links a:hover {
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .nav-links {
    display: none;
  }
  
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-cta {
    flex-direction: column;
    gap: 8px;
  }
  
  .nav-cta .btn-secondary,
  .nav-cta .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    align-items: center;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
  
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  
  .problem-card {
    padding: 20px;
  }
  
  .benefits-checklist {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .pricing-card {
    padding: 16px;
  }
  
  .pricing-card.featured {
    transform: scale(1.01);
  }
  
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .problem-card {
    padding: 16px;
  }
  
  .problem-card h3 {
    font-size: 14px;
  }
  
  .benefit-card {
    padding: 24px;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

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

/* ===== 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; }

.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; }
/* ===== PRICING FOOTER ALIGNMENT ===== */
.pricing-footer {
  margin-top: auto;
  border-top: 1px solid var(--light-gray);
  padding-top: 24px;
}

.pricing-features {
  flex-grow: 1;
}

.industry-content {
  flex-grow: 1;
}

/* ===== LEGAL CONTENT PAGES ===== */
.legal-content {
  padding: 120px 0 80px;
  background: var(--white);
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 8px;
}

.last-updated {
  color: var(--neutral-gray);
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.25rem;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content .contact-info {
  background: var(--light-gray);
  padding: 24px;
  border-radius: var(--border-radius);
  margin: 24px 0;
  border-left: 4px solid var(--primary-blue);
}

.legal-content .contact-info p {
  margin-bottom: 8px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--light-gray);
  padding: var(--section-padding);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: border-color var(--transition-fast);
  font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

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

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

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.success-message {
  background: var(--success-green);
  color: var(--white);
  padding: 16px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 24px;
  display: none;
}

.success-message.show {
  display: block;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.cookie-btn.accept {
  background: var(--primary-blue);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background: var(--primary-purple);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn.decline:hover {
  background: var(--white);
  color: var(--black);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    min-width: auto;
  }
}