/* ============================================================
   Sasee Industries / Emily — Homepage styles
   Datasheet-grade industrial system. See DESIGN-SYSTEM.md.
   ============================================================ */

:root {
  --ink: #0B0F17;
  --ink-800: #121826;
  --ink-line: rgba(255, 255, 255, .10);
  --blue: #1C84E8;
  --blue-700: #0F5FB0;
  --blue-glow: rgba(28, 132, 232, .35);
  --steel: #93A0B4;
  --concrete: #EEF1F5;
  --concrete-200: #E2E7EE;
  --graphite: #1A2231;
  --amber: #F6A41C;
  --amber-600: #D8870A;
  --white: #FFFFFF;

  --container: 1200px;
  --radius: 10px;
  --radius-sm: 4px;
  --shadow: 0 18px 50px -24px rgba(11, 15, 23, .35);
  --shadow-lg: 0 40px 90px -40px rgba(11, 15, 23, .55);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.65; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: 'Archivo', sans-serif; line-height: 1.08; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

[data-lucide] { width: 1em; height: 1em; stroke-width: 2; }

/* ---------- Shared type bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-700); margin: 0 0 1rem;
}
.eyebrow__bar { width: 26px; height: 2px; background: var(--blue); display: inline-block; }
.eyebrow--ondark { color: #5fb0ff; }
.eyebrow--ondark .eyebrow__bar { background: var(--blue); box-shadow: 0 0 12px var(--blue-glow); }
.eyebrow--center { justify-content: center; }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -.02em;
  color: var(--ink);
}
.section-sub { color: #54607a; max-width: 42ch; font-size: 1.02rem; }
.section-sub--center { margin-inline: auto; }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
  margin-bottom: 2.6rem; flex-wrap: wrap;
}
.section-head--center { justify-content: center; text-align: center; }
.section-head--center .section-sub { margin-top: 1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: .95rem;
  padding: .72rem 1.4rem; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: transform .12s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
  white-space: nowrap;
}
.btn i { width: 1.05em; height: 1.05em; }
.btn--lg { padding: .9rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(1px); }

.btn--quote { background: var(--amber); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(246, 164, 28, .8); }
.btn--quote:hover { background: var(--amber-600); transform: translateY(-2px); }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-700); transform: translateY(-2px); }

.btn--ghost { background: transparent; border-color: var(--concrete-200); color: var(--ink); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue-700); }
.btn--ghost-dark { border-color: rgba(255, 255, 255, .25); color: #fff; }
.btn--ghost-dark:hover { border-color: var(--blue); background: rgba(28, 132, 232, .12); color: #fff; }

.btn--link {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--blue-700);
  font-size: .95rem; transition: gap .15s var(--ease), color .15s var(--ease);
}
.btn--link i { transition: transform .15s var(--ease); }
.btn--link:hover { color: var(--blue); }
.btn--link:hover i { transform: translateX(3px); }
.btn--link-light { color: #fff; }

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

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar { background: var(--ink); color: var(--steel); font-size: .82rem; border-bottom: 1px solid var(--ink-line); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 1rem; }
.topbar__tag { display: inline-flex; align-items: center; gap: .5rem; font-family: 'IBM Plex Mono', monospace; letter-spacing: .04em; margin: 0; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.topbar__links { display: flex; gap: 1.4rem; align-items: center; }
.topbar__links a { display: inline-flex; align-items: center; gap: .4rem; transition: color .15s; }
.topbar__links a:hover { color: #fff; }
.topbar__links i { width: 14px; height: 14px; }
.topbar__wa { color: #51d27a !important; }

.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--concrete-200);
  transition: box-shadow .2s var(--ease), background .2s var(--ease);
}
.header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(11, 15, 23, .3); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }

/* Brand mark — echoes the SI logo */
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 50%; position: relative; flex: none;
  background: #000 url('images/logo.png') center/contain no-repeat;
  box-shadow: 0 0 0 3px rgba(28, 132, 232, .15);
}
.brand__si { display: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; color: var(--ink); }
.brand__text em { font-style: normal; font-family: 'IBM Plex Mono', monospace; font-size: .7rem; font-weight: 600; letter-spacing: .16em; color: var(--blue); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav__link { font-weight: 500; font-size: .95rem; color: var(--graphite); position: relative; padding: .3rem 0; transition: color .15s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--blue); transition: width .2s var(--ease); }
.nav__link:hover { color: var(--blue-700); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--ink); }
.nav__cta { margin-left: .4rem; }

