/* ═══════════════════════════════════════════════════════
   INDUCAR STUDIO — Premium Conversion Landing Page
   ═══════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────── */
:root {
  /* Dark palette */
  --bg-hero: #060612;
  --bg-dark: #0a0a1a;
  --bg-dark-2: #0f0f24;
  --bg-process: #08080f;

  /* Light palette */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;

  /* Ink */
  --ink-dark: #ffffff;
  --ink-dark-sub: rgba(255, 255, 255, 0.60);
  --ink-light: #0f172a;
  --ink-light-sub: #64748b;

  /* Accent */
  --accent: #6366f1;
  --accent-dark: #4f46e5;
  --accent-light: #818cf8;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --violet: #7c3aed;
  --emerald: #059669;
  --amber: #d97706;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --grad-text: linear-gradient(135deg, #818cf8 0%, #67e8f9 100%);
  --grad-glow: radial-gradient(ellipse, rgba(99,102,241,0.35) 0%, transparent 70%);

  /* Cards */
  --card-dark: rgba(255, 255, 255, 0.04);
  --card-dark-border: rgba(255, 255, 255, 0.09);
  --card-dark-hover: rgba(255, 255, 255, 0.08);
  --card-light-border: rgba(15, 23, 42, 0.09);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.20);
  --glow-accent: 0 0 40px rgba(99, 102, 241, 0.35);
  --glow-accent-lg: 0 0 80px rgba(99, 102, 241, 0.20);

  /* Radii */
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 8px;

  /* Transitions */
  --t: 250ms ease;
  --t-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Base Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-light);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 700;
}

/* ─── Utilities ──────────────────────────────────────── */
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* ─── Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ─── Eyebrow labels ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 99px;
  flex-shrink: 0;
}
.eyebrow-light { color: var(--accent-light); }
.eyebrow-light::before { background: var(--grad-text); }

/* ─── Section headings ───────────────────────────────── */
.section-heading {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  color: var(--ink-light);
}
.section-heading p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-light-sub);
}
.section-heading-light h2 { color: var(--ink-dark); }
.section-heading-light p  { color: var(--ink-dark-sub); }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), opacity var(--t);
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.40);
}
.btn-primary:hover, .btn-primary:focus-visible {
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.btn-hero { padding: 1rem 2rem; font-size: 1rem; }
.btn-nav  { padding: 0.6rem 1.25rem; font-size: 0.88rem; }
.btn-submit { width: 100%; justify-content: center; padding: 1.05rem 2rem; font-size: 1rem; }

/* ─── NAV ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
  background: rgba(6, 6, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-header.scrolled {
  background: rgba(6, 6, 18, 0.92);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.navbar { padding: 0.85rem 0; }

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-primary);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.7);
}

.nav-link {
  color: rgba(255, 255, 255, 0.62) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.8rem !important;
  transition: color var(--t);
}
.nav-link:hover, .nav-link:focus-visible { color: #ffffff !important; }

.nav-lang {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--t);
}
.nav-lang:hover { color: #ffffff; border-color: rgba(255,255,255,0.3); }

/* Hamburger */
.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 99px;
  transition: var(--t);
}
.navbar-toggler:focus { box-shadow: none; }

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

/* Animated gradient orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 700px; height: 700px;
  top: -20%; left: -10%;
  background: radial-gradient(circle, rgba(99,102,241,0.22) 0%, transparent 70%);
  animation: drift-1 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 500px; height: 500px;
  top: 10%; right: -5%;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%);
  animation: drift-2 15s ease-in-out infinite alternate;
}
.orb-3 {
  width: 400px; height: 400px;
  bottom: 0%; left: 40%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  animation: drift-3 18s ease-in-out infinite alternate;
}
.orb-4 {
  width: 300px; height: 300px;
  bottom: 20%; right: 20%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  animation: drift-4 10s ease-in-out infinite alternate;
}

@keyframes drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes drift-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, -60px) scale(1.2); }
}
@keyframes drift-4 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -40px) scale(1.05); }
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(99,102,241,0.35);
  background: rgba(99,102,241,0.1);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px rgba(99,102,241,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  color: var(--ink-dark);
  margin: 0 0 1.5rem;
}

.hero-copy {
  font-size: 1.12rem;
  color: var(--ink-dark-sub);
  max-width: 38rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ─── Hero Visual (Dashboard) ────────────────────────── */
