:root {
  --bg: #0B0F1A;
  --bg-card: rgba(15, 20, 35, 0.8);
  --bg-card-hover: rgba(20, 28, 50, 0.9);
  --surface: #111827;
  --surface-light: #1a2236;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --orange: #E8732A;
  --orange-glow: rgba(232, 115, 42, 0.4);
  --orange-soft: rgba(232, 115, 42, 0.12);
  --cyan: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, 0.3);
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --white: #f8fafc;
  --radius: 8px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1120px;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grid tech de fond */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,115,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,115,42,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
}

::selection { background: var(--orange); color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  z-index: 9999;
  box-shadow: 0 0 20px var(--orange-glow), 0 0 40px var(--orange-glow);
}

.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--orange); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius);
  z-index: 9999; font-weight: 500; font-size: 14px;
}
.skip-link:focus { top: 16px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 0 24px;
  transition: all 0.4s var(--ease);
  background: rgba(11, 15, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav.scrolled {
  background: rgba(11, 15, 26, 0.92);
  border-bottom-color: rgba(232,115,42,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px; color: var(--white);
}
.nav-brand img { height: 34px; width: auto; border-radius: 6px; }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-dim);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  box-shadow: 0 0 20px var(--orange-glow);
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  box-shadow: 0 0 30px var(--orange-glow), 0 0 60px rgba(232,115,42,0.2) !important;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; z-index: 99;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(232,115,42,0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(56,189,248,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Particules */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}
.particle-line {
  position: absolute;
  height: 1px;
  opacity: 0;
  animation: particleLine linear infinite;
}
@keyframes particleLine {
  0% { opacity: 0; transform: translateX(-100%); }
  20% { opacity: 0.3; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateX(300%); }
}

.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 4;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.6s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 1px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
  margin: 16px 0 0;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.7s var(--ease) 0.4s forwards;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange), #ff9a56, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 500px;
  margin: 20px 0 0;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.7s var(--ease) 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.7s var(--ease) 0.8s forwards;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TYPING EFFECT ===== */
.typing-wrapper {
  display: inline-block;
}
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--orange);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 24px var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px var(--orange-glow), 0 0 60px rgba(232,115,42,0.15);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  background: rgba(56,189,248,0.05);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  position: relative;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  animation: heroVisualReveal 0.8s var(--ease) 0.5s forwards;
}
@keyframes heroVisualReveal {
  to { opacity: 1; transform: translateX(0) scale(1); }
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  filter: blur(60px);
  opacity: 0.4;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}
.hero-img {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hero-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,115,42,0.2), 0 0 40px var(--orange-glow);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}
.section-alt { background: rgba(255,255,255,0.015); }
.section-glow {
  background: radial-gradient(circle at 50% 50%, rgba(232,115,42,0.04) 0%, transparent 60%);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '>';
  font-family: var(--font-display);
  font-size: 12px;
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 520px;
}
.section-header { margin-bottom: 56px; }
.section-header--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.30s; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--orange) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(232,115,42,0.08);
}
.service-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: transform 0.5s var(--ease);
  filter: brightness(1);
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
  filter: brightness(1);
}
.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.service-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}
.service-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
  flex-grow: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.service-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
  transition: all 0.2s var(--ease);
}
.service-card:hover .service-tag {
  border-color: rgba(232,115,42,0.2);
  color: var(--text);
}