.nav-toggle { display: none; background: var(--ink); color: #fff; border: none; width: 44px; height: 44px; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle i { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 60;
  background: var(--ink); color: #fff; transform: translateX(100%); transition: transform .3s var(--ease);
  padding: 5.5rem 1.6rem 2rem; box-shadow: var(--shadow-lg); overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__nav { display: flex; flex-direction: column; gap: .3rem; }
.drawer__link { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 1.3rem; padding: .7rem 0; border-bottom: 1px solid var(--ink-line); }
.drawer__link:hover { color: var(--blue); }
.drawer__cta { margin-top: 1.4rem; }
.drawer__contact { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.8rem; color: var(--steel); }
.drawer__contact a { display: inline-flex; align-items: center; gap: .6rem; }
.drawer__contact i { width: 18px; height: 18px; color: var(--blue); }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(11, 15, 23, .55); backdrop-filter: blur(2px); z-index: 55; opacity: 0; transition: opacity .25s; }
.drawer-backdrop.is-open { opacity: 1; }
body.no-scroll { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding-bottom: 120px; }
.hero__sheen {
  position: absolute; top: -30%; right: -10%; width: 900px; height: 900px; pointer-events: none;
  background:
    conic-gradient(from 200deg at 50% 50%, transparent 0deg, var(--blue-glow) 40deg, transparent 120deg, rgba(147,160,180,.15) 200deg, transparent 280deg),
    radial-gradient(circle at 50% 50%, rgba(28,132,232,.25), transparent 60%);
  border-radius: 50%; filter: blur(8px); animation: drift 26s linear infinite; opacity: .9;
}
@keyframes drift { to { transform: rotate(360deg); } }