.hero-visual { position: relative; }

.vis-glow {
  position: absolute;
  inset: -30px;
  background: var(--grad-glow);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.vis-shell {
  position: relative;
  background: rgba(15, 15, 35, 0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}

.vis-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.tb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.tb-dot:nth-child(1) { background: #f87171; }
.tb-dot:nth-child(2) { background: #fbbf24; }
.tb-dot:nth-child(3) { background: #34d399; }
.tb-url {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
}

.vis-body {
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.9rem;
}

/* Individual vis cards */
.vis-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.1rem;
}
.vc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.65rem;
  display: block;
}
.vc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}
.vc-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #34d399;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse-live 1.5s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.vc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.2rem;
}
.vc-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
}
.vc-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vc-pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
}
.vc-pill-green {
  background: rgba(52,211,153,0.12);
  color: #6ee7b7;
}

/* Lead card: spans full height left */
.vis-lead { grid-row: 1 / 3; }

/* Flow card */
.flow-steps {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.flow-step.done  { color: #6ee7b7; }
.flow-step.active { color: var(--accent-light); }
.fs-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}
.flow-step.done .fs-icon  { background: rgba(52,211,153,0.2); }
.flow-step.active .fs-icon {
  background: rgba(99,102,241,0.3);
  animation: pulse-step 1.4s ease-in-out infinite;
}
@keyframes pulse-step {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(99,102,241,0); }
}
.flow-arrow {
  width: 12px; height: 1px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin-bottom: 14px;
}

/* Chart card */
.vis-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 60px;
  margin: 0.5rem 0;
}
.bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: rgba(99,102,241,0.4);
  transition: height var(--t);
}
.bar.is-today { background: var(--grad-primary); }
.vis-trend {
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
}

/* Notification card */
.vis-notif {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.notif-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-text strong, .notif-text span {
  display: block;
  font-size: 0.75rem;
}
.notif-text strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.notif-text span   { color: rgba(255,255,255,0.38); margin-top: 0.1rem; }

/* Float animations */
@keyframes float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-11px); }
}
.float-1 { animation: float-a 5s ease-in-out infinite; }
.float-2 { animation: float-b 6.5s ease-in-out infinite 0.8s; }
.float-3 { animation: float-c 4.5s ease-in-out infinite 1.5s; }
.float-4 { animation: float-a 7s ease-in-out infinite 0.3s; }

/* ─── Hero Stats Row ─────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4rem;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}
.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.5rem 1.5rem;
}
.stat-item strong {
  display: inline;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
}
.stat-item > span {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ─── Pain Section ───────────────────────────────────── */
.pain-section {
  padding: 4rem 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(15,23,42,0.07);
}
.pain-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--card-light-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99,102,241,0.2);
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(99,102,241,0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.pain-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  color: var(--ink-light);
}
.pain-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-light-sub);
}

/* ─── Services Section ───────────────────────────────── */
.services-section { padding: 5.5rem 0; }

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--card-light-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(99,102,241,0.2);
}
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  border-color: rgba(99,102,241,0.3);
  background: linear-gradient(145deg, rgba(99,102,241,0.04) 0%, #ffffff 50%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(99,102,241,0.12);
}

.service-card-dark {
  background: var(--bg-dark);
  border-color: rgba(255,255,255,0.08);
  color: var(--ink-dark);
}
.service-card-dark h3  { color: #ffffff; }
.service-card-dark p   { color: rgba(255,255,255,0.6); }
.service-card-dark ul li { color: rgba(255,255,255,0.6); }

.sc-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  background: var(--grad-primary);
  color: #ffffff;
}

.sc-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.sc-icon-indigo  { background: rgba(99,102,241,0.10);  color: var(--accent); }
.sc-icon-cyan    { background: rgba(6,182,212,0.10);   color: var(--cyan); }
.sc-icon-violet  { background: rgba(124,58,237,0.10);  color: var(--violet); }
.sc-icon-emerald { background: rgba(5,150,105,0.10);   color: var(--emerald); }
.sc-icon-amber   { background: rgba(217,119,6,0.10);   color: var(--amber); }
.sc-icon-white   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }

.service-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.7rem;
  color: var(--ink-light);
}
.service-card p {
  font-size: 0.94rem;
  color: var(--ink-light-sub);
  margin: 0 0 1rem;
}
.service-card ul {
  padding-left: 1.1rem;
  margin: 0 0 1.25rem;
  color: var(--ink-light-sub);
}
.service-card ul li { font-size: 0.91rem; margin-bottom: 0.35rem; }

.sc-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--t), color var(--t);
}
.sc-cta:hover { color: var(--accent-dark); gap: 0.5rem; }
.sc-cta-light { color: rgba(255,255,255,0.75); }
.sc-cta-light:hover { color: #ffffff; }

/* ─── Process Section ────────────────────────────────── */
.process-section {
  padding: 5.5rem 0;
  background: var(--bg-process);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
}

.process-track { position: relative; }
.process-line {
  display: none;
  position: absolute;
  top: 55px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3) 20%, rgba(6,182,212,0.3) 80%, transparent);
}
@media (min-width: 1200px) { .process-line { display: block; } }

.process-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  transition: transform var(--t), border-color var(--t), background var(--t);
  height: 100%;
}
.process-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(99,102,241,0.25);
}

.pc-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
}

.process-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  color: rgba(255,255,255,0.92);
}
.process-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1rem;
}
.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pc-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  background: rgba(99,102,241,0.12);
  color: var(--accent-light);
  border: 1px solid rgba(99,102,241,0.2);
}

/* ─── Results Section ────────────────────────────────── */
.results-section { padding: 5.5rem 0; }

.results-sub {
  font-size: 1rem;
  color: var(--ink-light-sub);
  margin: 1rem 0 0;
}

.result-card {
  padding: 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--card-light-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99,102,241,0.18);
}
.rc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.rc-icon-indigo  { background: rgba(99,102,241,0.10);  color: var(--accent); }
.rc-icon-cyan    { background: rgba(6,182,212,0.10);   color: var(--cyan); }
.rc-icon-violet  { background: rgba(124,58,237,0.10);  color: var(--violet); }
.rc-icon-emerald { background: rgba(5,150,105,0.10);   color: var(--emerald); }
.result-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  color: var(--ink-light);
}
.result-card p {
  font-size: 0.91rem;
  color: var(--ink-light-sub);
  margin: 0;
}

/* ─── Work Examples Section ──────────────────────────── */
.work-section {
  padding: 5.5rem 0;
  background: var(--bg-process);
  position: relative;
}
.work-section::before {
  content: "";
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), transparent);
}

.work-card {
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.work-card-featured {
  border-color: rgba(99,102,241,0.25);
  background: rgba(99,102,241,0.05);
}

.wc-type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
}
.wc-type-web        { background: rgba(99,102,241,0.12); color: var(--accent-light); }
.wc-type-automation { background: rgba(6,182,212,0.12);  color: #67e8f9; }
.wc-type-data       { background: rgba(217,119,6,0.12);  color: #fbbf24; }

.work-card h3 {
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,0.92);
}
.wc-block { margin-bottom: 1rem; }
.wc-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.35rem;
}
.wc-block p {
  margin: 0;
  font-size: 0.91rem;
  color: rgba(255,255,255,0.5);
}
.wc-result .wc-label { color: #6ee7b7; }
.wc-result p         { color: rgba(255,255,255,0.65); }

.wc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-top: auto;
  padding-top: 1rem;
  transition: color var(--t), gap var(--t);
}
.wc-cta:hover { color: #c7d2fe; gap: 0.55rem; }

/* ─── Mid CTA Section ────────────────────────────────── */
.mid-cta-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #2a1a6e 0%, #0e1554 40%, #0a2a40 100%);
  overflow: hidden;
  text-align: center;
}
.mid-cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.mc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.mc-orb-1 {
  width: 400px; height: 400px;
  top: -50%; left: -10%;
  background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
  animation: drift-1 10s ease-in-out infinite alternate;
}
.mc-orb-2 {
  width: 350px; height: 350px;
  bottom: -50%; right: -5%;
  background: radial-gradient(circle, rgba(6,182,212,0.25) 0%, transparent 70%);
  animation: drift-2 14s ease-in-out infinite alternate;
}

