/* ============================================================
   ENNEF — Premium Corporate Website
   Type: Space Grotesk (display) + Plus Jakarta Sans (body) + JetBrains Mono
   Palette: ink near-black + warm paper + coral/rust accent
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Surfaces */
  --ink:        #0B0F14;
  --ink-2:      #131820;
  --ink-3:      #1E2530;
  --paper:      #F6F4EE;
  --paper-2:    #EFECE3;
  --white:      #FFFFFF;
  --soft:       #F0EFEA;
  --border:     #E1DDD2;
  --border-2:   #C8C3B5;
  --hairline:   rgba(11,15,20,.08);

  /* Text */
  --heading:    #0B0F14;
  --body:       #2A2E36;
  --muted:      #6E6E66;
  --faint:      #A09F95;

  /* Accent — refined coral/rust */
  --accent:     #E25B3A;
  --accent-2:   #C44A2C;
  --accent-3:   #FAE9E2;
  --accent-ink: #561C0E;

  /* States */
  --success:    #2E7D5B;
  --success-bg: #E4F0EA;

  /* Fonts */
  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font:    "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --maxw:    1240px;
  --pad-x:   clamp(20px, 5vw, 64px);
  --radius:  18px;
  --radius-s: 12px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

/* ============================================================
   ICON SYSTEM
   ============================================================ */
.icon {
  width: 20px; height: 20px;
  stroke: currentColor; stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 22px; height: 22px; stroke-width: 1.5; }
.icon-xl { width: 28px; height: 28px; stroke-width: 1.5; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(246, 244, 238, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(246, 244, 238, 0.92);
}

/* === Logo / wordmark — bold geometric === */
.nav-logo, .f-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.045em;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 0;
}
.f-logo { color: var(--paper); }
.nav-logo .mark, .f-logo .mark { display: none; }
.nav-logo .brand-stock,
.f-logo .brand-stock {
  color: var(--accent);
  margin-left: .15em;
}
.nav-logo .brand-dot,
.f-logo .brand-dot {
  color: var(--accent);
  margin-left: .02em;
  font-weight: 700;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--body);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(11,15,20,.04); }

.nav-right {
  display: flex; align-items: center; gap: 10px;
}

.lang-toggle {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  background: transparent;
  color: var(--body);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 7px 14px;
  letter-spacing: .08em;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.lang-toggle:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--white);
}
.lang-toggle .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 9px 18px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.hamburger:hover { border-color: var(--ink); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: var(--paper);
  display: none;
  flex-direction: column;
  padding: 92px var(--pad-x) 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 28px; font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mm-cta {
  margin-top: 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  padding: 16px 28px;
  text-align: center;
  font-size: 16px;
  border-bottom: none;
}
.mobile-close {
  position: absolute; top: 14px; right: var(--pad-x);
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 140px var(--pad-x) 110px;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(226,91,58,.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px;
  background: var(--accent);
}
.eyebrow.on-light { color: var(--accent-2); }
.eyebrow.on-light::before { background: var(--accent-2); }

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--paper);
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-h1 .accent { color: var(--accent); font-style: italic; font-weight: 400; }

.hero-p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(246, 244, 238, 0.70);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-p strong { color: var(--paper); font-weight: 600; }

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-size: 15px; font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(226,91,58,.30);
}
.btn-ghost-dark {
  background: rgba(255,255,255,.06);
  color: var(--paper);
  border-color: rgba(255,255,255,.16);
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.30);
}
.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(11,15,20,.03);
}
.btn-white {
  background: var(--paper);
  color: var(--ink);
}
.btn-white:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-meta-item .v {
  font-family: var(--display);
  font-size: 30px; font-weight: 500;
  letter-spacing: -.02em;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta-item .v .accent { color: var(--accent); }
.hero-meta-item .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(246,244,238,.5);
}

