/* ============================================
   AYMERICK DANSICARE — DESIGN SYSTEM v7
   Portfolio Candidature — Webmarketing & Marketing Digital
   GSAP 3 · ScrollTrigger · Lenis · SplitType
   Premium Motion — Performance‑First
   ============================================ */

:root {
  --bg-primary: #0B0B12;
  --bg-secondary: #101018;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --bg-surface-hover: rgba(255, 255, 255, 0.06);
  --accent: #00D4FF;
  --accent-rgb: 0, 212, 255;
  --accent-violet: #8B5CF6;
  --accent-violet-rgb: 139, 92, 246;
  --accent-green: #22C55E;
  --accent-red: #EF4444;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 212, 255, 0.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px;
  --container-max: 1200px;
  --container-padding: 24px;
  --navbar-height: 72px;
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 14px; --radius-xl: 20px;
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px var(--border-hover);
  --glow: 0 0 24px rgba(var(--accent-rgb), 0.2);
  --glow-strong: 0 0 40px rgba(var(--accent-rgb), 0.3);
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --section-py: clamp(64px, 8vw, 112px);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: auto; }
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}
::selection { background: rgba(var(--accent-rgb), 0.2); color: var(--text-primary); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: #fff; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }

/* === LOADER === */
.loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font); font-size: 3rem; font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.04em;
  margin-bottom: var(--sp-3);
}
.loader-logo span { color: var(--accent); }
.loader-bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
  margin: 0 auto;
}
.loader-bar-fill {
  width: 0%; height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
body.loading { overflow: hidden; }

/* === CUSTOM CURSOR === */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  top: -3px; left: -3px;
  will-change: transform;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: fixed;
  top: -20px; left: -20px;
  will-change: transform;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease;
}
.cursor.hovering .cursor-ring {
  width: 60px; height: 60px;
  top: -30px; left: -30px;
  border-color: var(--accent);
}
@media (pointer: coarse) {
  .cursor { display: none; }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font); font-weight: 700; line-height: 1.2;
  color: var(--text-primary); letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-violet), var(--accent));
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

[data-split] .char,
[data-split] .word { display: inline-block; will-change: transform, opacity; }
[data-split] .word { white-space: nowrap; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-1);
  padding: 12px 24px; font-family: var(--font); font-size: 0.9375rem;
  font-weight: 600; line-height: 1; border-radius: var(--radius-md);
  cursor: pointer; transition: all var(--ease);
  text-decoration: none; border: 1.5px solid transparent; white-space: nowrap;
  position: relative; overflow: hidden;
  will-change: transform;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); box-shadow: var(--glow-strong); }
.btn-ghost { background: transparent; color: var(--accent); border-color: rgba(var(--accent-rgb), 0.3); }
.btn-ghost:hover { border-color: var(--accent); background: rgba(var(--accent-rgb), 0.06); box-shadow: var(--glow); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn i { font-size: 0.85em; transition: transform 0.3s; }
.btn:hover i { transform: translateX(3px); }

/* === SECTIONS === */
section { padding: var(--section-py) 0; position: relative; }
.section-header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); max-width: 760px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: var(--sp-2); }
.section-header p { color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: var(--sp-2);
}

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--navbar-height);
  z-index: 1000; transition: all var(--ease); border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(11, 11, 18, 0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.navbar-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.navbar-logo { font-size: 1.25rem; font-weight: 800; color: var(--text-primary) !important; letter-spacing: -0.02em; flex-shrink: 0; }
.navbar-logo span { color: var(--accent); }
.navbar-logo:hover { color: var(--text-primary) !important; }
.navbar-links { list-style: none; display: flex; align-items: center; gap: var(--sp-3); }
.navbar-links a { font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary); transition: color var(--ease); padding: 4px 0; }
.navbar-links a:hover, .navbar-links a.active { color: var(--text-primary); }
.navbar-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--ease); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  position: fixed; top: var(--navbar-height); left: 0; width: 100%;
  background: var(--bg-primary); border-bottom: 1px solid var(--border);
  padding: var(--sp-3); display: none; flex-direction: column; gap: var(--sp-1); z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text-secondary); padding: var(--sp-1) var(--sp-2); border-radius: var(--radius-sm); transition: all var(--ease); }
.mobile-menu a:hover { color: var(--text-primary); background: var(--bg-surface); }