.mid-cta-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.mid-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin: 0.5rem 0 1rem;
}
.mid-cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin: 0; }
.mid-cta-sub {
  margin-top: 1rem !important;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.4) !important;
}

/* ─── FAQ Section ────────────────────────────────────── */
.faq-section { padding: 5.5rem 0; }

.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--card-light-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item:hover { border-color: rgba(99,102,241,0.2); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink-light);
  text-align: left;
  cursor: pointer;
  transition: color var(--t);
}
.faq-q:not(.collapsed) { color: var(--accent); }

.faq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  opacity: 0.5;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 99px;
}
.faq-icon::before { width: 8px; height: 2px; }
.faq-icon::after  { width: 2px; height: 8px; transition: transform var(--t); }
.faq-q:not(.collapsed) .faq-icon::after { transform: scaleY(0); }

.faq-a { padding: 0 1.5rem 1.2rem; }
.faq-a p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-light-sub);
  line-height: 1.7;
}

/* ─── Contact Section ────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-dark);
  overflow: hidden;
}
.contact-orbs { position: absolute; inset: 0; pointer-events: none; }
.co-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.co-orb-1 {
  width: 500px; height: 500px;
  top: -20%; left: -10%;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  animation: drift-1 14s ease-in-out infinite alternate;
}
.co-orb-2 {
  width: 400px; height: 400px;
  bottom: -10%; right: 5%;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  animation: drift-2 18s ease-in-out infinite alternate;
}

.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink-dark);
  margin: 0.5rem 0 1.1rem;
}
.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 2rem;
  line-height: 1.7;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ct-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.ct-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(99,102,241,0.12);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-item strong {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.ct-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
}
.contact-email span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.contact-email a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: color var(--t);
}
.contact-email a:hover { color: #c7d2fe; }

/* Form card */
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  backdrop-filter: blur(16px);
}

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.45rem;
}
.req { color: var(--accent-light); }

.form-control, .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 1rem;
  font-size: 0.93rem;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.95);
}
.form-select { color: rgba(255,255,255,0.6); }
.form-select option { background: #1e1e3f; color: #ffffff; }
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #f87171;
}
.invalid-feedback {
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 0.35rem;
  display: none;
}
.is-invalid ~ .invalid-feedback { display: block; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-status {
  display: none;
  padding: 0.8rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(52,211,153,0.12); color: #6ee7b7; border: 1px solid rgba(52,211,153,0.2); }
.form-status.is-error   { background: rgba(248,113,113,0.12); color: #fca5a5; border: 1px solid rgba(248,113,113,0.2); }

.form-noscript { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }
.form-noscript a { color: var(--accent-light); }

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.form-micro {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin: 0;
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--bg-hero);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.site-footer p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1.25rem;
  max-width: 260px;
}
.footer-langs {
  display: flex;
  gap: 0.5rem;
}
.footer-langs a {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  transition: all var(--t);
}
.footer-langs .fl-active {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.footer-langs a:hover { color: #ffffff; border-color: rgba(255,255,255,0.3); }

.site-footer h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-cta { margin-top: 1.5rem; }

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
  max-width: none;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 4rem 0 3rem; }
  .hero-title { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .vis-body { grid-template-columns: 1fr; }
  .vis-lead { grid-row: auto; }
  .hero-stats { gap: 0.5rem; }
  .stat-divider { display: none; }
  .stat-item { min-width: 100px; padding: 0.5rem 0.75rem; }
  #mainNav { background: rgba(6,6,18,0.97); border-radius: 16px; margin-top: 0.5rem; padding: 1rem; border: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 767.98px) {
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-item { flex: 1 0 40%; }
  .contact-form-card { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .btn-hero { text-align: center; justify-content: center; }
  .services-section, .results-section, .faq-section { padding: 3.5rem 0; }
  .process-section, .work-section { padding: 3.5rem 0; }
  .contact-section { padding: 3.5rem 0; }
}

/* ─── Focus styles (accessibility) ──────────────────── */
:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

/* ─── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .orb, .float-1, .float-2, .float-3, .float-4,
  .mc-orb, .co-orb, .badge-dot, .live-dot, .fs-pulse {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
