/* ══════════════════════════════════════════════════════════════════════════════
  MIA Tech – Main Stylesheet
  Primary accent: rgb(241, 136, 0) | Deep Navy + Tech
  ══════════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
  /* Brand */
  --brand:          rgb(241, 136, 0);
  --brand-dim:      rgba(241, 136, 0, 0.18);
  --brand-glow:     rgba(241, 136, 0, 0.35);
  --brand-light:    rgb(255, 170, 50);
  --brand-dark:     rgb(190, 100, 0);
  --accent:         var(--brand);

  /* Dark Mode (default) */
  --bg:             #0a0f1e;
  --bg-2:           #0f172a;
  --bg-3:           #131e36;
  --surface:        #121c33;
  --surface-2:      #182541;
  --border:         rgba(241, 136, 0, 0.18);
  --border-subtle:  rgba(148, 163, 184, 0.14);
  --text-primary:   #f4f7ff;
  --text-secondary: #c0c8de;
  --text-muted:     #8a96b3;
  --glass:          rgba(10, 15, 30, 0.72);
  --glass-border:   rgba(241, 136, 0, 0.24);

  /* Typography */
  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Sizes */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  /* Transitions */
  --t-fast:  0.15s ease;
  --t-med:   0.3s ease;
  --t-slow:  0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-brand: 0 0 30px rgba(241, 136, 0, 0.2), 0 4px 16px rgba(0,0,0,0.4);
}

/* ── Light Mode Variables ───────────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:             #f7f8fb;
  --bg-2:           #edf1f7;
  --bg-3:           #e6ebf4;
  --surface:        #ffffff;
  --surface-2:      #f4f7fc;
  --border:         rgba(241, 136, 0, 0.22);
  --border-subtle:  rgba(15, 23, 42, 0.08);
  --text-primary:   #0b1220;
  --text-secondary: #3a465f;
  --text-muted:     #6e7a94;
  --glass:          rgba(255, 255, 255, 0.9);
  --glass-border:   rgba(241, 136, 0, 0.28);
  --shadow:         0 10px 28px rgba(15, 23, 42, 0.12);
  --shadow-brand:   0 0 30px rgba(241, 136, 0, 0.14), 0 6px 18px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--t-med), color var(--t-med);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--brand-dark); border-radius: 3px; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.mono { font-family: var(--font-mono); }

/* ── Layout Containers ─────────────────────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

section { padding-block: clamp(5rem, 10vw, 8rem); }

/* ── Noise texture overlay ─────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

[data-theme="light"] body::before { opacity: 0.12; }

/* ════════════════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--t-med), border-color var(--t-med), backdrop-filter var(--t-med);
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.navbar__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(241, 136, 0, 0.4);
}
.navbar__logo-name {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.navbar__logo-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  background: var(--brand);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 0 16px rgba(241, 136, 0, 0.5);
}
.navbar__logo > span { color: var(--brand); }

/* Inline SVG icons (replacing emoji) */
.icon-inline {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  flex-shrink: 0;
}

/* Nav links */
.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar__links a {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.navbar__links a:hover { color: var(--brand); }

/* Blog link in controls */
.navbar__blog-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.navbar__blog-link:hover { color: var(--brand); }

/* "Concertar cita" nav link */
.navbar__cita-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-light) !important;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.navbar__cita-link:hover { color: var(--brand) !important; }

/* Controls */
.navbar__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme toggle – hidden (single dark theme) */
.theme-toggle { display: none !important; }
.theme-toggle--unused {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all var(--t-fast);
}
.theme-toggle:hover {
  background: var(--brand-dim);
  border-color: var(--brand);
  color: var(--brand);
}

/* Section-level booking CTA */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* CTA button navbar */
.btn-nav {
  padding: 0.35rem 0.85rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.btn-nav:hover {
  background: var(--brand-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--brand-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px; padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-med);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated grid background */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(241,136,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,136,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  pointer-events: none;
}

[data-theme="light"] .hero__grid {
  background-image:
    linear-gradient(rgba(241,136,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,136,0,0.07) 1px, transparent 1px);
}

@keyframes gridShift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Orb glows */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(241,136,0,0.15), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 10%;
  background: radial-gradient(circle, rgba(241,136,0,0.08), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: var(--brand-dim);
  border: 1px solid rgba(241,136,0,0.3);
  border-radius: 100px;
}

.hero__title {
  font-size: clamp(2.3rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 720px;
  margin-bottom: 1.35rem;
  text-wrap: balance;
}

.hero__title .highlight {
  color: transparent;
  background: linear-gradient(90deg, var(--brand), #ffbf5a 42%, #3dd7c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline;
}

.hero__title .highlight-underline {
  display: inline;
  text-decoration: underline;
  text-decoration-color: rgba(241, 136, 0, 0.5);
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
}

.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 2.1rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.65rem;
}
.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--text-secondary);
  font-size: .78rem;
  font-weight: 600;
}
.hero__proof span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3dd7c5;
  box-shadow: 0 0 14px rgba(61,215,197,.65);
}

/* ════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-med);
  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 var(--t-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 24px rgba(241,136,0,0.3);
}
.btn-primary:hover {
  background: var(--brand-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(241,136,0,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--brand-dim);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241,136,0,0.3);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* ════════════════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════════════
   VISUAL STORY SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.visual-story {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.visual-story__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.visual-story__content .section-header,
.visual-story__content .section-desc {
  text-align: left;
  margin-inline: 0;
}

.visual-story__content .section-title {
  max-width: 520px;
}

.visual-story__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 1rem;
}

.visual-story__item {
  position: relative;
  min-height: 170px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-story__item--wide {
  grid-row: span 2;
  min-height: 360px;
}

.visual-story__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform var(--t-slow);
}

.visual-story__item:hover img {
  transform: scale(1.04);
}

.visual-story__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 8, 20, 0.78));
  pointer-events: none;
}

.visual-story__item figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.services { background: var(--bg-2); position: relative; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
}

.service-card:hover {
  border-color: var(--brand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-brand);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px; height: 56px;
  background: var(--brand-dim);
  border: 1px solid rgba(241,136,0,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--t-med);
  color: var(--brand);
}
.service-card:hover .service-card__icon {
  background: var(--brand);
  box-shadow: 0 0 24px rgba(241,136,0,0.4);
  color: #fff;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-card__tag {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.3rem 0.8rem;
  background: var(--brand-dim);
  color: var(--brand);
  border-radius: 100px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Featured card */
.service-card--featured {
  background: linear-gradient(135deg, rgba(241,136,0,0.12), var(--surface) 70%);
  border-color: rgba(241,136,0,0.35);
}