/* Full-bleed photo hero (Somero/Husqvarna-style) */
.hero--photo {
  display: flex; align-items: center;
  min-height: clamp(620px, 90vh, 1040px);
  padding-bottom: clamp(96px, 12vh, 140px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
/* Fallback when the photo is missing — keeps the dark industrial look */
.hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(28,132,232,.18), transparent 55%),
    linear-gradient(155deg, #16203200 0%, #0b0f17 70%),
    linear-gradient(160deg, #1a2435, #0a0e16);
}
.hero__bgimg {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%;
  filter: saturate(1.06) contrast(1.03) brightness(1.08);
  animation: heroZoom 24s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,10,17,.72) 0%, rgba(7,10,17,.46) 30%, rgba(7,10,17,.12) 62%, rgba(7,10,17,.22) 100%),
    linear-gradient(180deg, rgba(7,10,17,.28) 0%, rgba(7,10,17,0) 32%, rgba(7,10,17,.55) 100%);
}
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .35;
  background-image: linear-gradient(rgba(147,160,180,.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(147,160,180,.08) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 60% 30%, #000, transparent 75%);
}
.hero__inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: 2rem;
}
.hero--photo .hero__inner { grid-template-columns: 1fr; padding-top: clamp(2rem, 5vw, 4rem); }
.hero--photo .hero__copy { max-width: 760px; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 1.3rem;
}
.hero--photo .hero__title { font-size: clamp(2.9rem, 6.4vw, 5.2rem); text-shadow: 0 2px 40px rgba(0,0,0,.45); }
.hero--photo .hero__lead { color: #d3dae6; max-width: 52ch; text-shadow: 0 1px 18px rgba(0,0,0,.5); }
/* Glass spec ticker reads cleanly over photography */
.hero--photo .ticker { background: rgba(11,15,23,.55); backdrop-filter: blur(10px); border-color: rgba(255,255,255,.14); max-width: 640px; }
.hero__title .hl { color: var(--blue); position: relative; }
.hero__title .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .12em; background: var(--blue); opacity: .35; border-radius: 2px; }
.hero__lead { color: #b9c2d2; font-size: 1.12rem; max-width: 46ch; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

/* Spec ticker */
.ticker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; border: 1px solid var(--ink-line); border-radius: var(--radius); overflow: hidden; background: rgba(18,24,38,.5); }
.ticker__item { padding: 1.1rem 1.2rem; border-right: 1px solid var(--ink-line); }
.ticker__item:last-child { border-right: none; }
.ticker__item dt { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); margin-bottom: .35rem; }
.ticker__item dd { margin: 0; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.9rem; color: #fff; line-height: 1; }
.ticker__item dd span { font-size: .8rem; color: var(--blue); margin-left: .15rem; font-weight: 600; }
.ticker__item p { font-size: .76rem; color: var(--steel); margin-top: .4rem; }

/* Hero plate (datasheet placeholder) */
.hero__plate { margin: 0; perspective: 1200px; }
.plate {
  position: relative; background: linear-gradient(160deg, #151c2c, #0d121d); border: 1px solid var(--ink-line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease);
}
.plate__corner { position: absolute; width: 14px; height: 14px; border: 2px solid var(--blue); opacity: .8; }
.plate__corner--tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.plate__corner--tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.plate__corner--bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.plate__corner--br { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.plate__badge { position: absolute; top: 1rem; right: 1rem; font-family: 'IBM Plex Mono', monospace; font-size: .62rem; letter-spacing: .14em; background: var(--amber); color: var(--ink); padding: .25rem .55rem; border-radius: 3px; font-weight: 600; }
.plate__art {
  height: 200px; display: grid; place-items: center; border-radius: var(--radius-sm); margin-bottom: 1.3rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(28,132,232,.22), transparent 65%),
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(147,160,180,.07) 0deg 6deg, transparent 6deg 12deg);
  border: 1px solid var(--ink-line);
}
.plate__icon { width: 92px; height: 92px; color: var(--blue); stroke-width: 1.3; filter: drop-shadow(0 8px 22px var(--blue-glow)); }
.plate__model { font-family: 'IBM Plex Mono', monospace; font-size: .8rem; letter-spacing: .1em; color: var(--blue); }
.plate__name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; margin: .2rem 0 .9rem; }
.plate__specs { display: grid; gap: .45rem; }
.plate__specs li { display: flex; justify-content: space-between; font-size: .85rem; padding-bottom: .45rem; border-bottom: 1px dashed var(--ink-line); }
.plate__specs span { color: var(--steel); font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.plate__specs b { color: #e7ecf3; font-weight: 600; }

/* Wave divider */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 2; }
.wave-divider svg { width: 100%; height: 110px; }

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { background: var(--concrete); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.highlights__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.hl-card {
  background: #fff; border: 1px solid var(--concrete-200); border-radius: var(--radius); padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow); transition: transform .2s var(--ease), border-color .2s; position: relative; overflow: hidden;
}
.hl-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--blue), transparent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.hl-card:hover { transform: translateY(-4px); border-color: rgba(28,132,232,.4); }
.hl-card:hover::before { transform: scaleX(1); }
.hl-card i { width: 32px; height: 32px; color: var(--blue); stroke-width: 1.6; margin-bottom: 1rem; }
.hl-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .5rem; color: var(--ink); }
.hl-card p { font-size: .92rem; color: #54607a; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding: clamp(4rem, 9vw, 7rem) 0; background: #fff; }
.filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.filter__btn {
  font-family: 'IBM Plex Mono', monospace; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .55rem 1.05rem; border-radius: 999px; border: 1px solid var(--concrete-200); background: #fff; color: #54607a;
  cursor: pointer; transition: all .15s var(--ease);
}
.filter__btn:hover { border-color: var(--blue); color: var(--blue-700); }
.filter__btn.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--concrete-200);
  border-radius: var(--radius); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(28,132,232,.4); }
.card.is-hidden { display: none; }

