/* ═══════════════════════════════════════════════════════════════
   TASKBOOST.AI — STYLESHEET
   Design System: Deep Purple · Inter · Premium Minimal
═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --purple-950: #1a0533;
  --purple-900: #2d0a5c;
  --purple-800: #4c1d95;
  --purple-700: #5b21b6;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-300: #c4b5fd;
  --purple-100: #ede9fe;
  --purple-50:  #f5f3ff;

  /* Neutrals */
  --white:   #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --black:   #060409;

  /* Semantic */
  --bg-dark:    #0d0620;
  --bg-surface: #160a2e;
  --text-on-dark: #f0ebff;
  --text-muted-dark: #a78bfa;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: calc(6rem - 1cm);
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --shadow-purple: 0 8px 32px rgba(124, 58, 237, 0.25);
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
}

p {
  text-align: justify;
  hyphens: auto;
}

/* ── UTILITIES ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.break-lg { display: none; }
@media (min-width: 1024px) { .break-lg { display: block; } }

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 40%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-600) 100%);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--purple-400);
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  border: 1.5px solid var(--purple-700);
}
.btn-outline:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple-500);
  color: var(--purple-300);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 1rem; }

/* ── SECTION STRUCTURE ──────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}

.section-light { background: var(--bg-surface); }
.section-dark  { background: var(--bg-dark); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto calc(4rem - 1cm);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--purple-400); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.section-dark .section-title { color: var(--text-on-dark); }

.section-title-left {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--purple-300);
  line-height: 1.7;
}

.section-dark .section-subtitle { color: var(--purple-300); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(13, 6, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

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

.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-link {
  color: rgba(240, 235, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── LANGUAGE SWITCHER ──────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(240,235,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
  letter-spacing: 0.05em;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active {
  background: var(--purple-600);
  color: var(--white);
}
/* Hide lang switcher on very small screens, show only active */
@media (max-width: 380px) {
  .lang-btn:not(.active) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 33, 182, 0.3) 0%, transparent 70%);
  bottom: 50px;
  left: -80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

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

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

.hero-visual-logo {
  flex-shrink: 0;
}

.hero-visual-logo img {
  width: 9cm;
  height: 9cm;
  object-fit: cover;
  mix-blend-mode: screen;
  animation: logo-float 4s ease-in-out infinite;
  /* Fade all 4 edges into the page background */
  mask-image:
    linear-gradient(to right,  transparent 0%,  black 18%, black 82%,  transparent 100%),
    linear-gradient(to bottom, transparent 0%,  black 12%, black 82%,  transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%,  black 18%, black 82%,  transparent 100%),
    linear-gradient(to bottom, transparent 0%,  black 12%, black 82%,  transparent 100%);
  -webkit-mask-composite: source-in;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-300);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(240, 235, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--purple-300);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(124, 58, 237, 0.4);
}

/* Floating automation cards */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0;
  overflow: visible;
}

/* Robot (left) + Logo (right) row — centered above cards */
.hero-visual-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: visible;
  padding-left: 6rem; /* align robot with card text start */
}

.automation-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.automation-card.card-2 { animation-delay: -2s; }
.automation-card.card-3 { animation-delay: -4s; }

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

/* ── HERO ROBOT ─────────────────────────────────────────────── */
.hero-robot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.robot-svg {
  width: 120px;
  height: auto;
  animation: robot-float 3.6s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.35));
}

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

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

/* Antenna pulse */
.r-antenna {
  animation: r-antenna-pulse 1.8s ease-in-out infinite;
  transform-origin: 100px 12px;
}
@keyframes r-antenna-pulse {
  0%, 100% { opacity: 1; r: 7; }
  50% { opacity: 0.3; r: 4; }
}

/* Eye blink */
.r-eye {
  animation: r-blink 4.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes r-blink {
  0%, 88%, 100% { transform: scaleY(1); }
  93% { transform: scaleY(0.08); }
}

/* Face screen bars pulse */
.r-bar1 { animation: r-bar 1.4s ease-in-out infinite; }
.r-bar2 { animation: r-bar 1.4s ease-in-out infinite 0.25s; }
.r-bar3 { animation: r-bar 1.4s ease-in-out infinite 0.5s; }
@keyframes r-bar {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.25; }
}

/* Code lines on body screen */
.r-cl1 { animation: r-code 2.2s ease-in-out infinite 0s; }
.r-cl2 { animation: r-code 2.2s ease-in-out infinite 0.18s; }
.r-cl3 { animation: r-code 2.2s ease-in-out infinite 0.36s; }
.r-cl4 { animation: r-code 2.2s ease-in-out infinite 0.54s; }
.r-cl5 { animation: r-code 2.2s ease-in-out infinite 0.72s; }
@keyframes r-code {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.2; }
}