/* ════════════════════════════════════════════════════════════════════════════
   WHO SECTION (Para Quién)
   ════════════════════════════════════════════════════════════════════════════ */
.who { background: var(--bg); }

.who__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.who__visual {
  position: relative;
}

.who__terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-brand);
}

.who__terminal-bar {
  background: var(--surface-2);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.who__terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.who__terminal-dot:nth-child(1) { background: #ff5f56; }
.who__terminal-dot:nth-child(2) { background: #ffbd2e; }
.who__terminal-dot:nth-child(3) { background: #27c93f; }
.who__terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.who__terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.9;
}

.who__terminal-body .cmd  { color: var(--brand); }
.who__terminal-body .out  { color: #27c93f; }
.who__terminal-body .cmt  { color: var(--text-muted); }
.who__terminal-body .err  { color: #ff5f56; }
.who__terminal-body .text { color: var(--text-primary); }
.who__terminal-body .cursor {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--brand);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.who__content { }

.who__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.who__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all var(--t-med);
}
.who__item:hover {
  border-color: var(--brand);
  transform: translateX(6px);
}

.who__item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--brand);
}

.who__item-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.who__item-text p  { font-size: 0.875rem; color: var(--text-secondary); }

.who__cta { margin-top: 2rem; }

/* ════════════════════════════════════════════════════════════════════════════
   RESULTS SECTION (Qué conseguirás)
   ════════════════════════════════════════════════════════════════════════════ */
.results { background: var(--bg-2); }

.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.result-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med);
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width var(--t-med);
}
.result-card:hover::after { width: 100%; }

.result-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.result-card__number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.result-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════════════
   WHY US SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.why { background: var(--bg); }

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.why__content .section-header { text-align: left; }
.why__content .section-header .section-desc { margin-inline: 0; }

.why__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.why__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why__feature-check {
  width: 28px; height: 28px;
  background: var(--brand-dim);
  border: 1px solid rgba(241,136,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.why__feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.why__feature-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Stack visual */
.why__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why__stack-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--t-med);
}
.why__stack-item:hover {
  border-color: var(--brand);
  transform: translateX(-6px);
  box-shadow: var(--shadow-brand);
}

.why__stack-logo {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: var(--brand);
}
.why__stack-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.why__stack-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.why__stack-bar {
  margin-left: auto;
  text-align: right;
}
.why__stack-pct {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
}
.why__stack-track {
  width: 80px; height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  margin-left: auto;
}
.why__stack-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ════════════════════════════════════════════════════════════════════════════
   ODOO HIGHLIGHT BANNER
   ════════════════════════════════════════════════════════════════════════════ */
.odoo-banner {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--surface) 50%, var(--bg-3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.odoo-banner__inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.odoo-banner__content { flex: 1; min-width: 280px; }
.odoo-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(113, 75, 103, 0.2);
  border: 1px solid rgba(113, 75, 103, 0.4);
  color: #c084b0;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.odoo-banner__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.odoo-banner__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.odoo-banner__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.odoo-banner__module {
  padding: 0.4rem 0.9rem;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}
.odoo-banner__module:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-dim);
}

