/* ============================================
   XTD Tech - Corporate Website Styles
   Color Palette: Cyber Teal (2026 Trend)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Dark Palette */
  --brand-950: #060b14;
  --brand-900: #0a1120;
  --brand-850: #0e1a2e;
  --brand-800: #142036;
  --brand-700: #1e3050;
  --brand-600: #2a4068;

  /* Accent - Cyber Teal */
  --accent-600: #00a88a;
  --accent-500: #00d4aa;
  --accent-400: #2eecc6;
  --accent-300: #6ff5da;
  --accent-200: #a0f9e8;

  /* Secondary - Sky Blue */
  --secondary-600: #0284c7;
  --secondary-500: #0ea5e9;
  --secondary-400: #38bdf8;

  /* Neutrals */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  /* Semantic */
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4aa 0%, #0ea5e9 100%);
  --gradient-heading: linear-gradient(135deg, #6ff5da, #00d4aa, #2eecc6);
  --gradient-cta: linear-gradient(135deg, #00d4aa 0%, #0ea5e9 50%, #00d4aa 100%);
  --gradient-dark: linear-gradient(180deg, #060b14 0%, #0a1120 100%);
  --gradient-glow: radial-gradient(circle, rgba(0,212,170,0.15) 0%, transparent 70%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--brand-950);
  color: var(--neutral-400);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

ul {
  list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

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

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

.section {
  padding: 5rem 0;
}

.section-lg {
  padding: 7rem 0;
}

/* Section Themes */
.section-dark {
  background-color: var(--brand-950);
}

.section-darker {
  background-color: var(--brand-900);
}

.section-light {
  background-color: var(--neutral-50);
}

.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--neutral-900);
}

.section-light p,
.section-light li {
  color: var(--neutral-600);
}

/* --- Section Header --- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.badge-dark {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent-400);
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.badge-light {
  background: rgba(0, 212, 170, 0.08);
  color: var(--accent-600);
  border: 1px solid rgba(0, 212, 170, 0.15);
}

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

.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(6, 11, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 11, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--neutral-50);
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--brand-950);
}

.nav-logo .logo-sub {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--neutral-500);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-400);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--neutral-50);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--brand-950);
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(0, 212, 170, 0.4);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--neutral-200);
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  border: 1px solid var(--brand-700);
}

.btn-secondary:hover {
  border-color: var(--accent-500);
  color: white;
  background: rgba(0, 212, 170, 0.05);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-white {
  background: white;
  color: var(--accent-600);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  filter: brightness(0.95);
}

/* --- Mobile Menu --- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--neutral-300);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 11, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}

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

.mobile-menu a {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--neutral-300);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: rgba(0, 212, 170, 0.05);
  color: var(--neutral-50);
}

.mobile-menu .btn-primary {
  margin-top: 1rem;
  text-align: center;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-text .section-badge {
  animation: fadeInUp 0.6s ease forwards;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-text .hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-400);
  margin-bottom: 1rem;
  line-height: 1.7;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-pricing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-400);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.25s forwards;
  opacity: 0;
}

.hero-pricing svg {
  width: 16px;
  height: 16px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-dashboard {
  flex: 1;
  min-width: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

/* Dashboard mockup */
.dashboard-card {
  background: var(--brand-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 80px rgba(0, 212, 170, 0.05);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-200);
}

.dashboard-live {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--success);
}

.dashboard-live .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  background: var(--brand-850);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1rem;
}

.stat-card .stat-label {
  font-size: 0.6875rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.stat-card .stat-value {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--neutral-50);
}

.stat-card .stat-change {
  font-size: 0.6875rem;
  color: var(--success);
  margin-top: 0.25rem;
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.activity-feed-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  background: var(--brand-850);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8125rem;
}

.activity-icon.teal {
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent-400);
}

.activity-icon.blue {
  background: rgba(14, 165, 233, 0.12);
  color: var(--secondary-400);
}

.activity-icon.amber {
  background: rgba(251, 191, 36, 0.12);
  color: var(--warning);
}

.activity-text {
  font-size: 0.8125rem;
  color: var(--neutral-300);
  flex: 1;
}

.activity-time {
  font-size: 0.6875rem;
  color: var(--neutral-600);
  flex-shrink: 0;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Cards --- */
.card {
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.card-dark {
  background: var(--brand-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-dark:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-light {
  background: white;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.card-light:hover {
  border-color: var(--accent-500);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.card-icon.teal {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent-400);
}

.card-icon.blue {
  background: rgba(14, 165, 233, 0.1);
  color: var(--secondary-400);
}

.card-icon.amber {
  background: rgba(251, 191, 36, 0.1);
  color: var(--warning);
}

.card-icon.red {
  background: rgba(248, 113, 113, 0.1);
  color: var(--danger);
}

.card h3 {
  margin-bottom: 0.625rem;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-400);
  transition: gap 0.2s ease;
}

.card:hover .card-link {
  gap: 0.625rem;
}

/* --- Feature Section (side-by-side) --- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-visual {
  flex: 1;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(0, 212, 170, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-400);
  font-size: 0.75rem;
}

.feature-list-item span {
  font-size: 0.9375rem;
  color: var(--neutral-300);
  line-height: 1.5;
}

/* Feature visual panel */
.feature-panel {
  background: var(--brand-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Mini feature cards */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.mini-card {
  background: var(--brand-850);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.875rem;
  text-align: center;
}

.mini-card-icon {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}

.mini-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--neutral-400);
}

/* --- AI Workforce Table --- */
.ai-table {
  background: var(--brand-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

.ai-table-row {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.ai-table-row:last-child {
  border-bottom: none;
}

.ai-table-row:hover {
  background: rgba(0, 212, 170, 0.03);
}

.ai-table-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.ai-table-info {
  flex: 1;
}

.ai-table-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--neutral-100);
  margin-bottom: 0.25rem;
}

.ai-table-info p {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

.ai-table-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.tag-active {
  background: rgba(52, 211, 153, 0.1);
  color: var(--success);
}

.tag-coming {
  background: rgba(251, 191, 36, 0.1);
  color: var(--warning);
}

/* --- Partners / Trust --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: var(--brand-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-2px);
}

.partner-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.partner-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.partner-card p {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--brand-850);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.trust-badge-icon {
  color: var(--accent-400);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neutral-300);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 6rem 0;
  background: var(--gradient-primary);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-content h2 {
  color: var(--brand-950);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(6, 11, 20, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

.cta-trust {
  font-size: 0.8125rem;
  color: rgba(6, 11, 20, 0.5);
}

/* --- Footer --- */
.footer {
  background: var(--brand-950);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 4rem;
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral-300);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--neutral-500);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.2);
  color: var(--accent-400);
}

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

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

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Stagger children --- */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* --- Counter animation --- */
.counter {
  display: inline-block;
}

/* --- Industry icons --- */
.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 2.5rem;
  }

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

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

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

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

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }

  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .mobile-toggle { display: block; }

  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

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

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

  .trust-badges {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

::-webkit-scrollbar-track {
  background: var(--brand-950);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-600);
}