/* Hero visual — abstract floating card */
.hero-visual {
  position: relative;
  height: 480px;
}
.hv-card {
  position: absolute;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hv-card-1 {
  top: 0; right: 0; width: 320px;
}
.hv-card-2 {
  top: 200px; left: 0; width: 280px;
  background: var(--accent);
  border-color: var(--accent);
}
.hv-card-3 {
  bottom: 0; right: 40px; width: 290px;
}
.hv-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(246,244,238,.5);
  margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.hv-card-2 .hv-label { color: rgba(255,255,255,.7); }
.hv-row { display: flex; justify-content: space-between; align-items: baseline; }
.hv-title {
  font-family: var(--display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -.02em;
  color: var(--paper);
}
.hv-card-2 .hv-title { color: var(--white); }
.hv-num {
  font-family: var(--display);
  font-size: 32px; font-weight: 500;
  letter-spacing: -.02em;
  color: var(--paper);
}
.hv-card-2 .hv-num { color: var(--white); }
.hv-sub {
  font-size: 12px;
  color: rgba(246,244,238,.5);
  margin-top: 6px;
}
.hv-card-2 .hv-sub { color: rgba(255,255,255,.75); }
.hv-bars {
  display: flex; align-items: flex-end; gap: 4px;
  height: 48px; margin-top: 14px;
}
.hv-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(246,244,238,.18);
}
.hv-bar.hot { background: var(--accent); }
.hv-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 3px 10px;
}
.hv-card-2 .hv-status {
  background: rgba(0,0,0,.16); color: var(--white);
}
.hv-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5BE49B;
  box-shadow: 0 0 0 0 rgba(91,228,155,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(91,228,155,.6); }
  50% { box-shadow: 0 0 0 6px rgba(91,228,155,0); }
}

/* ============================================================
   SECTIONS — base
   ============================================================ */
section {
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
  position: relative;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
}

.s-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.s-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--heading);
  margin-bottom: 18px;
  text-wrap: balance;
}
.s-title .accent { color: var(--accent); font-style: italic; font-weight: 400; }
.s-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
}

/* ============================================================
   LOGO STRIP — between hero & services
   ============================================================ */
.logos {
  background: var(--paper);
  padding: 36px var(--pad-x);
  border-bottom: 1px solid var(--hairline);
}
.logos-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.logos-label {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.logos-row {
  display: flex; gap: 36px; flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.logos-row span {
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -.01em;
  color: var(--muted);
  opacity: .68;
  transition: opacity .2s, color .2s;
}
.logos-row span:hover { opacity: 1; color: var(--ink); }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--paper); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.srv-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 340px;
}
.srv-card:hover {
  border-color: var(--ink);
  box-shadow: 0 14px 40px rgba(11,15,20,.08);
  transform: translateY(-3px);
}
.srv-card.feat {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.srv-card.feat:hover {
  box-shadow: 0 14px 40px rgba(11,15,20,.18);
}
.srv-num {
  position: absolute; top: 28px; right: 32px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  letter-spacing: .08em;
}
.srv-card.feat .srv-num { color: rgba(246,244,238,.4); }
.srv-ico-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--ink);
}
.srv-card.feat .srv-ico-wrap {
  background: rgba(255,255,255,.08);
  color: var(--accent);
}
.srv-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--heading);
}
.srv-card.feat .srv-name { color: var(--paper); }
.srv-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: auto;
}
.srv-card.feat .srv-desc { color: rgba(246,244,238,.65); }
.srv-link {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  transition: gap .2s;
}
.srv-card.feat .srv-link { color: var(--accent); }
.srv-link:hover { gap: 12px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  background: var(--paper-2);
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prod-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.prod-card:hover {
  box-shadow: 0 18px 48px rgba(11,15,20,.10);
}
.prod-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.prod-tag .pt-mark {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%;
}
.prod-card.stock .pt-mark { background: var(--success); }
.prod-card.noir .pt-mark { background: var(--ink); }

.prod-name {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 6px;
  color: var(--heading);
}
.prod-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.prod-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 28px;
}
.prod-feats {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.prod-feat {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  color: var(--body);
}
.prod-feat-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-3);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.prod-feat-check svg { width: 11px; height: 11px; stroke-width: 2.4; }

/* Mini dashboard mock in product card */
.prod-dash {
  margin-top: 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.prod-dash-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
}
.prod-dash-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-2); }
.prod-dash-bar .ttl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
  letter-spacing: .06em;
}
.prod-dash-body {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pd-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.pd-stat-n {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--heading);
  line-height: 1;
  margin-bottom: 5px;
}
.pd-stat-l {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pd-chart {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex; align-items: flex-end;
  gap: 4px;
  height: 64px;
}
.pd-bar { flex: 1; border-radius: 2px 2px 0 0; background: var(--paper-2); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries { background: var(--paper); }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex; gap: 18px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.ind-card:hover {
  border-color: var(--ink);
  box-shadow: 0 10px 28px rgba(11,15,20,.06);
  transform: translateY(-2px);
}
.ind-ico-wrap {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.ind-t {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--heading);
  margin-bottom: 6px;
}
.ind-d {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   BENEFITS
   ============================================================ */
#benefits {
  background: var(--ink);
  color: var(--paper);
}
#benefits .s-title { color: var(--paper); }
#benefits .s-desc { color: rgba(246,244,238,.6); }
#benefits .eyebrow { color: var(--accent); }
#benefits .eyebrow::before { background: var(--accent); }

.ben-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ben-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 28px;
  transition: background .25s, border-color .25s;
}
.ben-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.ben-ico-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(226,91,58,.14);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.ben-t {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--paper);
  margin-bottom: 6px;
}
.ben-d {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(246,244,238,.6);
}

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--paper-2); }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.proc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .25s, transform .25s;
}
.proc-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.proc-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 20px;
}
.proc-line {
  width: 40px; height: 1px;
  background: var(--border-2);
  margin-bottom: 20px;
}
.proc-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.2;
}
.proc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 18px;
}
.proc-dur {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--body);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing { background: var(--paper); }