.odoo-banner__visual {
  flex-shrink: 0;
  position: relative;
}
.odoo-banner__circle {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(241,136,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.odoo-banner__circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(241,136,0,0.2);
  animation: spin 20s linear infinite;
}
.odoo-banner__circle::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(241,136,0,0.15);
  animation: spin 14s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.odoo-banner__circle-inner {
  font-size: 4rem;
  z-index: 1;
  color: var(--brand);
}

/* ════════════════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.process { background: var(--bg); }

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.3;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__step-num {
  width: 46px; height: 46px;
  background: var(--surface);
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  transition: all var(--t-med);
}
.process__step:hover .process__step-num {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 20px rgba(241,136,0,0.4);
}

.process__step-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.process__step-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.contact { background: var(--bg-2); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}
.contact__info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.contact__detail-icon {
  width: 36px; height: 36px;
  background: var(--brand-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact__social {
  margin-top: 1.5rem;
}
.contact__social-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.contact__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact__social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--t-fast);
}
.contact__social-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.contact__social-icon svg { width: 18px; height: 18px; }
.contact__social-link:hover { color: var(--brand); }
.contact__social-link:hover .contact__social-icon {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-dim);
}

.contact__trust {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.contact__trust-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.contact__trust-items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact__trust-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contact__trust-item::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
}

/* ── Form ─────────────────────────────────────────────────────────────────── */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

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

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

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-2);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: all var(--t-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--brand);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(241,136,0,0.12);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F18800' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.form-control option {
  background: var(--surface);
  color: var(--text-primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-error {
  font-size: 0.78rem;
  color: #ff5f56;
  display: none;
}

.form-group.has-error .form-control { border-color: #ff5f56; }
.form-group.has-error .form-error   { display: block; }

/* Honeypot */
.form-honey { display: none !important; }

/* Submit area */
.form-submit { margin-top: 0.5rem; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Form states */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}
.form-alert.success {
  background: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  color: #27c93f;
  display: block;
}
.form-alert.error {
  background: rgba(255, 95, 86, 0.1);
  border: 1px solid rgba(255, 95, 86, 0.3);
  color: #ff5f56;
  display: block;
}

/* Submit button loading */
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--t-med);
  box-shadow: 0 4px 24px rgba(241,136,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover:not(:disabled) {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(241,136,0,0.4);
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-submit .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { opacity: 0.6; }

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding-block: 3rem 2rem;
}

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

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}

.footer__col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.footer__col ul li a:hover { color: var(--brand); }
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.footer__social-link svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__social-inline {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.footer__social-inline a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer__social-inline a:hover { color: var(--brand); }
.footer__social-inline svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════════════════════════════
   ANIMATIONS & SCROLL REVEAL
   ════════════════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ════════════════════════════════════════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════════════════════════════════════════ */
.text-brand   { color: var(--brand); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── Back to top ─────────────────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(241,136,0,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-med);
  pointer-events: none;
  z-index: 500;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover { background: var(--brand-light); transform: translateY(-3px); }

/* ════════════════════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ════════════════════════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  z-index: 1001;
  box-shadow: 0 0 10px rgba(241, 136, 0, 0.5);
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════════
   PARALLAX UTILITY
   ════════════════════════════════════════════════════════════════════════════ */
[data-parallax] {
  translate: 0 var(--parallax-y, 0);
  will-change: translate;
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO – Premium Automation Flow Canvas
   ════════════════════════════════════════════════════════════════════════════ */
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.hero__visual-col {
  position: relative;
  perspective: 1200px;
  z-index: 1;
}

.automation-flow {
  position: relative;
  width: min(560px, 100%);
  min-height: 470px;
  margin-inline: auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 18% 15%, rgba(241,136,0,.18), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(61,215,197,.16), transparent 34%),
    linear-gradient(145deg, rgba(18,28,51,.94), rgba(7,12,25,.96));
  box-shadow: 0 32px 80px -34px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  outline: none;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.automation-flow::before {
  content: '';
  position: absolute;
  inset: 40px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 74%);
  pointer-events: none;
}

.automation-flow:hover,
.automation-flow:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(61,215,197,.28);
  box-shadow: 0 40px 100px -34px rgba(0,0,0,.9), 0 0 70px rgba(61,215,197,.12);
}

.automation-flow__topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,13,26,.48);
}
.automation-flow__topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f56;
}
.automation-flow__topbar span:nth-child(2) { background: #ffbd2e; }
.automation-flow__topbar span:nth-child(3) { background: #27c93f; }
.automation-flow__topbar strong {
  margin-left: .55rem;
  color: var(--text-muted);
  font-size: .72rem;
  font-family: var(--font-mono);
  font-weight: 500;
}

.automation-flow__canvas {
  position: relative;
  min-height: 428px;
}
.automation-flow__paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.automation-flow__paths path {
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: flowDash 8s linear infinite;
}
.automation-flow__paths path:nth-child(2),
.automation-flow__paths path:nth-child(5) {
  stroke: rgba(61,215,197,.34);
  animation-duration: 6s;
}
.automation-flow__paths path:nth-child(1),
.automation-flow__paths path:nth-child(4) {
  stroke: rgba(241,136,0,.34);
}

.flow-node {
  position: absolute;
  width: 176px;
  min-height: 92px;
  padding: .86rem .92rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(12,18,32,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px -24px rgba(0,0,0,.7);
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.flow-node__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: .65rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #ffbf5a);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
}
.flow-node strong,
.flow-node small { display: block; }
.flow-node strong {
  color: var(--text-primary);
  font-size: .88rem;
  margin-bottom: .16rem;
}
.flow-node small {
  color: var(--text-muted);
  font-size: .68rem;
  line-height: 1.35;
}
.flow-node--lead { left: 26px; top: 38px; }
.flow-node--ai { left: 178px; top: 140px; width: 190px; border-color: rgba(241,136,0,.34); }
.flow-node--crm { right: 24px; top: 48px; }
.flow-node--ops { left: 32px; bottom: 54px; }
.flow-node--report { right: 28px; bottom: 38px; border-color: rgba(61,215,197,.32); }
.flow-node--ai .flow-node__icon,
.flow-node--report .flow-node__icon {
  background: linear-gradient(135deg, #3dd7c5, #6ea8ff);
}

.automation-flow:hover .flow-node,
.automation-flow:focus-visible .flow-node {
  border-color: rgba(255,255,255,.18);
  background: rgba(16,24,42,.9);
}
.automation-flow:hover .flow-node--ai,
.automation-flow:focus-visible .flow-node--ai { transform: translateY(-6px) scale(1.02); }
.automation-flow:hover .flow-node--lead,
.automation-flow:focus-visible .flow-node--lead { transform: translate(-4px, -4px); }
.automation-flow:hover .flow-node--crm,
.automation-flow:focus-visible .flow-node--crm { transform: translate(5px, -4px); }
.automation-flow:hover .flow-node--ops,
.automation-flow:focus-visible .flow-node--ops { transform: translate(-4px, 5px); }
.automation-flow:hover .flow-node--report,
.automation-flow:focus-visible .flow-node--report { transform: translate(5px, 5px); }

.flow-result {
  position: absolute;
  display: grid;
  gap: .1rem;
  min-width: 110px;
  padding: .72rem .85rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px -25px rgba(0,0,0,.8);
  animation: floatBadge 5.5s ease-in-out infinite;
}
.flow-result span {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-mono);
}
.flow-result small {
  color: var(--text-muted);
  font-size: .68rem;
}
.flow-result--time { left: 52%; top: 26px; }
.flow-result--speed { left: 42%; bottom: 22px; animation-delay: -2.4s; }

@keyframes flowDash {
  to { stroke-dashoffset: -90; }
}

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

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Tablet ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Nav */
  .navbar__links { display: none; }
  .hamburger     { display: flex; }

  .navbar__controls {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: .5rem;
  }

  .navbar__logo {
    flex: 1 1 auto;
  }
  .navbar__blog-link { display: none; }

  /* Hero - single column */

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 4rem;
  }
  .hero__content { text-align: center; }
  .hero__label   { margin-inline: auto; }
  .hero__desc    { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__proof   { justify-content: center; }
  .hero__visual-col {
    width: min(100%, 560px);
    margin-inline: auto;
  }
  .automation-flow { min-height: 430px; }

  /* Sections */
  .visual-story__inner { grid-template-columns: 1fr; }
  .visual-story__content .section-title,
  .visual-story__content .section-desc { max-width: 680px; }
  .who__layout     { grid-template-columns: 1fr; }
  .who__visual     { order: -1; max-width: 440px; margin-inline: auto; }
  .why__layout     { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; }
  .footer__main    { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
  .process__steps  { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Global spacing */
  section { padding-block: clamp(3rem, 8vw, 5rem); }
  .section-header { margin-bottom: clamp(2rem, 5vw, 3rem); }
  .section-title  { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .section-desc   { font-size: 0.95rem; }

  /* Hero */
  .hero { padding-top: 90px; padding-bottom: 3rem; }
  .hero__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero__visual-col { display: none; }
  .hero__proof { justify-content: center; }

  /* Service cards */
  .visual-story__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .visual-story__item,
  .visual-story__item--wide { min-height: 220px; grid-row: auto; }
  .service-card { padding: 1.75rem; }
  .service-card__icon { width: 48px; height: 48px; margin-bottom: 1rem; }

  /* Results */
  .results__grid { grid-template-columns: 1fr 1fr; }
  .result-card { padding: 1.5rem; }
  .result-card__number { font-size: 2rem; }

  /* Process steps – vertical timeline */
  .process__steps { grid-template-columns: 1fr; gap: 0; }
  .process__step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .process__step:last-child { border-bottom: none; }
  .process__step-num {
    width: 44px; height: 44px;
    font-size: 0.85rem;
    margin: 0;
    grid-row: 1 / 3;
    align-self: center;
  }
  .process__step-title { font-size: 0.95rem; }
  .process__step-desc  { grid-column: 2; }

  /* Who section */
  .who__item { padding: 1rem; }
  .who__terminal-body { font-size: 0.72rem; padding: 1rem; }

  /* Odoo banner */
  .odoo-banner__inner { gap: 2rem; }
  .odoo-banner__circle { width: 140px; height: 140px; }
  .odoo-banner__circle-inner { font-size: 2.5rem; }
  .odoo-banner__modules {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
  }
  .odoo-banner__modules::-webkit-scrollbar { display: none; }
  .odoo-banner__module { flex-shrink: 0; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.25rem; }
  .contact__trust-items { flex-direction: column; gap: 0.5rem; }

  /* Why section */
  .why__stack-item { padding: 1rem; flex-wrap: wrap; }
  .why__stack-bar { margin-left: 0; margin-top: 0.5rem; width: 100%; }
  .why__stack-track { width: 100%; margin-left: 0; }

  /* Footer */
  .footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  /* Hide nav CTA on mobile (hamburger has it) */
  .btn-nav { display: none; }

  /* Back to top */
  .back-top { bottom: 1.25rem; right: 1.25rem; }

  /* Process */
  .process__steps { grid-template-columns: 1fr 1fr; }
}

/* ── Extra Small Phones ──────────────────────────────────────────────────── */
@media (max-width: 380px) {
  .results__grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ── Accessibility ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-parallax] { translate: none !important; }
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,.45);
  padding: 1rem;
  animation: ckFadeIn .35s ease;
}
@keyframes ckFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  max-width: 700px;
  width: 100%;
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,.25);
}

.cookie-banner__content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.cookie-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: #fff;
}
.cookie-banner__title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: .25rem;
}
.cookie-banner__text {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--brand);
  text-decoration: underline;
}

