/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  /* --- Colors --- */
  --color-accent:       #00E887;
  --color-accent-dark:  #00c46e;
  --color-blue:         #2563EB;
  --color-blue-dark:    #1d4ed8;
  --color-black:        #0A0A0A;
  --color-text:         #0A0A0A;
  --color-text-muted:   #64748b;
  --color-text-faint:   #94a3b8;
  --color-bg:           #ffffff;
  --color-bg-light:     #f8fafc;
  --color-bg-subtle:    #f1f5f9;
  --color-border:       #e2e8f0;
  --color-border-dark:  rgba(255, 255, 255, 0.1);
  --color-surface-dark: rgba(255, 255, 255, 0.05);
  --color-overlay:      rgba(10, 10, 10, 0.1);

  /* Semantic */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error:   #ef4444;

  /* Gradients */
  --gradient-primary:  linear-gradient(135deg, var(--color-accent), var(--color-blue));
  --gradient-dark:     linear-gradient(135deg, #0A0A0A, #1e293b);
  --gradient-bg:       linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  --gradient-process:  linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);

  /* --- Typography --- */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:  'Fraunces', serif;
  --font-mono:    'Courier New', monospace;

  --lh-tight:   1.1;
  --lh-snug:    1.5;
  --lh-normal:  1.7;

  --ls-tight:   -1px;
  --ls-snug:    -0.4px;
  --ls-normal:  0;

  /* --- Spacing --- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-30: 120px;

  /* --- Radii --- */
  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  22px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm:   0 2px 8px  rgba(0, 0, 0, 0.06);
  --shadow-md:   0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:   0 16px 40px rgba(0, 0, 0, 0.10);
  --shadow-xl:   0 24px 54px rgba(0, 0, 0, 0.14);
  --shadow-accent: 0 8px 24px rgba(0, 232, 135, 0.30);
  --shadow-accent-lg: 0 16px 40px rgba(0, 232, 135, 0.38);

  /* --- Transitions --- */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: var(--lh-normal);
  color: var(--color-text);
  overflow-x: hidden;
}

/* Accessibility — keyboard focus */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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


/* ========================================
   TYPOGRAPHY
   ======================================== */
.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
}


/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-overlay);
  z-index: 1000;
  transition: all var(--t-base);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo a {
  display: inline-block;
  transition: transform var(--t-base);
}

.nav-logo a:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 32px;
  width: auto;
  display: block;
}

.logo-quantum { color: var(--color-black); }
.logo-now     { color: var(--color-accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--t-base);
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-black);
  margin: 3px 0;
  transition: var(--t-base);
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, rgba(0, 232, 135, 0.3), rgba(37, 99, 235, 0.2));
  top: 20%; right: 10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(0, 232, 135, 0.2));
  bottom: 30%; left: 15%;
  animation-delay: 3s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: linear-gradient(135deg, rgba(0, 232, 135, 0.2), rgba(37, 99, 235, 0.3));
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.5s;
}
.orb-4 {
  width: 250px; height: 250px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(0, 232, 135, 0.3));
  bottom: 10%; right: 20%;
  animation-delay: 4.5s;
}

.gradient-mesh {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(0, 232, 135, 0.1) 0%, transparent 50%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0, 232, 135, 0.1);
  color: var(--color-text);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(48px, 8vw, 64px);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 20px;
  line-height: var(--lh-normal);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

/* ========================================
   BUTTONS — unified system
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 232, 135, 0.30);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn--outline:hover {
  background: var(--color-bg-subtle);
  transform: translateY(-1px);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: 18px;
}

/* Legacy aliases — kept so existing HTML doesn't break */
.btn-primary  { @extend .btn--primary; }
.btn-secondary { @extend .btn--outline; }
.btn-large    { @extend .btn--lg; }

/* ========================================
   HERO STATS
   ======================================== */
.hero-stats {
  display: flex;
  gap: var(--space-10);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
}


/* ========================================
   HERO VISUAL
   ======================================== */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.card-1 { width: 280px; padding: var(--space-5); top: 50px; left: 0; animation-delay: 0s; }
.card-2 { width: 260px; padding: var(--space-6); bottom: 80px; right: 20px; animation-delay: 2s; }

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4);
}

.card-dots { display: flex; gap: 6px; }
.card-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}
.card-dots span:first-child  { background: var(--color-error); }
.card-dots span:nth-child(2) { background: var(--color-warning); }
.card-dots span:nth-child(3) { background: var(--color-success); }

.code-line     { font-family: var(--font-mono); font-size: 14px; margin-bottom: 4px; color: #1e293b; }
.code-keyword  { color: #7c3aed; }
.code-function { color: #059669; }
.code-string   { color: #dc2626; }
.code-indent   { margin-left: 16px; }

.progress-bar {
  width: 100%; height: 8px;
  background: var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.progress-fill {
  width: 85%; height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  animation: progressFill 3s ease-out;
}

@keyframes progressFill {
  0%   { width: 0%; }
  100% { width: 85%; }
}

.progress-text  { font-weight: 600; margin-bottom: var(--space-2); color: #1e293b; }
.progress-stats { display: flex; justify-content: space-between; font-size: 12px; color: var(--color-text-muted); }

.tech-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 232, 135, 0.2), rgba(37, 99, 235, 0.2));
}

.shape-1 { width: 60px;  height: 60px;  top: 20%;  right: 10%; animation: rotate 10s linear infinite; }
.shape-2 { width: 40px;  height: 40px;  bottom: 20%; left: 10%; animation: rotate 8s linear infinite reverse; }
.shape-3 { width: 80px;  height: 80px;  top: 60%;  right: 30%; animation: rotate 12s linear infinite; }

@keyframes rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


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

.section-header {
  text-align: center;
  margin-bottom: var(--space-20);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text);
}


/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  background: var(--color-black);
  color: white;
}

.services .section-title {
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base), background var(--t-base);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 232, 135, 0.3);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(0, 232, 135, 0.1), rgba(37, 99, 235, 0.1));
  border-color: rgba(0, 232, 135, 0.3);
}

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: white;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-5);
  line-height: var(--lh-normal);
}