/* ===== STATS ===== */
.stats-section {
  padding: 72px 24px;
  background: linear-gradient(180deg, rgba(232,115,42,0.04) 0%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,115,42,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--orange);
  display: inline;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ===== SHOWCASE ===== */
.showcase-section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  min-height: 340px;
}
.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(232,115,42,0.15);
  border-color: rgba(232,115,42,0.2);
}
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.85);
}
.showcase-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,26,0.95) 0%, rgba(11,15,26,0.2) 50%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.showcase-overlay h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.showcase-item:hover .showcase-overlay h3 { transform: translateY(0); }
.showcase-overlay p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease) 0.05s;
}
.showcase-item:hover .showcase-overlay p {
  transform: translateY(0);
  opacity: 1;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 500px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: all 0.3s var(--ease);
}
.about-value:hover {
  border-color: rgba(232,115,42,0.3);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.about-value::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--orange-glow);
  transition: transform 0.3s var(--ease);
}
.about-value:hover::before { transform: scale(1.4); }
.about-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--orange), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.about-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.about-img-wrapper:hover img { transform: scale(1.03); }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
  border-color: rgba(232,115,42,0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.step-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s var(--ease);
}
.step-card:hover .step-num { color: var(--orange); }
.step-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, var(--orange) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(232,115,42,0.08);
}
.pricing-featured {
  border-color: rgba(232,115,42,0.25);
  background: linear-gradient(180deg, rgba(232,115,42,0.06) 0%, var(--bg-card) 80%);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.pricing-featured:hover {
  transform: translateY(-14px);
}
.pricing-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--bg);
  background: var(--orange);
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-header {
  margin-top: 8px;
}
.pricing-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin: 8px 0 4px;
  letter-spacing: -0.01em;
}
.pricing-target {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-amount {
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.pricing-currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-features li {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange-glow);
  opacity: 0.6;
}
.pricing-card:hover .pricing-features li::before {
  opacity: 1;
}
.pricing-delivery {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: 500;
}
.pricing-btn {
  width: 100%;
  justify-content: center;
}
.pricing-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.pricing-note p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(232,115,42,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(56,189,248,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,115,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,115,42,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.4;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-section p {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--orange);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 30px var(--orange-glow);
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px var(--orange-glow), 0 0 80px rgba(232,115,42,0.2);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta::after {
  content: '\2192';
  transition: transform 0.3s var(--ease);
}
.btn-cta:hover::after { transform: translateX(4px); }

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.faq-item:hover {
  border-color: rgba(232,115,42,0.2);
}
.faq-item.active {
  border-color: rgba(232,115,42,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 16px;
  transition: color 0.3s var(--ease);
}
.faq-trigger:hover { color: var(--orange); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}
.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 11px;
  left: 6px;
}
.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 6px;
  left: 11px;
}
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.active .faq-content {
  max-height: 300px;
}
.faq-content p {
  padding: 0 28px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}
.contact-item-value a {
  color: var(--orange);
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: all 0.25s var(--ease);
}
.contact-item-value a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
  box-shadow: 0 0 8px var(--orange-glow);
}
.contact-item-value a:hover::after { width: 100%; }
.contact-item-value a:hover { opacity: 0.85; }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--orange-glow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.form-group input, .form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: all 0.3s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
  background: rgba(255,255,255,0.05);
}
.form-group input.error, .form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-group input.valid, .form-group textarea.valid {
  border-color: #22c55e;
}
.form-error {
  font-size: 12px;
  color: #ef4444;
  min-height: 0;
  transition: all 0.2s var(--ease);
}
.form-error:empty { display: none; }
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.btn-submit {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  align-self: flex-start;
  box-shadow: 0 0 20px var(--orange-glow);
  min-width: 180px;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px var(--orange-glow);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-loading {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: inline-block; }
.btn-submit.success { background: #22c55e; box-shadow: 0 0 20px rgba(34,197,94,0.3); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
footer {
  background: rgba(11,15,26,0.8);
  color: var(--text-muted);
  padding: 64px 24px 32px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.footer-logo img {
  height: 32px;
  width: auto;
  border-radius: 6px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-contact li,
.footer-contact a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-contact a:hover {
  color: var(--orange);
}
.footer-bottom {
  padding-top: 32px;
}
.footer-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(232,115,42,0.2), var(--border), transparent);
  margin-bottom: 24px;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-copy {
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.6;
}
footer .accent {
  color: var(--orange);
  font-weight: 600;
  font-family: var(--font-display);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 50;
  transition: all 0.3s var(--ease);
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 96px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .hero-visual { order: -1; }
  .hero-img { max-width: 340px; margin: 0 auto; }
  .section-header--row { grid-template-columns: 1fr; gap: 8px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11,15,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 24px; z-index: 98;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 20px; color: var(--text); padding: 12px 24px; }
  .menu-toggle { display: block; z-index: 99; position: relative; }
  .hero { padding: 110px 20px 60px; }
  .section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 20px 12px; }
  .about-values { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .btn-submit { width: 100%; justify-content: center; }
  .cta-section { padding: 72px 20px; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-row { flex-direction: column; gap: 8px; text-align: center; }
  .whatsapp-btn { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .back-to-top { bottom: 16px; right: 78px; width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow, .hero h1, .hero-desc, .hero-actions, .hero-visual {
    opacity: 1; transform: none; animation: none;
  }
  .typing-cursor { animation: none; }
  .whatsapp-btn { animation: none; }
}