/* Settings panel */
.cookie-banner__settings {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cookie-banner__settings[hidden] { display: none; }

.cookie-banner__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  border-radius: var(--radius-md);
  background: var(--surf-1);
}
.cookie-banner__option-info { flex: 1; }
.cookie-banner__option-info strong {
  display: block;
  font-size: .9rem;
  color: var(--text-1);
  margin-bottom: .15rem;
}
.cookie-banner__option-info p {
  font-size: .78rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* Toggle switch */
.cookie-banner__toggle {
  flex-shrink: 0;
  position: relative;
}
.cookie-banner__toggle input[type="checkbox"] {
  width: 48px;
  height: 28px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}
.cookie-banner__toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transition: transform .2s;
}
.cookie-banner__toggle input[type="checkbox"]:checked {
  background: var(--brand);
}
.cookie-banner__toggle input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}
.cookie-banner__toggle--disabled input[type="checkbox"] {
  opacity: .6;
  cursor: not-allowed;
}
.cookie-banner__toggle--disabled label {
  font-size: .7rem;
  color: var(--text-3);
  display: block;
  text-align: center;
  margin-top: .15rem;
}

/* Action buttons */
.cookie-banner__actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  flex: 1 1 auto;
  padding: .65rem 1.1rem;
  border-radius: var(--radius-md);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .85rem;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  text-align: center;
}
.cookie-banner__btn:hover { transform: translateY(-1px); }
.cookie-banner__btn--primary {
  background: var(--brand);
  color: #fff;
}
.cookie-banner__btn--primary:hover {
  background: var(--brand-hover);
}
.cookie-banner__btn--secondary {
  background: var(--surf-1);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.cookie-banner__btn--secondary:hover {
  background: var(--border);
}

/* Footer cookie settings button */
.footer__cookie-btn {
  background: none;
  border: none;
  font: inherit;
  color: var(--text-3);
  font-size: .8125rem;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s;
  padding: 0;
}
.footer__cookie-btn:hover { color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.legal-page {
  --legal-max: 800px;
  padding-top: 120px;
}

/* Simplified navbar for legal pages */
.legal-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: .75rem 1.5rem;
  background: var(--surf-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legal-navbar__left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.legal-navbar__logo {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-1);
  text-decoration: none;
}
.legal-navbar__logo span { color: var(--brand); }
.legal-navbar__back {
  font-size: .85rem;
  color: var(--text-3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: color .2s;
}
.legal-navbar__back:hover { color: var(--brand); }
.legal-navbar__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Legal header */
.legal-page__header {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  max-width: var(--legal-max);
  margin: 0 auto;
}
.legal-page__header .legal-header__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surf-2);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .35rem 1rem;
  font-size: .8rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.legal-page__header .legal-header__badge svg { color: var(--brand); }
.legal-page__header h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: .5rem;
}
.legal-page__updated {
  font-size: .85rem;
  color: var(--text-3);
}
.legal-page__back {
  display: inline-block;
  font-size: .85rem;
  color: var(--text-3);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color .2s;
}
.legal-page__back:hover { color: var(--brand); }

/* Legal content */
.legal-page__content {
  max-width: var(--legal-max);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  color: var(--text-2);
  line-height: 1.75;
  font-size: .95rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.legal-page__content h2 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 2.5rem 0 .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.legal-page__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-page__content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
  margin: 1.5rem 0 .5rem;
}
.legal-page__content p { margin-bottom: 1rem; }
.legal-page__content strong { color: var(--text-1); }
.legal-page__content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page__content ul,
.legal-page__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page__content li { margin-bottom: .4rem; }

/* Legal tables */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .88rem;
}
.legal-table th,
.legal-table td {
  padding: .65rem .9rem;
  text-align: left;
  border: 1px solid var(--border);
}
.legal-table th {
  background: var(--surf-2);
  color: var(--text-1);
  font-weight: 600;
  white-space: nowrap;
}
.legal-table td { color: var(--text-2); }
.legal-table tr:nth-child(even) td { background: var(--surf-1); }

/* Cookie-specific tables with scroll on mobile */
.legal-table--cookies {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Legal footer */
.legal-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}
.legal-footer__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.legal-footer__nav a {
  font-size: .85rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
}
.legal-footer__nav a:hover { color: var(--brand); }
.legal-footer__copy {
  font-size: .78rem;
  color: var(--text-3);
}

/* ════════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE — Maildesk
   ════════════════════════════════════════════════════════════════════════════ */