/* Cursor blink */
.r-cursor {
  animation: r-cursor-blink 0.9s step-end infinite;
}
@keyframes r-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Power LED */
.r-power { animation: r-led 2.4s ease-in-out infinite; }
@keyframes r-led {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Typing arms — alternating up/down */
.r-arm-l {
  animation: r-type-l 0.45s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: right center;
}
.r-arm-r {
  animation: r-type-r 0.45s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: left center;
}
@keyframes r-type-l {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(5px); }
}
@keyframes r-type-r {
  0%   { transform: translateY(5px); }
  100% { transform: translateY(0px); }
}

/* Floating label badges */
.robot-badge {
  position: absolute;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 50px;
  padding: 0.28rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--purple-300);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.robot-badge-l {
  top: 22%;
  right: calc(100% + 8px);
  animation: badge-float-l 3s ease-in-out infinite;
}
.robot-badge-r {
  bottom: 24%;
  right: calc(100% + 8px);
  animation: badge-float-r 3.5s ease-in-out infinite 0.5s;
}
@keyframes badge-float-l {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes badge-float-r {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.automation-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}
.automation-card-icon.green {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}
.automation-card-icon.amber {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.4);
  color: #fbbf24;
}

.automation-card-label {
  font-size: 0.75rem;
  color: rgba(240, 235, 255, 0.5);
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.automation-card-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.automation-card-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.automation-card-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
  border-radius: 99px;
}
.automation-card-fill.green { background: linear-gradient(90deg, #16a34a, #4ade80); }
.automation-card-fill.amber { background: linear-gradient(90deg, #d97706, #fbbf24); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll a {
  color: rgba(240, 235, 255, 0.4);
  transition: color var(--transition);
  animation: bounceDown 2.5s ease-in-out infinite;
}
.hero-scroll a:hover { color: var(--purple-400); }

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════════
   VALUE PROPOSITION
═══════════════════════════════════════════════════════════════ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--purple-300);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
  transform: translateY(-4px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--purple-300);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════════════ */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all var(--transition);
}
.industry-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.industry-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}

.industry-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.industry-tag {
  font-size: 0.8rem;
  color: var(--purple-400);
  font-weight: 500;
}

.industry-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.industry-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(240, 235, 255, 0.8);
  font-weight: 500;
}
.industry-list li svg { color: var(--purple-500); flex-shrink: 0; }

.industry-btn { width: 100%; justify-content: center; }

/* Flexibility Callout */
.flexibility-callout {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(91, 33, 182, 0.1) 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.flexibility-icon {
  width: 56px;
  height: 56px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}

.flexibility-content {
  flex: 1;
}
.flexibility-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.flexibility-content p {
  font-size: 0.9rem;
  color: rgba(240, 235, 255, 0.65);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRY IMAGE HEADERS
═══════════════════════════════════════════════════════════════ */
.industry-img {
  position: relative;
  margin: -2.5rem -2.5rem 2rem -2.5rem;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-img img {
  transform: scale(1.04);
}

.industry-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 6, 32, 0.1) 0%,
    rgba(13, 6, 32, 0.6) 100%
  );
}

/* ═══════════════════════════════════════════════════════════════
   VISUAL SHOWCASE
═══════════════════════════════════════════════════════════════ */
.showcase-section { background: var(--bg-dark); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.showcase-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-card-large {
  height: 480px;
}

.showcase-col .showcase-card {
  height: 222px;
}

.showcase-card:hover img {
  transform: scale(1.04);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 6, 32, 0.92) 0%,
    rgba(13, 6, 32, 0.4) 50%,
    rgba(13, 6, 32, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}

.showcase-card:hover .showcase-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 6, 32, 0.95) 0%,
    rgba(76, 29, 149, 0.5) 60%,
    rgba(13, 6, 32, 0.15) 100%
  );
}

.showcase-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.7);
  border: 1px solid rgba(167, 139, 250, 0.4);
  color: var(--purple-200, #ddd6fe);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.showcase-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.showcase-card-large .showcase-overlay h3 {
  font-size: 1.5rem;
}

.showcase-overlay p {
  font-size: 0.82rem;
  color: rgba(240, 235, 255, 0.7);
  line-height: 1.5;
  max-width: 340px;
}

/* Stats bar */
.showcase-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  text-align: center;
  min-width: 140px;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   AI SOLUTIONS
═══════════════════════════════════════════════════════════════ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.solution-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
}
.solution-card:hover {
  border-color: var(--purple-300);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
  transform: translateY(-4px);
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  margin-bottom: 1.15rem;
}

