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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-deeper: #1e40af;
  --primary-light: #eff6ff;
  --primary-glow: rgba(37,99,235,0.15);
  --secondary: #0f172a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --success-light: #ecfdf5;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.03);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.938rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(37,99,235,0.3), 0 4px 12px rgba(37,99,235,0.15);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(37,99,235,0.3), 0 8px 24px rgba(37,99,235,0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
  background: var(--gray-50);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* ===== HEADER / NAV ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-brand span {
  color: var(--secondary);
}

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

.nav-links a {
  padding: 0.5rem 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -8px;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 20px 40px -4px rgba(0,0,0,0.1);
  padding: 0.5rem;
  padding-top: calc(0.5rem + 8px);
  z-index: 100;
  border: 1px solid var(--gray-100);
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.875rem;
  border-radius: 8px;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-login {
  color: var(--gray-600);
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
}

.nav-login:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  transition: var(--transition);
  display: block;
  border-radius: 2px;
}

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

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

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

/* ===== HERO ===== */

.hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.813rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-xs);
  letter-spacing: -0.01em;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 50%, var(--primary-deeper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.hero-stat h3 {
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-stat p {
  font-size: 0.813rem;
  color: var(--gray-500);
  margin-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== VIDEO SHOWCASE ===== */

.video-showcase {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.video-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--secondary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 30px 60px rgba(0,0,0,0.08);
  aspect-ratio: 16 / 9;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2744 50%, var(--primary-deeper) 100%);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-slow);
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(255,255,255,0.15);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.1);
}

.play-button svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  margin-left: 4px;
}

.video-placeholder p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.video-frame-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 28px;
  background: var(--gray-800);
  border-radius: 0 0 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.video-frame-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-600);
}

.video-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), #60a5fa, var(--primary));
  z-index: -1;
  opacity: 0.2;
  filter: blur(20px);
}

/* ===== SECTIONS ===== */

.section {
  padding: 6rem 0;
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--gray-400);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  background: var(--primary-light);
  padding: 0.25rem 0.875rem;
  border-radius: 50px;
}

/* ===== FEATURE CARDS ===== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.feature-card h3 {
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.feature-card .card-link {
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
}

.feature-card .card-link::after {
  content: '\2192';
  transition: var(--transition);
}

.feature-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ===== INDUSTRY CARDS ===== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  transform: scaleX(0);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-icon {
  font-size: 2.25rem;
  margin-bottom: 0.875rem;
  display: block;
}

.industry-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.375rem;
  color: var(--secondary);
  font-weight: 700;
}

.industry-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== PRICING ===== */

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--gray-100);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid var(--gray-200);
}

.pricing-toggle-wrapper {
  text-align: center;
}

.pricing-toggle button {
  padding: 0.55rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
}

.pricing-toggle button.active {
  background: var(--white);
  color: var(--secondary);
  box-shadow: var(--shadow);
}

.pricing-save {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  margin-left: 0.75rem;
  background: var(--success-light);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(37,99,235,0.12), 0 20px 40px rgba(37,99,235,0.06);
}

.pricing-card.featured .pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.3rem 1.125rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}

.pricing-card .pricing-desc {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}

.pricing-amount {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-amount .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.03em;
}

.pricing-amount .period {
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.pricing-features li {
  padding: 0.45rem 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card .btn {
  width: 100%;
  padding: 0.875rem;
}

/* ===== HOW IT WORKS ===== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200), var(--primary), var(--gray-200));
  z-index: 0;
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary-light);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */

.cta-banner {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2744 50%, var(--primary-deeper) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96,165,250,0.15) 0%, transparent 65%);
  border-radius: 50%;
}

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

.cta-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-white {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

/* ===== BREADCRUMBS ===== */

.breadcrumbs {
  padding: 0.875rem 0;
  margin-top: 72px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.813rem;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
}

.breadcrumbs li:not(:last-child)::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  display: inline-block;
}