/* Product Hero */
.product-hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.product-hero__badges {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.product-hero__badge {
  display: inline-flex;
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.product-hero__badge--version {
  background: rgba(var(--brand-rgb, 241,136,0), .12);
  color: var(--brand);
}
.product-hero__badge--category {
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.product-hero__badge--new {
  background: #10b98114;
  color: #10b981;
}
.product-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.product-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(var(--brand-rgb, 241,136,0), .12);
  color: var(--brand);
  flex-shrink: 0;
}
.product-hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.product-hero__desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 2rem;
  max-width: 540px;
}
.product-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.product-hero__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.product-hero__meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-3);
}
.product-hero__meta-item svg { opacity: .6; }

/* Product Hero – Mockup */
.product-hero__mockup {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
[data-theme="dark"] .product-hero__mockup {
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.product-hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: .6rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.product-hero__mockup-bar > span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.product-hero__mockup-bar > span:first-child { background: #ff5f56; }
.product-hero__mockup-bar > span:nth-child(2) { background: #ffbd2e; }
.product-hero__mockup-bar > span:nth-child(3) { background: #27c93f; }
.product-hero__mockup-url {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--text-3);
  background: var(--surface);
  padding: .2rem .75rem;
  border-radius: 6px;
}
.product-hero__mockup-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 300px;
}
.product-hero__mockup-sidebar {
  border-right: 1px solid var(--border);
  padding: .75rem .5rem;
}
.pmock-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .6rem;
  border-radius: 8px;
  font-size: .75rem;
  color: var(--text-2);
  cursor: default;
  transition: background .2s;
}
.pmock-item--active {
  background: rgba(var(--brand-rgb, 241,136,0), .1);
  color: var(--brand);
  font-weight: 600;
}
.pmock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.pmock-dot--brand { background: var(--brand); }
.pmock-dot--green { background: #10b981; }
.pmock-dot--blue { background: #3b82f6; }
.pmock-badge {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  font-size: .65rem;
  padding: .1rem .4rem;
  border-radius: 100px;
  font-weight: 700;
}
.pmock-sep {
  height: 1px;
  background: var(--border);
  margin: .5rem .6rem;
}
.product-hero__mockup-main {
  padding: .5rem;
}
.pmock-mail {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 10px;
  font-size: .78rem;
  transition: background .2s;
}
.pmock-mail:hover { background: var(--bg); }
.pmock-mail--unread { font-weight: 600; }
.pmock-mail--unread .pmock-mail-from,
.pmock-mail--unread .pmock-mail-subject { color: var(--text-1); }
.pmock-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pmock-mail-info {
  flex: 1;
  min-width: 0;
}
.pmock-mail-from {
  font-size: .76rem;
  color: var(--text-2);
}
.pmock-mail-subject {
  font-size: .72rem;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pmock-mail-date {
  font-size: .65rem;
  color: var(--text-3);
  white-space: nowrap;
}
.pmock-track {
  display: flex;
  align-items: center;
}

/* Product Features Grid */
.product-features {
  padding: 5rem 0;
}
.product-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  border-color: var(--brand);
}
[data-theme="dark"] .pf-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.pf-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(var(--brand-rgb, 241,136,0), .1);
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.pf-card__icon--ai {
  background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(var(--brand-rgb, 241,136,0), .12));
  color: #8b5cf6;
}
.pf-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--text-1);
}
.pf-card__desc {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 1.25rem;
}
.pf-card__tags {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pf-card__tags li {
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-3);
  border: 1px solid var(--border);
}

/* How it works */
.product-how {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-how__step {
  text-align: center;
  max-width: 280px;
  flex: 1;
}
.product-how__step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  background: rgba(var(--brand-rgb, 241,136,0), .12);
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.product-how__step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.product-how__step p {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.65;
}
.product-how__connector {
  width: 50px;
  height: 2px;
  background: var(--border);
  margin-top: 26px;
  flex-shrink: 0;
}

/* Specs section */
.product-specs {
  padding: 5rem 0;
}
.product-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-specs__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  overflow-x: auto;
}
.product-specs__card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-1);
}
.product-specs__card .legal-table {
  margin-bottom: 0;
}

/* CTA section */
.product-cta {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.product-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(var(--brand-rgb, 241,136,0), .06), rgba(var(--brand-rgb, 241,136,0), .02));
  border: 1px solid rgba(var(--brand-rgb, 241,136,0), .2);
  border-radius: 24px;
}
.product-cta__inner h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-cta__inner p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.product-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Product page responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .product-hero__grid {
    grid-template-columns: 1fr;
  }
  .product-hero__visual { display: none; }
  .product-features__grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-specs__grid {
    grid-template-columns: 1fr;
  }
  .product-how__steps {
    flex-direction: column;
    align-items: center;
  }
  .product-how__connector {
    width: 2px; height: 30px;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .product-hero {
    padding: 6rem 0 2.5rem;
  }
  .product-hero__title { font-size: 2rem; }
  .product-hero__actions { flex-direction: column; }
  .product-hero__actions .btn { width: 100%; text-align: center; }
  .product-hero__meta { flex-direction: column; gap: .5rem; }
  .product-features__grid {
    grid-template-columns: 1fr;
  }
  .pf-card { padding: 1.5rem; }
  .product-cta__inner { padding: 2rem 1.25rem; }
  .product-cta__actions { flex-direction: column; }
  .product-cta__actions .btn { width: 100%; text-align: center; }
}

/* Cookie banner mobile */
@media (max-width: 600px) {
  .cookie-banner { padding: .5rem; }
  .cookie-banner__inner { padding: 1rem; max-height: 90vh; overflow-y: auto; }
  .cookie-banner__content { flex-direction: column; gap: .5rem; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__btn { width: 100%; }
  .cookie-banner__option { flex-direction: column; align-items: flex-start; gap: .5rem; }
  
  /* Legal pages mobile */
  .legal-page__header { padding: 2rem 1rem 1.5rem; }
  .legal-page__content { padding: 0 1rem 3rem; }
  .legal-table { font-size: .8rem; }
  .legal-table th { white-space: normal; }
  .legal-table th,
  .legal-table td { padding: .5rem .6rem; }

  /* Blog mobile */
  .blog-hero         { padding: 4rem 0 2rem; }
  .blog-hero h1      { font-size: 2rem; }
  .blog-grid         { grid-template-columns: 1fr; }
  .blog-grid .blog-card--featured { grid-column: span 1; }
  .post__layout      { grid-template-columns: 1fr; }
  .post__sidebar     { order: -1; }
  .post__header-inner { padding: 3rem 1rem 1.5rem; }
  .post__title       { font-size: 1.8rem; }
  .post-share        { flex-wrap: wrap; gap: .5rem; }
  .post-cta__inner   { padding: 2.5rem 1.5rem; }
  .post-cta__inner h2 { font-size: 1.6rem; }
  .blog-filters__inner { gap: .4rem; }
}


/* ════════════════════════════════════════════════════════════════════════════
   HERO FOMO STRIP
   ════════════════════════════════════════════════════════════════════════════ */
.hero__fomo-strip {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  background: rgba(241,136,0,.15);
  border: 1px solid rgba(241,136,0,.4);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand-light);
  letter-spacing: .01em;
}
.fomo-sep { color: var(--text-muted); font-size: .8rem; }
.fomo-text { font-size: .82rem; color: var(--text-secondary); font-weight: 500; }