.price-tabs {
  display: inline-flex;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 48px;
  gap: 2px;
}
.price-tab {
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 100px;
  transition: background .2s, color .2s;
  letter-spacing: -.005em;
}
.price-tab.active {
  background: var(--ink);
  color: var(--paper);
}

.price-group {
  margin-bottom: 56px;
}
.price-group:last-of-type { margin-bottom: 24px; }
.price-group-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 8px;
}
.price-group-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--heading);
  display: flex; align-items: center; gap: 12px;
}
.price-group-title::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.price-group-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.price-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.price-card:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 32px rgba(11,15,20,.08);
  transform: translateY(-2px);
}
.price-card.popular {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.price-card.popular:hover {
  box-shadow: 0 12px 32px rgba(11,15,20,.18);
}

.price-badge {
  position: absolute;
  top: -10px; left: 26px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  padding: 5px 12px;
}
.price-badge.launch {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--border-2);
}

.price-product {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.price-card.popular .price-product { color: rgba(246,244,238,.5); }

.price-plan {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--heading);
  margin-bottom: 18px;
}
.price-card.popular .price-plan { color: var(--paper); }

.price-amount-row {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.price-amount {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--heading);
  line-height: 1;
}
.price-card.popular .price-amount { color: var(--paper); }
.price-currency {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-right: 2px;
  align-self: flex-start;
  padding-top: 6px;
}
.price-card.popular .price-currency { color: rgba(246,244,238,.6); }
.price-unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.price-card.popular .price-unit { color: rgba(246,244,238,.55); }

.price-usd {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
  font-style: italic;
}
.price-card.popular .price-usd { color: rgba(246,244,238,.5); }

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
.price-card.popular .price-divider { background: rgba(255,255,255,.12); }

.price-feats {
  display: flex; flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}
.price-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.4;
}
.price-card.popular .price-feat { color: rgba(246,244,238,.85); }
.pf-check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.price-card.popular .pf-check {
  background: rgba(255,255,255,.10);
  color: var(--accent);
}
.pf-check svg { width: 10px; height: 10px; stroke-width: 2.4; }

.price-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--font);
  font-size: 14px; font-weight: 600;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 16px;
  transition: all .2s;
}
.price-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card.popular .price-btn {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.price-card.popular .price-btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.price-note {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.55;
  display: flex; align-items: flex-start; gap: 10px;
}
.price-note svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.price-exchange-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.price-exchange-note svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.price-exchange-note p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body);
}

/* ============================================================
   TESTIMONIALS / TRUST
   ============================================================ */
#trust { background: var(--paper-2); }

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}

.trust-points {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.trust-point {
  display: flex; gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.trust-point:first-child { border-top: none; padding-top: 0; }
.trust-point-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-3);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.trust-point-t {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 4px;
}
.trust-point-d {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.testim-stack {
  display: flex; flex-direction: column;
  gap: 14px;
}
.testim-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow .25s, transform .25s;
}
.testim-card:hover {
  box-shadow: 0 14px 36px rgba(11,15,20,.08);
  transform: translateY(-2px);
}
.testim-stars {
  display: flex; gap: 3px;
  color: var(--accent);
  margin-bottom: 18px;
}
.testim-stars svg { width: 14px; height: 14px; fill: currentColor; stroke: currentColor; }

.testim-q {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--heading);
  letter-spacing: -.015em;
  margin-bottom: 24px;
}
.testim-author {
  display: flex; align-items: center; gap: 12px;
}
.testim-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
}
.testim-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
}
.testim-biz {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--paper); }

.contact-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  box-shadow: 0 14px 40px rgba(11,15,20,.05);
}

.ct-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 16px;
  text-wrap: balance;
}
.ct-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}
.ct-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.ct-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  color: var(--body);
}
.ct-chip svg { color: var(--accent); }

.ct-channels {
  display: flex; flex-direction: column;
}
.ct-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  transition: opacity .2s;
}
.ct-channel:hover { opacity: .7; }
.ct-channel-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-channel-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.ct-channel-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--heading);
}

/* form */
.form {
  display: flex; flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
  letter-spacing: -.005em;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); font-weight: 400; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11,15,20,.05);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E6E66' 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 14px center;
  padding-right: 40px;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