.solution-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.solution-card p {
  font-size: 0.875rem;
  color: var(--purple-300);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.solution-tag {
  display: inline-block;
  background: var(--purple-50);
  color: var(--purple-700);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.solution-card-cta {
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-600) 100%);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-card-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}
.solution-card-cta h3 {
  color: var(--white);
  font-size: 1.15rem;
}
.solution-card-cta p {
  color: rgba(255,255,255,0.75);
}
.solution-card-cta .btn-primary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  box-shadow: none;
  align-self: flex-start;
}
.solution-card-cta .btn-primary:hover {
  background: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  display: inline-flex;
  width: 56px;
  height: 56px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--purple-400);
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 0.875rem;
  color: var(--purple-300);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-600));
  margin-top: 2rem;
  position: relative;
  flex-shrink: 0;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--purple-600);
  border-right: 2px solid var(--purple-600);
  transform: rotate(45deg);
}

.steps-cta {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   WHY TASKBOOST
═══════════════════════════════════════════════════════════════ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.why-left .section-title-left {
  color: var(--text-on-dark);
}

.why-description {
  font-size: 1rem;
  color: var(--purple-300);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--purple-300);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   TECH STRIP
═══════════════════════════════════════════════════════════════ */
.tech-strip {
  padding: 3rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.tech-strip-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 1.5rem;
}

.tech-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-400);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.tech-item:hover { color: var(--purple-600); }

.tech-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
}

/* ═══════════════════════════════════════════════════════════════
   TOOLS WE USE
═══════════════════════════════════════════════════════════════ */
.tools-section { background: var(--bg-dark); }

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

.tool-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.tool-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}
.tool-card:hover::before { opacity: 1; }

.tool-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-logo-n8n    { background: rgba(255, 99, 50, 0.15); border: 1px solid rgba(255, 99, 50, 0.3); color: #ff6b35; }
.tool-logo-openai { background: rgba(16, 163, 127, 0.15); border: 1px solid rgba(16, 163, 127, 0.3); color: #10a37f; }
.tool-logo-claude { background: rgba(200, 120, 80, 0.15); border: 1px solid rgba(200, 120, 80, 0.3); color: #d4845a; }
.tool-logo-aws    { background: rgba(255, 153, 0, 0.15); border: 1px solid rgba(255, 153, 0, 0.3); color: #ff9900; }
.tool-logo-api    { background: rgba(124, 58, 237, 0.15); border: 1px solid rgba(124, 58, 237, 0.3); color: var(--purple-400); }
.tool-logo-gemini { background: rgba(66, 133, 244, 0.15); border: 1px solid rgba(66, 133, 244, 0.3); color: #4285f4; }
.tool-logo-rag     { background: rgba(99, 179, 237, 0.15); border: 1px solid rgba(99, 179, 237, 0.3); color: #63b3ed; }
.tool-logo-make       { background: rgba(106, 90, 205, 0.15); border: 1px solid rgba(106, 90, 205, 0.3); color: #6a5acd; }
.tool-logo-chatbot    { background: rgba(52, 211, 153, 0.15); border: 1px solid rgba(52, 211, 153, 0.3); color: #34d399; }
.tool-logo-kiro       { background: rgba(232, 121, 249, 0.15); border: 1px solid rgba(232, 121, 249, 0.3); color: #e879f9; }
.tool-logo-quicksuite { background: rgba(251, 191, 36, 0.15); border: 1px solid rgba(251, 191, 36, 0.3); color: #fbbf24; }

.tool-info { flex: 1; }

.tool-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
}

.tool-role {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--purple-400);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.tool-badge {
  display: inline-flex;
  align-self: center;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.tool-badge-aws {
  background: rgba(255, 153, 0, 0.15);
  border-color: rgba(255, 153, 0, 0.35);
  color: #ffb733;
}

/* Contact detail sub-label */
.contact-detail-sub {
  font-size: 0.78rem;
  color: var(--purple-400);
  font-weight: 500;
  margin-top: 0.15rem;
}

.wa-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.25rem;
}

.wa-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.wa-link:hover {
  color: #25D366;
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDERS
═══════════════════════════════════════════════════════════════ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.founder-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  gap: 1.75rem;
  transition: all var(--transition);
}
.founder-card:hover {
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--purple-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2), 0 0 0 8px rgba(124, 58, 237, 0.08);
}

.founder-initials {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  display: block;
}

.founder-photo-jurgen {
  object-fit: contain;
  object-position: center center;
  background: #0d0620;
}

.founder-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.founder-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.founder-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-400);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.founder-bio {
  font-size: 0.875rem;
  color: var(--purple-300);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  width: 100%;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0077b5;
  color: var(--white);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}
.linkedin-btn:hover {
  background: #006097;
  transform: translateY(-1px);
}

.founder-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 153, 0, 0.12);
  border: 1px solid rgba(255, 153, 0, 0.35);
  color: #ff9900;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* Ethics Statement */
.ethics-statement {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--purple-50) 0%, #f0fdf4 100%);
  border: 1px solid var(--purple-100);
  border-left: 4px solid var(--purple-600);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.ethics-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-700);
  flex-shrink: 0;
}

.ethics-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ethics-content p {
  font-size: 0.9rem;
  color: var(--gray-600, #4b5563);
  line-height: 1.7;
}

.berlin-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple-50);
  color: var(--purple-700);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  margin: 0 auto;
  width: fit-content;
}

.company-linkedin {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.company-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #0a66c2;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.35);
}
.company-linkedin-btn:hover {
  background: #0077b5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-title-left {
  color: var(--text-on-dark);
}

.contact-description {
  font-size: 1rem;
  color: var(--purple-300);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}
.contact-detail:hover { opacity: 0.8; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-400);
  margin-bottom: 0.15rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.contact-languages {
  padding-top: 0.5rem;
}

.language-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.language-tags span {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-300);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-on-dark);
  outline: none;
  transition: all var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 235, 255, 0.3);
}
.form-group select option { background: var(--bg-surface); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-500);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #4ade80;
}
.form-success.show { display: flex; }
.form-success strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }
.form-success p { font-size: 0.8rem; opacity: 0.8; }