.hero__label-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(241,136,0,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(241,136,0,0); }
}

.btn-glow {
  box-shadow: 0 0 20px rgba(241,136,0,.35), 0 4px 16px rgba(0,0,0,.3);
  animation: btn-glow-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(241,136,0,.35), 0 4px 16px rgba(0,0,0,.3); }
  50%      { box-shadow: 0 0 36px rgba(241,136,0,.55), 0 4px 20px rgba(0,0,0,.3); }
}

/* ════════════════════════════════════════════════════════════════════════════
   NAVBAR BOOKING CTA
   ════════════════════════════════════════════════════════════════════════════ */
.btn-nav--booking {
  background: rgba(241,136,0,.15) !important;
  border: 1px solid rgba(241,136,0,.5) !important;
  color: var(--brand-light) !important;
}
.btn-nav--booking:hover {
  background: var(--brand) !important;
  color: #fff !important;
}

/* ════════════════════════════════════════════════════════════════════════════
   SERVICE CARD – AI VARIANT
   ════════════════════════════════════════════════════════════════════════════ */
.service-card--ai {
  position: relative;
  background: linear-gradient(135deg, rgba(241,136,0,.08), rgba(241,136,0,.02));
  border-color: rgba(241,136,0,.4);
  overflow: visible;
}
.service-card--ai:hover { border-color: var(--brand); }
.service-card__ai-badge {
  position: absolute;
  top: -11px; right: 1.5rem;
  background: var(--brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.service-card__tag--ai {
  background: rgba(241,136,0,.18);
  color: var(--brand-light);
  border: 1px solid rgba(241,136,0,.35);
}

/* ════════════════════════════════════════════════════════════════════════════
   AI & AUTOMATIZACIÓN SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.ai-section { background: var(--bg-2); position: relative; overflow: hidden; }
.ai-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(241,136,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.ai-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.ai-card:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  box-shadow: var(--shadow-brand);
}
.ai-card--featured {
  background: linear-gradient(135deg, rgba(241,136,0,.1) 0%, var(--surface) 60%);
  border-color: rgba(241,136,0,.4);
}
.ai-card--featured:hover { border-color: var(--brand); }
.ai-card__badge {
  position: absolute;
  top: -11px; right: 1.5rem;
  background: var(--brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ai-card__icon {
  width: 52px; height: 52px;
  background: var(--brand-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.ai-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .65rem;
  color: var(--text-primary);
}
.ai-card__desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.ai-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.ai-card__tags span {
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  background: var(--bg-3);
  border-radius: 999px;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  letter-spacing: .03em;
}

/* FOMO block inside AI section */
.ai-fomo {
  margin-top: 4rem;
}
.ai-fomo__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(241,136,0,.1), rgba(241,136,0,.04));
  border: 1px solid rgba(241,136,0,.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
}
.ai-fomo__counter {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand);
  font-family: var(--font-mono);
  line-height: 1;
}
.ai-fomo__label {
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.5;
}
.ai-fomo__headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
}
.ai-fomo__sub {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ai-fomo__right { text-align: center; }
.ai-fomo__guarantee {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .6rem;
  text-align: center;
}

@media (max-width: 900px) {
  .ai-fomo__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .ai-fomo__left { display: flex; align-items: center; gap: 1rem; justify-content: center; }
}

/* ============================================================================
   PREMIUM AUTOMATION PAGE SECTIONS
   Applies only before booking/contact: visual language for sales sections.
  ============================================================================ */
.visual-story,
.services,
.ai-section,
.who,
.odoo-banner,
.results,
.why,
.process {
  position: relative;
  overflow: hidden;
}

.visual-story::before,
.services::before,
.ai-section::after,
.who::before,
.results::before,
.why::before,
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 80%, transparent);
  pointer-events: none;
}

.services,
.results,
.ai-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(241,136,0,.12), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(61,215,197,.09), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #0b1120 100%);
}

.visual-story,
.who,
.why,
.process {
  background:
    radial-gradient(circle at 85% 10%, rgba(110,168,255,.08), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(241,136,0,.08), transparent 30%),
    var(--bg);
}

.visual-story .section-header,
.services .section-header,
.ai-section .section-header,
.who .section-header,
.results .section-header,
.why .section-header,
.process .section-header {
  position: relative;
  z-index: 1;
}

.visual-story .section-label,
.services .section-label,
.ai-section .section-label,
.who .section-label,
.results .section-label,
.why .section-label,
.process .section-label {
  padding: .38rem .8rem;
  border: 1px solid rgba(241,136,0,.26);
  border-radius: 999px;
  background: rgba(241,136,0,.08);
  color: var(--brand-light);
}

.visual-story .section-title,
.services .section-title,
.ai-section .section-title,
.who .section-title,
.results .section-title,
.why .section-title,
.process .section-title {
  letter-spacing: 0;
  text-wrap: balance;
}

.visual-story .section-desc,
.services .section-desc,
.ai-section .section-desc,
.who .section-desc,
.results .section-desc,
.why .section-desc,
.process .section-desc {
  max-width: 720px;
}

.visual-story__item,
.service-card,
.ai-card,
.who__flow,
.who__item,
.result-card,
.why__stack-item {
  background: linear-gradient(180deg, rgba(18,28,51,.86), rgba(10,15,30,.92));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 52px -32px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}

.service-card,
.ai-card,
.result-card,
.who__item,
.why__stack-item,
.process__step {
  isolation: isolate;
}

.service-card::after,
.ai-card::after,
.result-card::before,
.why__stack-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(241,136,0,.18), rgba(61,215,197,.12) 46%, transparent 68%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: -1;
}

.service-card:hover::after,
.ai-card:hover::after,
.result-card:hover::before,
.why__stack-item:hover::before {
  opacity: 1;
}

.service-card:hover,
.ai-card:hover,
.result-card:hover,
.who__item:hover,
.why__stack-item:hover {
  border-color: rgba(61,215,197,.24);
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.86), 0 0 46px rgba(61,215,197,.08);
}