/* === HERO === */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: var(--navbar-height) 0 0;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 140%; max-width: 1200px; height: 70%;
  background: radial-gradient(ellipse 60% 55% at 50% 30%, rgba(var(--accent-rgb), 0.1), transparent 70%),
              radial-gradient(ellipse 40% 40% at 65% 45%, rgba(var(--accent-violet-rgb), 0.07), transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 960px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: 6px 16px; background: rgba(var(--accent-green), 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px; font-size: 0.8125rem; font-weight: 500; color: var(--accent-green);
  margin-bottom: var(--sp-4);
  opacity: 0; transform: translateY(16px);
}
.pulse-dot {
  width: 7px; height: 7px; background: var(--accent-green);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-3);
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}
.hero-line-1 {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.52em;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.hero-line-2 {
  position: relative;
  height: 1.15em;
  overflow: hidden;
  transform: translateY(24px) scale(0.92);
}
.hero-line-3 { color: var(--text-primary); }
.hero-ampersand { color: var(--accent); font-style: italic; }

.hero-word-rotate {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  height: 1.15em;
}
.hero-word {
  display: inline-block;
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent-violet));
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: transform, opacity;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  max-width: 520px;
  opacity: 0; transform: translateY(16px);
}
.hero-cta-row {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  opacity: 0; transform: translateY(16px);
}
.hero-cta-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2);
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  opacity: 0;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 12px;
  position: relative;
  display: flex; justify-content: center;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--accent);
  border-radius: 3px;
  margin-top: 7px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* === PROOF BAND === */
.section-proof {
  padding: var(--sp-6) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.proof-item { text-align: center; padding: var(--sp-2) 0; position: relative; }
.proof-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: var(--border);
}
.proof-value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.proof-label { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.4; }
.proof-label em { font-style: normal; color: var(--text-secondary); font-weight: 500; }

/* === ADEQUATION POSTE === */
.section-adequation { background: var(--bg-secondary); }
.adequation-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3);
}
.adequation-card {
  padding: var(--sp-3); background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color var(--ease), background var(--ease);
  will-change: transform; transform-style: preserve-3d;
}
.adequation-card:hover { border-color: rgba(var(--accent-rgb), 0.15); background: var(--bg-surface-hover); }
.adequation-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md); background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent); font-size: 1.125rem; margin-bottom: var(--sp-2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.adequation-card:hover .adequation-icon { transform: scale(1.1) rotate(-5deg); }
.adequation-card h3 { font-size: 1.0625rem; margin-bottom: var(--sp-1); }
.adequation-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* === SKILLS PIPELINE === */
.section-skills { background: var(--bg-primary); }
.skills-pipeline { max-width: 780px; margin: 0 auto; }

.skill-block {
  display: flex; gap: var(--sp-3); align-items: flex-start;
}
.skill-block-number {
  width: 56px; height: 56px; min-width: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(var(--accent-rgb), 0.08);
  border: 1.5px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent); font-size: 1rem; font-weight: 800;
  position: relative;
}
.skill-block-number::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid rgba(var(--accent-rgb), 0.1);
  animation: methodPulse 3s ease-in-out infinite;
}
@keyframes methodPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}
.skill-block-content { flex: 1; padding-bottom: var(--sp-2); }
.skill-block-content h3 {
  font-size: 1.1875rem; margin-bottom: var(--sp-1);
  display: flex; align-items: center; gap: var(--sp-1);
}
.skill-block-content h3 i { color: var(--accent); font-size: 0.9rem; }
.skill-block-content > p {
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-2);
}
.skill-tools {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--sp-2);
}
.skill-tools span {
  font-size: 0.6875rem; font-weight: 500; padding: 4px 10px;
  border-radius: 100px; background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent); border: 1px solid rgba(var(--accent-rgb), 0.1);
  white-space: nowrap;
}
.skill-value {
  font-size: 0.8125rem; font-weight: 500; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
  padding: var(--sp-1) var(--sp-2);
  background: rgba(var(--accent-rgb), 0.03);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(var(--accent-rgb), 0.2);
}
.skill-value i { color: var(--accent); font-size: 0.75rem; }

.skill-connector { display: flex; justify-content: flex-start; padding-left: 27px; height: 28px; }
.skill-connector-line {
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.3), rgba(var(--accent-rgb), 0.05));
  will-change: transform;
}