.card__media {
  position: relative; height: 168px; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(28,132,232,.12), transparent 60%),
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(26,34,49,.04) 0deg 6deg, transparent 6deg 12deg),
    var(--concrete);
  border-bottom: 1px solid var(--concrete-200);
}
.card__media::after { /* crop marks */
  content: ""; position: absolute; inset: 12px; border: 1px solid transparent;
  background:
    linear-gradient(var(--blue), var(--blue)) left top / 12px 1px no-repeat,
    linear-gradient(var(--blue), var(--blue)) left top / 1px 12px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 12px 1px no-repeat,
    linear-gradient(var(--blue), var(--blue)) right bottom / 1px 12px no-repeat;
  opacity: .5; pointer-events: none;
}
.card__icon { width: 64px; height: 64px; color: var(--blue-700); stroke-width: 1.3; }
.card__tag { position: absolute; top: 12px; left: 12px; font-family: 'IBM Plex Mono', monospace; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; background: var(--ink); color: #fff; padding: .25rem .55rem; border-radius: 3px; }
.card__model { position: absolute; bottom: 12px; right: 14px; font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .08em; color: var(--blue-700); }

.card__body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.card__desc { font-size: .9rem; color: #54607a; margin-bottom: 1rem; }
.card__specs { display: grid; gap: .4rem; margin-bottom: 1.1rem; padding-top: .9rem; border-top: 1px solid var(--concrete-200); }
.card__specs li { display: flex; justify-content: space-between; font-size: .85rem; }
.card__specs span { font-family: 'IBM Plex Mono', monospace; font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--steel); }
.card__specs b { color: var(--graphite); font-weight: 600; }
.card__body .btn--link { margin-top: auto; }

.card--cta {
  background: linear-gradient(160deg, var(--ink), var(--ink-800)); color: #fff; align-items: flex-start;
  justify-content: center; padding: 1.8rem; gap: .6rem; border-color: var(--ink);
}
.card--cta i { width: 34px; height: 34px; color: var(--amber); }
.card--cta h3 { font-size: 1.25rem; font-weight: 700; }
.card--cta p { font-size: .9rem; color: var(--steel); }
.card--cta .btn--link { color: var(--amber); margin-top: .4rem; }
.card--cta:hover .btn--link { color: #ffce7a; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--concrete); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.svc { background: #fff; border: 1px solid var(--concrete-200); border-radius: var(--radius); padding: 1.7rem; transition: transform .2s var(--ease), border-color .2s; }
.svc:hover { transform: translateY(-4px); border-color: rgba(28,132,232,.4); }
.svc i { width: 30px; height: 30px; color: var(--blue); stroke-width: 1.6; margin-bottom: .9rem; }
.svc h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.svc p { font-size: .9rem; color: #54607a; }
.svc--cta { background: var(--blue); border-color: var(--blue); color: #fff; }
.svc--cta i { color: #fff; }
.svc--cta h3 { color: #fff; }
.svc--cta p { color: rgba(255,255,255,.85); margin-bottom: .8rem; }

/* ============================================================
   WHY EMILY
   ============================================================ */
.why { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; bottom: -20%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, var(--blue-glow), transparent 65%); pointer-events: none; }
.why__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.why__title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.3rem; }
.why__text { color: #b9c2d2; margin-bottom: 1.6rem; }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 2rem; }
.why__list li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: #dfe5ee; }
.why__list i { width: 18px; height: 18px; color: var(--ink); background: var(--blue); border-radius: 50%; padding: 3px; flex: none; }

.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink-line); border: 1px solid var(--ink-line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--ink-800); padding: 1.6rem 1.4rem; }
.stat dt { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); margin-bottom: .5rem; }
.stat dd { margin: 0; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 2.6rem; line-height: 1; color: #fff; display: flex; align-items: baseline; }
.stat__suffix { color: var(--blue); }
.stat p { font-size: .8rem; color: var(--steel); margin-top: .5rem; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects { padding: clamp(4rem, 9vw, 7rem) 0; background: #fff; }
.projects__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.proj { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--concrete-200); background: var(--concrete); }
.proj--tall { grid-row: span 2; }
.proj--wide { grid-column: span 2; }
.proj .proj__art {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(28,132,232,.1), transparent 60%),
              repeating-linear-gradient(135deg, rgba(26,34,49,.03) 0 10px, transparent 10px 20px);
  transition: transform .4s var(--ease);
}
.proj__art i { width: 56px; height: 56px; color: var(--blue-700); stroke-width: 1.2; }
.proj:hover .proj__art { transform: scale(1.06); }
.proj figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(11,15,23,.82)); color: #fff; display: flex; flex-direction: column; gap: .15rem;
}
.proj__cat { font-family: 'IBM Plex Mono', monospace; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: #5fb0ff; }
.proj__name { font-weight: 600; font-size: .95rem; }
.projects__note { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; font-size: .82rem; color: var(--steel); font-family: 'IBM Plex Mono', monospace; }
.projects__note i { width: 15px; height: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--concrete); }
.testi__viewport { overflow: hidden; border-radius: var(--radius); }
.testi__track { display: flex; transition: transform .5s var(--ease); }
.quote { margin: 0; flex: 0 0 100%; padding: 2.6rem clamp(1.5rem, 5vw, 4rem); text-align: center; }
.quote__mark { width: 40px; height: 40px; color: var(--blue); opacity: .5; margin: 0 auto 1rem; }
.quote p { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.4; color: var(--ink); max-width: 46ch; margin: 0 auto 1.5rem; letter-spacing: -.01em; }
.quote footer { display: flex; flex-direction: column; gap: .15rem; }
.quote footer strong { font-weight: 700; color: var(--ink); }
.quote footer span { font-family: 'IBM Plex Mono', monospace; font-size: .78rem; letter-spacing: .04em; color: var(--steel); }
.testi__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--concrete-200); cursor: pointer; transition: all .2s; padding: 0; }
.testi__dots button.is-active { background: var(--blue); width: 26px; border-radius: 5px; }