.service-card__icon,
.ai-card__icon,
.who__item-icon,
.why__stack-logo {
  width: auto;
  height: auto;
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--brand-light);
}

.service-card__icon,
.ai-card__icon {
  justify-content: flex-start;
  margin-bottom: 1.15rem;
}

.service-card__icon svg,
.ai-card__icon svg,
.who__item-icon svg,
.why__stack-logo svg {
  display: block;
  filter: drop-shadow(0 0 12px rgba(241,136,0,.28));
}

.service-card:hover .service-card__icon,
.ai-card:hover .ai-card__icon {
  background: transparent;
  box-shadow: none;
  color: #3dd7c5;
}

.who__item-icon {
  width: 28px;
  margin-top: .05rem;
}

.who__item-icon svg {
  width: 22px;
  height: 22px;
}

.why__stack-logo {
  width: 30px;
}

.why__stack-logo svg {
  width: 24px;
  height: 24px;
}

.service-card__tag,
.ai-card__tags span,
.odoo-banner__module {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-secondary);
}

.service-card--featured,
.service-card--ai,
.ai-card--featured {
  background:
    radial-gradient(circle at 20% 0%, rgba(241,136,0,.18), transparent 45%),
    linear-gradient(180deg, rgba(18,28,51,.92), rgba(10,15,30,.94));
  border-color: rgba(241,136,0,.28);
}

.visual-story__grid {
  perspective: 1200px;
}

.visual-story__item {
  border-radius: 22px;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

.visual-story__item:hover {
  transform: translateY(-6px) rotateX(1.5deg);
  border-color: rgba(61,215,197,.24);
  box-shadow: 0 34px 80px -36px rgba(0,0,0,.88);
}

.ai-section::after {
  background-size: 64px 64px;
  opacity: .8;
}

.ai-card__badge,
.fomo-badge {
  background: linear-gradient(135deg, rgba(241,136,0,.22), rgba(241,136,0,.08));
}

.ai-fomo__inner {
  position: relative;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(241,136,0,.22), transparent 42%),
    radial-gradient(circle at 85% 100%, rgba(61,215,197,.16), transparent 42%),
    linear-gradient(135deg, rgba(18,28,51,.95), rgba(8,13,26,.96));
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 34px 90px -44px rgba(0,0,0,.9);
}

.ai-fomo__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-100%);
  animation: premiumSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.who__flow {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
}

.who__flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(241,136,0,.18), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(61,215,197,.14), transparent 24%),
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  pointer-events: none;
}

.who__flow-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,13,26,.52);
}

.who__flow-status,
.who__flow-badge {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .02em;
}

.who__flow-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3dd7c5;
  box-shadow: 0 0 18px rgba(61,215,197,.72);
}

.who__flow-badge {
  color: var(--brand-light);
  padding: .28rem .62rem;
  border-radius: 999px;
  border: 1px solid rgba(241,136,0,.28);
  background: rgba(241,136,0,.08);
}

.who__flow-canvas {
  position: relative;
  z-index: 1;
  min-height: 360px;
}

.who__flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.who__flow-lines path {
  fill: none;
  stroke: rgba(241,136,0,.42);
  stroke-width: 1.8;
  stroke-dasharray: 8 12;
  animation: flowDash 13s linear infinite;
}

.who__flow-lines path:nth-child(even) {
  stroke: rgba(61,215,197,.34);
  animation-direction: reverse;
}

.who__flow-node,
.who__flow-core,
.who__flow-chip {
  position: absolute;
  z-index: 1;
}

.who__flow-node {
  width: 168px;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: rgba(9,15,30,.9);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 22px 50px -32px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.06);
}

.who__flow-node strong,
.who__flow-core strong {
  display: block;
  font-size: .88rem;
  color: var(--text-primary);
}

.who__flow-node small,
.who__flow-core small {
  display: block;
  margin-top: .18rem;
  font-size: .68rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.who__flow-dot {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(241,136,0,.68);
}

.who__flow-node--source .who__flow-dot { right: -6px; transform: translateY(-50%); }
.who__flow-node--output .who__flow-dot { left: -6px; transform: translateY(-50%); background: #3dd7c5; box-shadow: 0 0 18px rgba(61,215,197,.62); }
.who__flow-node--industry { left: 1.35rem; top: 2.1rem; }
.who__flow-node--retail { left: 1.35rem; bottom: 2.1rem; }
.who__flow-node--erp { right: 1.35rem; top: 3.1rem; }
.who__flow-node--ai { right: 1.35rem; bottom: 2.9rem; }

.who__flow-core {
  left: 50%;
  top: 50%;
  width: 154px;
  height: 154px;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, rgba(241,136,0,.36), rgba(241,136,0,.1) 45%, rgba(8,13,26,.96) 72%),
    rgba(8,13,26,.96);
  border: 1px solid rgba(241,136,0,.32);
  box-shadow: 0 0 0 10px rgba(241,136,0,.04), 0 22px 70px -34px rgba(241,136,0,.88);
}

.who__flow-core-ring {
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  border: 1px dashed rgba(241,136,0,.28);
  animation: spin 22s linear infinite;
}

.who__flow-chip {
  padding: .38rem .68rem;
  border-radius: 999px;
  color: var(--text-primary);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 34px -24px rgba(0,0,0,.9);
  animation: floatBadge 7s ease-in-out infinite;
}

.who__flow-chip--one { left: 2rem; top: 48%; }
.who__flow-chip--two { right: 2.2rem; top: 47%; animation-delay: -2s; }
.who__flow-chip--three { left: 48%; bottom: 1.2rem; animation-delay: -4s; }

.odoo-banner {
  background:
    radial-gradient(circle at 82% 50%, rgba(113,75,103,.3), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(241,136,0,.12), transparent 30%),
    linear-gradient(135deg, rgba(19,30,54,.96), rgba(8,13,26,.98));
  border-color: rgba(255,255,255,.08);
}

.odoo-banner__badge {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.1);
  color: #e9b7d5;
}

.odoo-banner__circle {
  background: radial-gradient(circle, rgba(241,136,0,.16), rgba(255,255,255,.03));
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 26px 80px -42px rgba(241,136,0,.7);
}

.results__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
  text-align: left;
  padding: 2rem;
}