.form-submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-size: 15px; font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 100px;
  padding: 14px 26px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.form-submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(226,91,58,.30);
}
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.form-note svg { color: var(--accent); }

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}
#final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
#final-cta::after {
  content: '';
  position: absolute;
  bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(226,91,58,.20) 0%, transparent 60%);
  pointer-events: none;
}
.fcta-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.fcta-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 22px;
  text-wrap: balance;
}
.fcta-title .accent { color: var(--accent); font-style: italic; font-weight: 400; }
.fcta-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(246,244,238,.6);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.fcta-btns {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: rgba(246,244,238,.7);
  padding: 64px var(--pad-x) 36px;
}
.f-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.f-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-brand {
  display: flex; flex-direction: column;
}
.f-logo {
  font-family: var(--display);
  font-size: 22px; font-weight: 600;
  color: var(--paper);
  letter-spacing: -.03em;
  margin-bottom: 18px;
  display: flex; align-items: center;
}
.f-logo .mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: var(--accent);
  color: var(--white);
  border-radius: 7px;
  font-size: 14px; font-weight: 700;
  margin-right: 10px;
}
.f-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,244,238,.5);
  max-width: 320px;
  margin-bottom: 24px;
}
.f-social {
  display: flex; gap: 8px;
}
.f-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,244,238,.7);
  transition: background .2s, border-color .2s, color .2s;
}
.f-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.f-col-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.f-col-links {
  display: flex; flex-direction: column;
  gap: 12px;
  list-style: none;
}
.f-col-links a {
  font-size: 14px;
  color: rgba(246,244,238,.6);
  transition: color .2s;
}
.f-col-links a:hover { color: var(--accent); }

.f-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  flex-wrap: wrap; gap: 16px;
}
.f-copy {
  font-size: 13px;
  color: rgba(246,244,238,.45);
}
.f-legal {
  display: flex; gap: 24px;
  flex-wrap: wrap;
}
.f-legal a {
  font-size: 13px;
  color: rgba(246,244,238,.45);
  transition: color .2s;
}
.f-legal a:hover { color: var(--paper); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(11,15,20,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 48px 40px 40px;
  max-width: 440px; width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(11,15,20,.30);
  animation: modalIn .4s cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-3);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.modal-ico svg { width: 28px; height: 28px; stroke-width: 2; }
.modal-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--heading);
  margin-bottom: 12px;
}
.modal-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 920;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font);
  font-size: 14px; font-weight: 600;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 10px 32px rgba(11,15,20,.30);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.wa-float:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(226,91,58,.40);
}
.wa-float svg {
  width: 18px; height: 18px;
  stroke-width: 1.8;
}

/* ============================================================
   ANIMATIONS / SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.hero-inner > * > .anim,
.hero-inner > .anim { opacity: 0; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) forwards; }
.eyebrow.anim { animation-delay: .1s; }
.hero-h1.anim { animation-delay: .2s; }
.hero-p.anim { animation-delay: .3s; }
.hero-btns.anim { animation-delay: .4s; }
.hero-meta.anim { animation-delay: .55s; }
.hero-visual.anim { animation-delay: .6s; animation-duration: 1s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 420px; max-width: 460px; margin: 0 auto; }

  .srv-grid { grid-template-columns: 1fr 1fr; }
  .srv-card.feat { grid-column: 1 / -1; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .price-grid-4 { grid-template-columns: 1fr 1fr; }
  .price-grid-3 { grid-template-columns: 1fr 1fr; }

  .trust-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  .hero { padding: 120px var(--pad-x) 72px; border-radius: 0 0 22px 22px; }
  .hero-h1 { font-size: clamp(36px, 9vw, 50px); }
  .hero-meta { gap: 28px; }
  .hero-meta-item .v { font-size: 24px; }
  .hero-visual { height: 380px; }
  .hv-card-1 { width: 260px; }
  .hv-card-2 { width: 230px; top: 170px; }
  .hv-card-3 { width: 240px; right: 20px; }

  .logos-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .logos-row { justify-content: flex-start; gap: 24px; }
  .logos-row span { font-size: 16px; }

  .s-head { margin-bottom: 44px; }

  .srv-grid, .ind-grid, .ben-grid, .proc-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card { padding: 32px 26px; }

  .price-grid-4, .price-grid-3 { grid-template-columns: 1fr; }

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

  .f-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .f-bottom { flex-direction: column; align-items: flex-start; }

  #final-cta { border-radius: 22px 22px 0 0; }

  .wa-float { bottom: 16px; right: 16px; padding: 12px; }
  .wa-float-label { display: none; }
}