/* === RESULTS === */
.section-results { background: var(--bg-secondary); }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); margin-bottom: var(--sp-6); }
.case-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.3s; }
.case-card:hover { border-color: rgba(var(--accent-rgb), 0.15); }
.case-card-header { padding: var(--sp-3); display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-2); border-bottom: 1px solid var(--border); }
.case-card-header h3 { font-size: 1.25rem; margin-bottom: 2px; }
.case-card-type { font-size: 0.8125rem; color: var(--text-muted); }
.case-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-card-tags span { font-size: 0.6875rem; font-weight: 500; padding: 3px 10px; border-radius: 100px; background: rgba(var(--accent-rgb), 0.08); color: var(--accent); border: 1px solid rgba(var(--accent-rgb), 0.12); }
.case-card-body { padding: var(--sp-3); display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); border-bottom: 1px solid var(--border); }
.case-card-section h4 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: var(--sp-1); }
.case-card-section p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }
.case-card-metrics { padding: var(--sp-3); display: flex; gap: var(--sp-4); border-bottom: 1px solid var(--border); }
.case-metric { display: flex; flex-direction: column; gap: 2px; }
.case-metric-value { font-size: 1.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.case-metric-label { font-size: 0.75rem; color: var(--text-muted); }
.case-card-skills {
  padding: var(--sp-2) var(--sp-3);
  background: rgba(var(--accent-rgb), 0.02);
}
.case-card-skills p { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 4px; }

.testimonials-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); margin-bottom: var(--sp-6); }
.testimonial-card { padding: var(--sp-3); background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 12px; left: 20px; font-size: 3rem; font-weight: 800; color: rgba(var(--accent-rgb), 0.1); line-height: 1; }
.testimonial-text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-2); padding-top: var(--sp-2); font-style: italic; }
.testimonial-author { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2); }
.trust-badge { display: inline-flex; align-items: center; gap: var(--sp-1); padding: 8px 16px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary); }
.trust-badge i { color: var(--accent); font-size: 0.875rem; }

/* === METHOD === */
.section-method { background: var(--bg-primary); }
.method-steps { max-width: 680px; margin: 0 auto; }
.method-step { display: flex; gap: var(--sp-3); align-items: flex-start; }
.method-step-number {
  width: 56px; height: 56px; min-width: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(var(--accent-rgb), 0.08);
  border: 1.5px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent); font-size: 1.125rem; font-weight: 800;
  position: relative; will-change: transform;
}
.method-step-number::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid rgba(var(--accent-rgb), 0.1);
  animation: methodPulse 3s ease-in-out infinite;
}
.method-step-content { flex: 1; padding-bottom: var(--sp-1); }
.method-step-content h3 { font-size: 1.25rem; margin-bottom: var(--sp-1); }
.method-step-content p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }
.method-connector { display: flex; justify-content: flex-start; padding-left: 27px; height: 32px; }
.method-connector-line { width: 2px; height: 100%; background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.3), rgba(var(--accent-rgb), 0.05)); will-change: transform; }