.result-card::after {
  left: 2rem;
  transform: none;
  background: linear-gradient(90deg, var(--brand), #3dd7c5);
}

.result-card:hover::after { width: calc(100% - 4rem); }

.result-card__number {
  background: linear-gradient(90deg, var(--brand), #3dd7c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why__feature-check {
  background: rgba(61,215,197,.12);
  border-color: rgba(61,215,197,.28);
  color: #3dd7c5;
}

.why__stack-fill {
  background: linear-gradient(90deg, var(--brand), #3dd7c5);
}

.process__steps {
  gap: 1rem;
}

.process__steps::before {
  top: 34px;
  background: linear-gradient(90deg, transparent, rgba(241,136,0,.7), rgba(61,215,197,.7), transparent);
}

.process__step {
  padding: 1.3rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}

.process__step:hover {
  transform: translateY(-5px);
  border-color: rgba(61,215,197,.22);
  background: rgba(255,255,255,.055);
}

.process__step-num {
  background: rgba(8,13,26,.8);
  border-color: rgba(241,136,0,.65);
  box-shadow: 0 0 0 6px rgba(241,136,0,.06);
}

@keyframes premiumSweep {
  0%, 55% { transform: translateX(-100%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

@media (max-width: 900px) {
  .results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .who__visual { max-width: 620px; }
}

@media (max-width: 600px) {
  .results__grid { grid-template-columns: 1fr; }
  .process__step { text-align: left; }
  .service-card__icon,
  .ai-card__icon {
    width: auto;
    height: auto;
  }
  .who__flow { min-height: 460px; border-radius: 22px; }
  .who__flow-topbar { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .who__flow-canvas { min-height: 405px; }
  .who__flow-lines { display: none; }
  .who__flow-node {
    left: 1rem;
    right: 1rem;
    width: auto;
    border-radius: 18px;
  }
  .who__flow-node--industry { top: 1rem; }
  .who__flow-node--retail { top: 5.85rem; bottom: auto; }
  .who__flow-node--erp { top: auto; bottom: 5.85rem; }
  .who__flow-node--ai { bottom: 1rem; }
  .who__flow-core {
    width: 124px;
    height: 124px;
  }
  .who__flow-chip { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   BOOKING SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.booking-section { background: var(--bg); position: relative; }
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(241,136,0,.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.booking-header__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(241,136,0,.12);
  border: 1px solid rgba(241,136,0,.4);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-light);
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
}
.booking-badge-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.booking-header__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.booking-header__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.booking-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.booking-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.booking-trust-item svg { color: var(--brand); flex-shrink: 0; }

/* Widget container */
.booking-widget {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Progress bar */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-subtle);
  gap: .75rem;
}
.booking-progress__step {
  display: flex;
  align-items: center;
  gap: .5rem;
  opacity: .4;
  transition: opacity var(--t-med);
}
.booking-progress__step.active { opacity: 1; }
.booking-progress__step.done   { opacity: .8; }
.bp-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: background var(--t-med), border-color var(--t-med), color var(--t-med);
}
.booking-progress__step.active .bp-num {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.booking-progress__step.done .bp-num {
  background: rgba(241,136,0,.2);
  border-color: var(--brand);
  color: var(--brand);
}
.bp-label { font-size: .82rem; font-weight: 600; color: var(--text-secondary); }
.booking-progress__step.active .bp-label { color: var(--text-primary); }
.booking-progress__divider {
  height: 2px;
  width: 60px;
  background: var(--border-subtle);
  border-radius: 1px;
}

/* Steps */
.booking-step { padding: 2.5rem; }
.booking-step.hidden { display: none !important; }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Calendar */
.booking-cal {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}
.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.bc-nav-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  cursor: pointer;
}
.bc-nav-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.bc-month {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: capitalize;
}
.bc-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: .5rem;
}
.bc-weekdays span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  padding: .25rem 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bc-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.bc-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  color: var(--text-primary);
  position: relative;
  border: 2px solid transparent;
}
.bc-day:hover:not(.bc-day--disabled):not(.bc-day--past) {
  background: var(--brand-dim);
  border-color: rgba(241,136,0,.4);
  color: var(--brand-light);
}
.bc-day--disabled, .bc-day--past {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: .35;
}
.bc-day--weekend {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: .3;
}
.bc-day--available::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
}
.bc-day--selected {
  background: var(--brand) !important;
  color: #fff !important;
  border-color: var(--brand) !important;
  font-weight: 700;
}
.bc-day--today {
  border-color: rgba(241,136,0,.4);
  color: var(--brand);
}
.bc-day--empty { pointer-events: none; }
.bc-day--fully-booked::after { background: rgba(255,80,80,.7); }

/* Time slots */
.booking-slots-col { display: flex; flex-direction: column; gap: .75rem; }
.booking-slots-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .25rem;
}
.booking-slots-tz { font-size: .74rem; color: var(--text-muted); margin-top: .25rem; }
.booking-slots-placeholder { font-size: .9rem; color: var(--text-muted); font-style: italic; }
.booking-slots { display: flex; flex-direction: column; gap: .5rem; }
.booking-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: var(--bg-2);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--font-mono);
}
.booking-slot:hover {
  border-color: var(--brand);
  color: var(--brand-light);
  background: var(--brand-dim);
}
.booking-slot--selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.booking-slot--booked {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.booking-slot__duration { font-size: .72rem; color: inherit; opacity: .75; font-family: var(--font-sans); }

/* Step 2 form */
.booking-summary {
  background: rgba(241,136,0,.08);
  border: 1px solid rgba(241,136,0,.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.booking-summary__icon { color: var(--brand); flex-shrink: 0; }
.booking-summary__date { font-weight: 700; color: var(--text-primary); }
.booking-summary__time {
  font-family: var(--font-mono);
  font-size: .9rem;
  color: var(--brand-light);
  font-weight: 600;
}
.booking-summary__info { font-size: .82rem; color: var(--text-muted); }
.booking-form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

/* Step 3 success */
.booking-success {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.booking-success__icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(241,136,0,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin: 0 auto 1.5rem;
}
.booking-success__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: .75rem;
}
.booking-success__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.booking-success__details {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
  font-size: .9rem;
  line-height: 1.8;
}
.booking-success__details strong { color: var(--text-primary); }
.booking-success__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Urgency strip */
.booking-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.25rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.urgency-item svg { flex-shrink: 0; color: var(--text-muted); }
.urgency-item--highlight { color: var(--brand-light); font-weight: 700; }
.urgency-item--highlight svg { color: var(--brand); }

/* Responsive booking */
@media (max-width: 700px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-step { padding: 1.5rem; }
  .booking-widget { border-radius: var(--radius-lg); }
  .booking-progress { padding: 1rem; }
  .booking-progress__divider { width: 30px; }
  .bp-label { display: none; }
  .booking-urgency { flex-direction: column; gap: 1rem; padding: 1rem; }
  .ai-grid { grid-template-columns: 1fr; }
}