/* ============================================================
   CTA BAND + QUOTE FORM
   ============================================================ */
.cta-band { position: relative; background: var(--ink); color: #fff; padding: clamp(2.4rem, 5vw, 3.8rem) 0; overflow: hidden; }
.cta-band__sheen { position: absolute; top: -40%; left: -5%; width: 700px; height: 700px; background: conic-gradient(from 160deg, transparent, var(--blue-glow), transparent 50%); border-radius: 50%; filter: blur(10px); pointer-events: none; opacity: .8; }
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.cta-band__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.1rem; }
.cta-band__text { color: #b9c2d2; margin-bottom: 1.6rem; max-width: 44ch; }
.cta-band__list { display: grid; gap: .7rem; }
.cta-band__list li { display: flex; align-items: center; gap: .7rem; color: #dfe5ee; }
.cta-band__list i { width: 18px; height: 18px; color: var(--blue); }
.cta-band__list a:hover { color: var(--blue); }

.qform { background: rgba(18,24,38,.7); border: 1px solid var(--ink-line); border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg); }
.qform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field span { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); }
.field input, .field select, .field textarea {
  font-family: 'IBM Plex Sans', sans-serif; font-size: .95rem; color: #fff; background: rgba(11,15,23,.6);
  border: 1px solid var(--ink-line); border-radius: var(--radius-sm); padding: .7rem .8rem; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #5b6678; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28,132,232,.25); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink); color: #fff; }
.qform__note { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .78rem; color: var(--steel); font-family: 'IBM Plex Mono', monospace; }
.qform__note i { width: 14px; height: 14px; }
.qform__note.is-success { color: #51d27a; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #070a10; color: var(--steel); padding-top: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid rgba(255,255,255,.09); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer .brand__text strong { color: #fff; margin-bottom: .3rem; }
.footer__about { font-size: .9rem; line-height: 1.7; margin: 1.2rem 0 1.3rem; max-width: 36ch; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); color: #cdd5e0; transition: all .15s; }
.footer__social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer__social i { width: 18px; height: 18px; }
.footer__col h4 { font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer__col a, .footer__col p { display: flex; align-items: center; gap: .5rem; font-size: .9rem; padding: .35rem 0; color: var(--steel); transition: color .15s; }
.footer__col a:hover { color: var(--blue); }
.footer__col i { width: 16px; height: 16px; color: var(--blue); }
.footer__bar { border-top: none; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 24px; font-size: .8rem; flex-wrap: wrap; gap: .5rem; }
.footer__bar p { margin: 0; }
.footer__credit { font-family: 'IBM Plex Mono', monospace; color: #5b6678; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab-wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 45; display: inline-flex; align-items: center; gap: .55rem;
  background: #25D366; color: #fff; padding: .8rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .92rem;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.6); transition: transform .2s var(--ease);
}
.fab-wa:hover { transform: translateY(-3px) scale(1.03); }
.fab-wa i { width: 22px; height: 22px; }
.fab-wa span { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s var(--ease); }
.fab-wa:hover span { max-width: 140px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__plate { max-width: 460px; }
  .why__inner, .cta-band__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .topbar { display: none; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .product-grid, .services__grid, .highlights__grid, .why__stats, .why__list { grid-template-columns: 1fr; }
  .why__list { grid-template-columns: 1fr 1fr; }
  .qform__row { grid-template-columns: 1fr; gap: 0; }
  .projects__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .proj--wide { grid-column: span 2; }
  .proj--tall { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .ticker { grid-template-columns: 1fr; }
  .ticker__item { border-right: none; border-bottom: 1px solid var(--ink-line); }
  .ticker__item:last-child { border-bottom: none; }
  .fab-wa span { max-width: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__sheen { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   IMAGE PLACEHOLDERS — photo-ready, no icons
   Add `.imgph` (or `.imgph imgph--dark`) to any media container.
   Drop a real photo into the .imgph__img src and it covers the
   placeholder automatically; on error the labelled frame shows.
   ============================================================ */
.imgph {
  position: relative; overflow: hidden; display: grid; place-items: center;
  background-color: #e8edf3 !important;
  background-image:
    repeating-linear-gradient(135deg, rgba(26,34,49,.045) 0 14px, transparent 14px 28px),
    radial-gradient(circle at 50% 28%, rgba(28,132,232,.07), transparent 62%) !important;
  box-shadow: inset 0 0 0 1px rgba(147,160,180,.28);
}
.imgph--dark {
  background-color: #11161e !important;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 14px, transparent 14px 28px),
    radial-gradient(circle at 50% 28%, rgba(28,132,232,.13), transparent 62%) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.imgph__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 5; }
/* Product-card shots: show the whole machine, no crop */
.card__media { height: 220px; }
.card__media .imgph__img { inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); object-fit: contain; }
.imgph__label { position: relative; z-index: 2; text-align: center; padding: 1rem 1.2rem; max-width: 100%; }
.imgph__label b {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-weight: 500;
  font-size: .82rem; letter-spacing: .04em; color: #5b6675; line-height: 1.4;
  border: 1px solid rgba(147,160,180,.5); background: rgba(255,255,255,.72);
  padding: .55rem 1rem; border-radius: 6px;
}
.imgph--dark .imgph__label b { color: #c6cedb; border-color: rgba(255,255,255,.18); background: rgba(11,15,23,.55); }
.imgph__label small {
  display: block; margin-top: .65rem; font-family: 'IBM Plex Mono', monospace;
  font-size: .64rem; letter-spacing: .03em; color: var(--steel);
}
/* small mono corner tag (e.g. PHOTO / model code) */
.imgph__tag {
  position: absolute; top: 12px; left: 12px; z-index: 3; font-family: 'IBM Plex Mono', monospace;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: var(--ink); padding: .28rem .55rem; border-radius: 3px;
}
.imgph__tag--code { left: auto; right: 12px; background: rgba(255,255,255,.9); color: var(--blue-700); border: 1px solid var(--concrete-200); }
/* keep category tag + model code above a loaded photo on home cards */
.card__tag, .card__model { z-index: 6; }