/* === TOOLS === */
.section-tools { background: var(--bg-secondary); }
.tools-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3);
}
.tool-category {
  padding: var(--sp-3); background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color var(--ease), background var(--ease);
  will-change: transform; transform-style: preserve-3d;
}
.tool-category:hover { border-color: rgba(var(--accent-rgb), 0.15); background: var(--bg-surface-hover); }
.tool-category-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md); background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent); font-size: 1.125rem; margin-bottom: var(--sp-2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tool-category:hover .tool-category-icon { transform: scale(1.1) rotate(-5deg); }
.tool-category h3 { font-size: 1.0625rem; margin-bottom: var(--sp-2); }
.tool-list {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--sp-2);
}
.tool-list span {
  font-size: 0.6875rem; font-weight: 500; padding: 4px 10px;
  border-radius: 100px; background: rgba(var(--accent-violet-rgb), 0.06);
  color: var(--accent-violet); border: 1px solid rgba(var(--accent-violet-rgb), 0.12);
  white-space: nowrap;
}
.tool-use { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* === PROFILE === */
.section-profile { background: var(--bg-primary); }
.profile-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-6);
  align-items: start;
}
.profile-intro {
  font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.profile-intro strong { color: var(--text-primary); }
.profile-traits { display: flex; flex-direction: column; gap: var(--sp-3); }
.profile-trait {
  display: flex; gap: var(--sp-2); align-items: flex-start;
}
.profile-trait-icon {
  width: 40px; height: 40px; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent); font-size: 0.9rem;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
}
.profile-trait h4 { font-size: 0.9375rem; margin-bottom: 2px; }
.profile-trait p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.profile-aside { display: flex; flex-direction: column; gap: var(--sp-3); }
.profile-credentials,
.profile-highlights {
  padding: var(--sp-3);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.profile-credentials h4,
.profile-highlights h4 {
  font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: var(--sp-2);
}
.profile-credentials ul,
.profile-highlights ul {
  list-style: none; display: flex; flex-direction: column; gap: var(--sp-1);
}
.profile-credentials li {
  font-size: 0.875rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: var(--sp-1);
}
.profile-credentials li i { color: var(--accent); font-size: 0.8125rem; width: 16px; text-align: center; }
.profile-highlights li {
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5;
}
.profile-highlights li strong { color: var(--text-primary); font-weight: 600; }

/* === FIT / CONTEXTES === */
.section-fit { background: var(--bg-secondary); }
.fit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3);
}
.fit-card {
  padding: var(--sp-3); background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color var(--ease), background var(--ease);
  will-change: transform; transform-style: preserve-3d;
}
.fit-card:hover { border-color: rgba(var(--accent-rgb), 0.15); background: var(--bg-surface-hover); }
.fit-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md); background: rgba(var(--accent-violet-rgb), 0.08);
  color: var(--accent-violet); font-size: 1.125rem; margin-bottom: var(--sp-2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fit-card:hover .fit-icon { transform: scale(1.1) rotate(-5deg); }
.fit-card h3 { font-size: 1.0625rem; margin-bottom: var(--sp-1); }
.fit-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* === FAQ === */
.section-faq { background: var(--bg-primary); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-1); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--bg-surface); transition: border-color var(--ease); }
.faq-item.active { border-color: rgba(var(--accent-rgb), 0.2); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); padding: var(--sp-2) var(--sp-3); background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text-primary); transition: color var(--ease); }
.faq-question:hover { color: var(--accent); }
.faq-question i { color: var(--text-muted); font-size: 0.875rem; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--accent); }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 0 var(--sp-3) var(--sp-3); font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* === CTA FINAL === */
.section-cta-final { background: var(--bg-secondary); text-align: center; }
.cta-final-content { max-width: 640px; margin: 0 auto; }
.cta-final-content h2 { margin-bottom: var(--sp-2); }
.cta-final-content p { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-4); }
.cta-final-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.cta-final-reassurance { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }
.cta-final-reassurance span { font-size: 0.8125rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.cta-final-reassurance i { color: var(--accent); font-size: 0.75rem; }

/* === FOOTER === */
.footer { background: var(--bg-primary); padding: var(--sp-8) 0 var(--sp-4); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-6); margin-bottom: var(--sp-6); }
.footer-brand p { font-size: 0.9375rem; color: var(--text-secondary); margin-top: var(--sp-2); max-width: 360px; line-height: 1.65; }
.footer-social { display: flex; gap: var(--sp-2); margin-top: var(--sp-2); }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--bg-surface); border: 1px solid var(--border); color: var(--text-secondary); transition: all var(--ease); font-size: 0.9rem; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer h4 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: var(--sp-2); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }
.footer-links a { font-size: 0.9375rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text-primary); }
.footer-location { font-size: 0.875rem; color: var(--text-muted); }
.footer-bottom { padding-top: var(--sp-4); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; color: var(--text-muted); }