.breadcrumbs a {
  color: var(--gray-500);
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs li:last-child {
  color: var(--primary);
  font-weight: 600;
}

/* ===== PAGE HERO ===== */

.page-hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.75;
}

.page-hero .hero-actions {
  margin-top: 1.5rem;
}

/* ===== CONTENT SECTION ===== */

.content-section {
  padding: 4rem 0;
}

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

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  margin-bottom: 1rem;
}

.content-text p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

.content-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.content-text ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--success-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.content-image {
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.content-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.content-image .placeholder {
  text-align: center;
  color: var(--gray-400);
  padding: 2.5rem;
}

.placeholder-icon {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

/* ===== BENEFITS LIST ===== */

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

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--primary);
}

.benefit-item h4 {
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.benefit-item p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.938rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-800);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

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

.input-error {
  border-color: var(--danger) !important;
}

.form-error {
  display: block;
  color: var(--danger);
  font-size: 0.75rem;
  margin-top: 0.375rem;
  font-weight: 500;
}

.form-success {
  background: var(--success-light);
  border: 1px solid var(--success);
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-info {
  padding: 2rem 0;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-detail p {
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.contact-detail a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== INTERNAL LINKS SECTION ===== */

.related-links {
  padding: 4rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.related-links h3 {
  margin-bottom: 1.75rem;
  text-align: center;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.link-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.link-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.link-card h4 {
  color: var(--primary);
  margin-bottom: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
}

.link-card p {
  color: var(--gray-500);
  font-size: 0.813rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--secondary);
  color: var(--gray-400);
  padding: 5rem 0 2rem;
}

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

.footer-brand {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  color: var(--gray-400);
}

.footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: var(--transition);
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.lifetime-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
}

.lifetime-section .section-header {
  margin-bottom: 2rem;
}

.lifetime-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pricing-card .lifetime-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.footer-promo {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-promo h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-promo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-promo-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.footer-promo-links a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

.footer-promo-links a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.813rem;
}

.footer-bottom p {
  color: var(--gray-500);
  margin-bottom: 0;
}

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

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.813rem;
}

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

/* ===== FADE IN ANIMATION ===== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== ABOUT PAGE ===== */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.value-card .feature-icon {
  margin: 0 auto 1.25rem;
}

/* ===== TRUST BAR ===== */

.trust-bar {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--primary);
  border: 1px solid var(--gray-100);
}

/* ===== COMPARISON TABLE ===== */

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: 3rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-700);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--gray-50);
}

/* ===== FAQ ===== */

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-question {
  padding: 1.125rem 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  background: var(--white);
}

.faq-answer {
  padding: 0 1.5rem 1.125rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== RESPONSIVE ===== */

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

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .content-grid {
    gap: 3rem;
  }

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
  }

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

  .nav-links a {
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-top: 0.25rem;
    display: none;
    animation: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .hero {
    padding: 6.5rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

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

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

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

  .content-grid.reverse {
    direction: ltr;
  }

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

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

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

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

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

  .about-values {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-banner {
    padding: 4rem 0;
  }

  .cta-banner h2 {
    font-size: 1.625rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .video-wrapper {
    border-radius: var(--radius-lg);
  }

  .video-frame-top {
    width: 140px;
    height: 22px;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .play-button svg {
    width: 22px;
    height: 22px;
  }

  .trust-items {
    gap: 1.5rem;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.625rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-items {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  color: var(--gray-300);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner-text a:hover {
  color: var(--primary-hover);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

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

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

.cookie-btn-secondary {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ===== GDPR CONSENT CHECKBOX ===== */

.gdpr-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.gdpr-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.gdpr-consent label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
}

.gdpr-consent label a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== LEGAL PAGES ===== */

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

.legal-content h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.legal-content .legal-updated {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  color: var(--gray-600);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.legal-content table th,
.legal-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--gray-200);
}

.legal-content table th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-800);
}

.legal-content table td {
  color: var(--gray-600);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 0;
  }

  .legal-content h1 {
    font-size: 1.75rem;
  }

  .legal-content table {
    font-size: 0.8rem;
  }
}