.service-tech {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.service-tech span {
  background: rgba(0, 232, 135, 0.2);
  color: var(--color-accent);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: 12px;
  font-weight: 500;
}


/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  background: var(--gradient-process);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-16);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px; height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-6);
  transition: transform var(--t-base);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.step-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
  font-size: 14px;
}

.step-duration {
  background: rgba(0, 232, 135, 0.1);
  color: var(--color-success);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
}

.step-visual { margin-top: var(--space-5); }
.step-icon   { font-size: 32px; opacity: 0.8; }


/* ========================================
   STATS SECTION
   ======================================== */
.stats {
  background: var(--color-black);
  color: white;
  padding: var(--space-20) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-10);
}

.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  background: var(--color-surface-dark);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-dark);
}

.stat-icon  { font-size: 32px; margin-bottom: var(--space-4); }
.stat-title { font-size: 16px; color: rgba(255, 255, 255, 0.8); margin-bottom: var(--space-2); }
.stat-value { font-size: 32px; font-weight: 700; color: var(--color-accent); }


/* ========================================
   WHY US — FEATURES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 232, 135, 0.3);
}

.feature-card.featured {
  background: linear-gradient(135deg, rgba(0, 232, 135, 0.05), rgba(37, 99, 235, 0.05));
  border-color: rgba(0, 232, 135, 0.3);
}

.feature-icon { font-size: 32px; margin-bottom: var(--space-5); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.feature-card p {
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}


/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison {
  background: var(--color-bg-light);
}

.comparison-table {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-black);
  color: white;
}

.comparison-col {
  padding: var(--space-6) var(--space-8);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.comparison-col.quantum {
  background: var(--gradient-primary);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

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

.comparison-item { padding: var(--space-5) var(--space-8); text-align: center; }

.comparison-item.traditional {
  color: var(--color-text-muted);
  background: var(--color-bg-light);
}

.comparison-item.quantum {
  color: var(--color-text);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(0, 232, 135, 0.1), rgba(37, 99, 235, 0.1));
}


/* ========================================
   INDUSTRIES
   ======================================== */
.industries {
  background: var(--color-black);
  color: white;
}

.industries .section-title { color: white; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.industry-card {
  background: var(--color-surface-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base);
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(0, 232, 135, 0.3);
}


/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--color-black);
  color: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.testimonial-stars { font-size: 18px; margin-bottom: var(--space-5); }

.testimonial-card blockquote {
  font-size: 16px;
  line-height: var(--lh-normal);
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: var(--space-4); }

.author-avatar {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.author-name  { font-weight: 600; color: white; }
.author-title { font-size: 14px; color: rgba(255, 255, 255, 0.7); }


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

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

.cta-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-5);
  color: white;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-10);
}

.cta-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-black);
  color: white;
  padding: var(--space-20) 0 var(--space-10);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
}

.footer-logo { margin-bottom: var(--space-4); }

.footer-logo-image {
  height: 36px; width: auto;
  display: block;
  background: white;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-6);
}

.footer-email    { color: var(--color-accent); text-decoration: none; font-weight: 500; }
.footer-location { color: rgba(255, 255, 255, 0.6); margin-top: var(--space-2); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-5);
  color: white;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: var(--space-3);
  transition: color var(--t-base);
}

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

.footer-newsletter h3  { margin-bottom: var(--space-3); }
.footer-newsletter p   { color: rgba(255, 255, 255, 0.8); margin-bottom: var(--space-6); }

.newsletter-form { display: flex; gap: var(--space-3); }

.newsletter-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

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

.footer-copyright { color: rgba(255, 255, 255, 0.6); }

.footer-legal { display: flex; gap: var(--space-6); }

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--t-base);
}

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


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }

  .hero-visual { height: 300px; }

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

  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

/* Tablet — fixes process grid overflow */
@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--color-bg);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: var(--space-16);
    transition: left var(--t-base);
  }

  .nav-menu.active { left: 0; }

  .nav-toggle { display: flex; }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .comparison-row   { grid-template-columns: 1fr; }
  .comparison-item  { text-align: left; }

  .footer-content { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-main    { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer-links   { grid-template-columns: 1fr; gap: var(--space-6); }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }

  section { padding: var(--space-20) 0; }

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

  .hero-stats {
    justify-content: center;
    gap: var(--space-5);
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .process-timeline { grid-template-columns: 1fr; }
}


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

.fade-in { animation: fadeInUp 0.6s ease-out; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg-subtle); }
::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-blue-dark));
}