/* === STICKY CTA === */
.sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; padding: var(--sp-2); background: rgba(11, 11, 18, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--border); z-index: 998; text-align: center; visibility: hidden; opacity: 0; }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* === CONTACT PAGE === */
.page-hero { padding: calc(var(--navbar-height) + 48px) 0 48px; position: relative; }
.page-hero .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb), 0.06), transparent 70%); pointer-events: none; }
.page-hero-content { max-width: 640px; position: relative; z-index: 1; }
.page-hero-content h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: var(--sp-2); }
.page-hero-content p { font-size: 1.0625rem; color: var(--text-secondary); }
.calendly-section { max-width: 800px; margin: 0 auto; }
.calendly-header { text-align: center; margin-bottom: var(--sp-4); }
.calendly-header-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(var(--accent-rgb), 0.08); color: var(--accent); font-size: 1.375rem; margin: 0 auto var(--sp-2); }
.calendly-embed-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-bottom: var(--sp-3); }
.calendly-reassurance { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }
.reassurance-item { font-size: 0.8125rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.reassurance-item i { color: var(--accent); }
.section-alt { background: var(--bg-secondary); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); max-width: 800px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--sp-4) var(--sp-3); background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color var(--ease), background var(--ease); color: var(--text-primary) !important; text-decoration: none; transform-style: preserve-3d; }
.contact-card:hover { border-color: rgba(var(--accent-rgb), 0.2); background: var(--bg-surface-hover); color: var(--text-primary) !important; }
.contact-card-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(var(--accent-rgb), 0.08); color: var(--accent); font-size: 1.25rem; margin-bottom: var(--sp-2); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.contact-card:hover .contact-card-icon { transform: scale(1.1); }
.contact-card h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9375rem; color: var(--text-secondary); margin-bottom: var(--sp-1); }
.contact-card-hint { font-size: 0.75rem; font-weight: 500; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; }
.contact-location { text-align: center; margin-top: var(--sp-4); font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.contact-location i { color: var(--accent); font-size: 0.8125rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --container-padding: 24px; --section-py: clamp(56px, 7vw, 88px); }
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .adequation-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid, .testimonials-row { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-card { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --container-padding: 20px; --section-py: clamp(48px, 6vw, 64px); }
  h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
  .hero-headline { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero-cta-buttons { flex-direction: column; width: 100%; }
  .hero-cta-buttons .btn { width: 100%; justify-content: center; }
  .scroll-indicator { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }
  .proof-item:nth-child(2)::after { display: none; }
  .adequation-grid { grid-template-columns: 1fr; }
  .case-card-body { grid-template-columns: 1fr; }
  .case-card-metrics { flex-wrap: wrap; gap: var(--sp-2); }
  .tools-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; max-width: 400px; }
  .cta-final-buttons { flex-direction: column; }
  .cta-final-buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .footer-bottom { flex-direction: column; gap: var(--sp-1); text-align: center; }
  .sticky-cta { display: block; }
  .footer { padding-bottom: calc(var(--sp-4) + 60px); }
}

@media (max-width: 480px) {
  :root { --container-padding: 16px; }
  h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-headline { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .hero-badge { font-size: 0.75rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item::after { display: none !important; }
  .proof-value { font-size: 1.25rem; }
  .skill-block { flex-direction: column; }
  .skill-block-number { margin: 0 auto; }
  .skill-block-content { text-align: center; }
  .skill-block-content h3 { justify-content: center; }
  .skill-tools { justify-content: center; }
  .skill-value { justify-content: center; text-align: center; }
  .skill-connector { justify-content: center; padding-left: 0; }
  .method-step { flex-direction: column; text-align: center; }
  .method-step-number { margin: 0 auto; }
  .method-connector { justify-content: center; padding-left: 0; }
  .section-header { text-align: left; }
  .section-header p { margin: 0; }
  .faq-question { font-size: 0.9375rem; padding: var(--sp-2); }
  .faq-answer p { padding: 0 var(--sp-2) var(--sp-2); font-size: 0.875rem; }
  .case-card-header { flex-direction: column; }
  .trust-badges { gap: var(--sp-1); }
  .trust-badge { padding: 6px 12px; font-size: 0.75rem; }
  .profile-trait { flex-direction: column; text-align: center; align-items: center; }
}

/* === GPU LAYER HINTS === */
[data-card-tilt],
[data-magnetic],
.method-step-number,
.method-connector-line,
.skill-block-number,
.skill-connector-line {
  will-change: transform;
}

/* === BODY NO-CURSOR (custom cursor active) === */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [data-magnetic], .faq-question, .adequation-card, .tool-category, .fit-card { cursor: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-canvas, .scroll-indicator { display: none; }
  .hero-badge, .hero-line, .hero-subtitle, .hero-cta-row { opacity: 1 !important; transform: none !important; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor { display: none !important; }
}