.form-disclaimer {
  font-size: 0.78rem;
  color: rgba(240, 235, 255, 0.35);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}

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

.footer-logo-img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--purple-300);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: rgba(124, 58, 237, 0.2);
  color: var(--purple-400);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-400);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a,
.footer-col ul li {
  font-size: 0.875rem;
  color: var(--purple-300);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--purple-400); }

.footer-languages {
  font-size: 0.875rem;
  color: var(--purple-300);
  font-weight: 500;
  margin-top: 0.5rem;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--purple-300);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--purple-300);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--purple-400); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE SCREENS (≥ 1440px)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  :root {
    --container-max: 1360px;
    --section-py: calc(7rem - 1cm);
  }
  .hero-title { font-size: 3.5rem; }
  .section-title, .section-title-left { font-size: 3rem; }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .solutions-grid { grid-template-columns: repeat(4, 1fr); }
  .robot-svg { width: 140px; }
  .hero-visual-logo img { width: 8cm; height: 8cm; }
}

@media (min-width: 1920px) {
  :root { --container-max: 1600px; }
  body { font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: calc(5rem - 1cm); }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }

  .value-grid { grid-template-columns: 1fr 1fr; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card-large { height: 360px; }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .step-connector { display: none; }

  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: calc(3.5rem - 1cm); }

  /* Prevent horizontal overflow */
  html, body { overflow-x: hidden; max-width: 100vw; }

  /* Safe area for iPhone notch / Dynamic Island */
  .nav { padding-top: env(safe-area-inset-top); }
  .footer { padding-bottom: env(safe-area-inset-bottom); }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 6, 32, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: 1.25rem; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-actions .btn-sm { display: none; }

  /* Hero */
  .hero { padding: 5rem 0 3rem; }
  .hero .container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2.1rem; line-height: 1.15; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; min-height: 52px; }
  .hero-trust { flex-direction: column; gap: 0.5rem; align-items: center; }
  .trust-divider { display: none; }

  /* Reset hero visual positioning for mobile */
  .hero-visual {
    margin-top: 0 !important;
    max-width: 100%;
    width: 100%;
  }
  .hero-visual-top {
    gap: 0.25rem;
    padding-left: 0;
    justify-content: center;
  }
  .hero-visual-logo img {
    width: 100px !important;
    height: 100px !important;
  }
  /* Robot on mobile */
  .robot-svg { width: 90px; }
  .robot-badge { display: none; }

  /* Show all 3 cards stacked on mobile */
  .automation-card.card-2,
  .automation-card.card-3 { display: flex; }

  /* Sections */
  .value-grid { grid-template-columns: 1fr; gap: 1rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card-large { height: 260px; }
  .showcase-col .showcase-card { height: 200px; }
  .showcase-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { min-width: 100px; }
  .tools-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; }
  .flexibility-callout { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.25rem; }
  /* Bigger touch targets for inputs */
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; } /* Prevents iOS zoom on focus */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

  /* Section titles */
  .section-title, .section-title-left { font-size: 1.85rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .section-title, .section-title-left { font-size: 1.6rem; }
  .btn-lg { padding: 0.875rem 1.25rem; font-size: 0.95rem; }
  .container { padding: 0 1rem; }
  .contact-form-wrapper { padding: 1rem; }
  .automation-card { padding: 0.875rem; }
}
