/* ==========================================================================
   ESASOFT — Website Stylesheet
   Brand: #D11833 (red) · #666666 (grey)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --brand: #d11833;
  --brand-600: #b31229;
  --brand-700: #8f0e20;
  --brand-tint: #fdf2f4;
  --brand-tint-2: #fae7ea;

  --ink: #11151c;
  --ink-2: #2b323d;
  --body: #4a5261;
  --muted: #737b8a;
  --grey: #666666;

  --bg: #ffffff;
  --surface: #f6f7f9;
  --surface-2: #eef0f4;
  --border: #e3e6ec;
  --border-2: #d2d7e0;

  --dark: #0e1218;
  --dark-2: #161c26;
  --dark-border: #262f3d;
  --dark-body: #a7b0be;

  --ok: #17845a;
  --warn: #a86a06;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(17, 21, 28, .05), 0 1px 3px rgba(17, 21, 28, .06);
  --shadow: 0 4px 6px -1px rgba(17, 21, 28, .07), 0 10px 20px -6px rgba(17, 21, 28, .09);
  --shadow-lg: 0 12px 24px -8px rgba(17, 21, 28, .12), 0 32px 56px -20px rgba(17, 21, 28, .18);

  --wrap: 1180px;
  --gut: 24px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", ui-monospace, Consolas, "Liberation Mono", monospace;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -.022em;
}

h1 { font-size: clamp(2.15rem, 1.35rem + 3.1vw, 3.65rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.7rem, 1.15rem + 1.9vw, 2.6rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.18rem, 1.02rem + .55vw, 1.45rem); }
h4 { font-size: 1.06rem; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color .16s ease; }
a:hover { color: var(--brand-600); }

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1.05em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

strong, b { color: var(--ink-2); font-weight: 650; }

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid rgba(209, 24, 51, .4);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 650;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 860px; }

.section { padding: clamp(56px, 4.5vw, 96px) 0; }
.section--tight { padding: clamp(40px, 3vw, 64px) 0; }
.section--surface { background: var(--surface); }
.section--tint { background: linear-gradient(180deg, var(--brand-tint) 0%, #fff 100%); }

.section--dark {
  background: var(--dark);
  color: var(--dark-body);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark strong { color: #fff; }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 3vw, 56px);
}
.section-head.center { margin-inline: auto; }
.section-head p {
  font-size: 1.075rem;
  color: var(--muted);
  margin-bottom: 0;
}
.section--dark .section-head p { color: var(--dark-body); }

.eyebrow {
  display: inline-block;
  font-size: .765rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: #ff5a72; }

.lede {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.24rem);
  line-height: 1.62;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: .97rem;
  font-weight: 650;
  letter-spacing: -.005em;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background .17s ease, border-color .17s ease, color .17s ease,
    transform .17s ease, box-shadow .17s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(143, 14, 32, .3), 0 8px 20px -8px rgba(209, 24, 51, .55);
}
.btn--primary:hover {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 2px 4px rgba(143, 14, 32, .32), 0 12px 26px -8px rgba(209, 24, 51, .6);
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--muted); }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
}
.btn--outline:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: #fff; }

.btn--wa {
  background: #1faa53;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(31, 170, 83, .6);
}
.btn--wa:hover { background: #189045; color: #fff; }

.btn--lg { padding: 16px 32px; font-size: 1.03rem; }
.btn--sm { padding: 9px 18px; font-size: .89rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-row.center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 650;
  font-size: .95rem;
}
.link-arrow::after {
  content: "→";
  transition: transform .17s ease;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header / nav
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--dark);
  color: #cfd5de;
  font-size: .845rem;
  border-bottom: 1px solid var(--dark-border);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar a { color: #e6eaf0; font-weight: 550; }
.topbar a:hover { color: #fff; }
.topbar__items { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar__tag { color: #8e97a5; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-stuck { box-shadow: 0 4px 20px -8px rgba(17, 21, 28, .18); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand__name {
  display: none;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu > li { margin: 0; position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--surface); color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--brand); }
.nav__link .caret {
  font-size: .62rem;
  opacity: .6;
  transition: transform .18s ease;
}
.has-drop:hover .caret { transform: rotate(180deg); }

.drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 330px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .17s ease, transform .17s ease, visibility .17s;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop li { margin: 0; }
.drop a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  color: var(--ink);
  transition: background .15s ease;
}
.drop a:hover { background: var(--surface); }
.drop b { display: block; font-size: .95rem; font-weight: 650; color: var(--ink); }
.drop span { display: block; font-size: .825rem; color: var(--muted); line-height: 1.45; margin-top: 2px; }

.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background .16s ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, top .2s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--dark-body);
  padding: clamp(64px, 6vw, 116px) 0 clamp(56px, 5vw, 96px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 420px at 12% -10%, rgba(209, 24, 51, .34), transparent 62%),
    radial-gradient(620px 460px at 92% 6%, rgba(209, 24, 51, .16), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 460px at 50% 25%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(700px 460px at 50% 25%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #ff506b; }
.hero__lede {
  font-size: clamp(1.06rem, 1rem + .45vw, 1.26rem);
  line-height: 1.6;
  color: #b9c2ce;
  max-width: 640px;
  margin-bottom: 28px;
}
.hero--center { text-align: center; }
.hero--center .hero__lede { margin-inline: auto; }
.hero--center .btn-row { justify-content: center; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: .845rem;
  font-weight: 600;
  color: #dbe1e9;
  margin-bottom: 22px;
}
.pill b {
  background: var(--brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero__stats div strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 780;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.hero__stats div span { font-size: .87rem; color: #8e97a5; }


/* --------------------------------------------------------------------------
   6b. Product screenshots
   -------------------------------------------------------------------------- */
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.shot__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  background: #e9ecf1;
  border-bottom: 1px solid #d6dbe3;
}
.shot__bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.shot__bar i:nth-child(1) { background: #ff5f57; }
.shot__bar i:nth-child(2) { background: #febc2e; }
.shot__bar i:nth-child(3) { background: #28c840; }
.shot__bar span {
  margin-left: 10px;
  font-size: .77rem;
  color: #7b8494;
  font-family: var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot img { display: block; width: 100%; height: auto; }
.shot figcaption {
  padding: 13px 17px;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #fcfcfd;
}
.shot figcaption b { color: var(--ink); font-weight: 650; }

/* Hero variant — sits on the dark band */
.hero .shot {
  border-color: rgba(255, 255, 255, .15);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .65);
}
.hero .shot figcaption {
  background: var(--dark-2);
  color: #8e97a5;
  border-top-color: var(--dark-border);
}
.hero .shot figcaption b { color: #dbe1e9; }

/* Gallery grid */
.shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.shots--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shots .shot { transition: transform .2s ease, box-shadow .2s ease; }
.shots .shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shots .shot--wide { grid-column: 1 / -1; }

.section--dark .shot { border-color: var(--dark-border); }
.section--dark .shot figcaption {
  background: var(--dark-2);
  color: var(--dark-body);
  border-top-color: var(--dark-border);
}
.section--dark .shot figcaption b { color: #fff; }

/* Phone screenshots — the waiter ordering app.
   Portrait captures need a handset frame, not the desktop browser chrome of .shot. */
.phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 840px;
  margin: 0 auto;
}
.phone { margin: 0; }
.phone__frame {
  border: 9px solid #171c25;
  border-radius: 30px;
  overflow: hidden;
  background: #171c25;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.phone:hover .phone__frame { transform: translateY(-4px); }
.phone__frame img { display: block; width: 100%; height: auto; }
.phone figcaption {
  margin-top: 14px;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}
.phone figcaption b { color: var(--ink); font-weight: 650; display: block; margin-bottom: 2px; }
.phone figcaption strong { color: var(--ink-2); font-weight: 650; }
.phones--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 580px; }

/* --------------------------------------------------------------------------
   Client logo wall
   -------------------------------------------------------------------------- */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 18px;
}
.logo-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}
.logo-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.logo-tile span {
  font-size: .78rem;
  line-height: 1.35;
  color: var(--muted);
  text-align: center;
  font-weight: 550;
}

@media (max-width: 700px) {
  .logos { grid-template-columns: repeat(auto-fill, minmax(124px, 1fr)); gap: 13px; }
  .logo-tile { padding: 12px 10px 10px; gap: 9px; }
  .logo-tile span { font-size: .72rem; }
}

/* Home-page marquee strip. The track holds the logo list twice, so translating it
   by -50% lands exactly on the start of the second copy and the loop is seamless. */
.logo-strip {
  padding: 30px 0 34px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-strip__head {
  text-align: center;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 22px;
}
.logo-strip__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-strip__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logo-scroll 55s linear infinite;
}
.logo-strip:hover .logo-strip__track { animation-play-state: paused; }
.logo-strip img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
  flex: none;
}
.logo-strip__foot { text-align: center; margin-top: 22px; }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .logo-strip img { width: 60px; height: 60px; }
  .logo-strip__track { gap: 14px; }
}

/* No motion: drop the marquee and let the logos wrap into a static centred block. */
@media (prefers-reduced-motion: reduce) {
  .logo-strip__mask { -webkit-mask-image: none; mask-image: none; }
  .logo-strip__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo-strip__track > :nth-child(n + 17) { display: none; }
}

/* --------------------------------------------------------------------------
   Social links
   -------------------------------------------------------------------------- */
.social { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--dark-border);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; fill: #e6eaf0; display: block; }
.social a:hover svg { fill: #fff; }

/* Compact variant for the dark topbar */
.topbar__items .social { gap: 12px; }
.topbar__items .social a {
  width: auto; height: auto; border: 0; background: none; border-radius: 0;
}
.topbar__items .social a:hover { background: none; transform: none; }
.topbar__items .social svg { width: 15px; height: 15px; fill: #e6eaf0; }
.topbar__items .social a:hover svg { fill: #fff; }

.section--dark .phone figcaption { color: var(--dark-body); }
.section--dark .phone figcaption b { color: #fff; }

@media (max-width: 900px) {
  .phones { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 560px; }
}
@media (max-width: 560px) {
  .phones { grid-template-columns: 1fr; max-width: 290px; gap: 34px; }
}

/* Inline screenshot inside a module body */
.module .shot { margin-top: 20px; box-shadow: var(--shadow-sm); }

/* Thumbnail on a home-page product card */
.prod__shot {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  max-height: 210px;
}
.prod__shot img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* --------------------------------------------------------------------------
   7. Trust bar
   -------------------------------------------------------------------------- */
.trustbar {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  padding: 18px 0;
}
.trustbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trustbar li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b3bcc9;
  font-size: .91rem;
  font-weight: 600;
}
.trustbar li::before {
  content: "✓";
  color: #ff5a72;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   8. Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .955rem; margin-bottom: 0; }
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}
.section--surface .card { box-shadow: var(--shadow-sm); }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--brand-tint);
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.card__icon img { width: 30px; height: 30px; object-fit: contain; }

.section--dark .card {
  background: var(--dark-2);
  border-color: var(--dark-border);
}
.section--dark .card p { color: var(--dark-body); }
.section--dark .card__icon { background: rgba(209, 24, 51, .18); }

/* Numbered differentiator cards */
.numcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 26px 26px;
}
.numcard__n {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-size: .92rem;
  font-weight: 750;
  margin-bottom: 14px;
}
.numcard h3 { font-size: 1.08rem; margin-bottom: 7px; }
.numcard p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Benefit list */
.benefits { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.benefits li {
  position: relative;
  padding-left: 36px;
  margin: 0;
  font-size: .985rem;
}
.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d11833'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 111.4-1.4l3.8 3.8 6.8-6.8a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.section--dark .benefits li::before { background-color: rgba(209, 24, 51, .25); }

/* Checklist (compact, two-column) */
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}
.checks li {
  position: relative;
  padding-left: 26px;
  margin: 0;
  font-size: .945rem;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

/* Split media/text row */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.split + .split { margin-top: clamp(48px, 5vw, 88px); }
.split--flip .split__media { order: -1; }

/* --------------------------------------------------------------------------
   9. Feature module blocks (product pages)
   -------------------------------------------------------------------------- */
.module {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.module + .module { margin-top: 18px; }
.module__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.module__head .ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.module__head h3 { margin: 0; font-size: 1.15rem; }
.module__head p { margin: 2px 0 0; font-size: .88rem; color: var(--muted); }
.module__body { padding: 22px 24px; }

.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feat-list li { margin: 0; font-size: .955rem; line-height: 1.6; }
.feat-list b { display: block; color: var(--ink); font-weight: 650; margin-bottom: 1px; }
.feat-list span { color: var(--muted); }

.feat-list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 32px; }

/* --------------------------------------------------------------------------
   10. Tables
   -------------------------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .945rem;
  min-width: 520px;
}
th, td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th {
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fbfcfd; }
td strong { color: var(--ink); }

.spec-table td:first-child {
  width: 34%;
  font-weight: 650;
  color: var(--ink);
  background: #fafbfc;
}

/* --------------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq details[open] { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 56px 19px 22px;
  font-weight: 650;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  border-right: 2.2px solid var(--brand);
  border-bottom: 2.2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--brand); }
.faq .faq__a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .975rem;
}
.faq .faq__a p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--dark-body);
  padding: clamp(52px, 5vw, 84px) 0;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 340px at 20% 0%, rgba(209, 24, 51, .34), transparent 62%),
    radial-gradient(520px 340px at 88% 100%, rgba(209, 24, 51, .18), transparent 60%);
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta p { color: #b9c2ce; font-size: 1.08rem; }
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 40px;
  align-items: center;
}
.cta__contact {
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  padding: 24px;
}
.cta__contact a { color: #fff; font-weight: 650; }
.cta__contact div { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.cta__contact .ic { font-size: 1.1rem; line-height: 1.4; }
.cta__contact small { display: block; color: #8e97a5; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 650; }

/* --------------------------------------------------------------------------
   13. Product cards (home)
   -------------------------------------------------------------------------- */
.prod {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.prod__top {
  padding: 26px 26px 0;
  display: flex;
  align-items: center;
  gap: 13px;
}
.prod__badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: var(--brand-tint);
  flex-shrink: 0;
}
.prod__top h3 { margin: 0; font-size: 1.22rem; }
.prod__top span { font-size: .82rem; color: var(--muted); font-weight: 600; }
.prod__body { padding: 18px 26px 22px; flex: 1; }
.prod__body p { color: var(--muted); font-size: .95rem; }
.prod__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 16px 0 0;
}
.prod__tags li {
  margin: 0;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 11px;
}
.prod__foot {
  padding: 16px 26px;
  border-top: 1px solid var(--border);
  background: #fcfcfd;
}

/* --------------------------------------------------------------------------
   14. Breadcrumb + page header
   -------------------------------------------------------------------------- */
.crumb {
  font-size: .85rem;
  color: #8e97a5;
  margin-bottom: 18px;
}
.crumb a { color: #b9c2ce; }
.crumb a:hover { color: #fff; }
.crumb span { opacity: .55; margin: 0 7px; }

/* --------------------------------------------------------------------------
   15. Contact / form
   -------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .865rem; font-weight: 650; color: var(--ink); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: .95rem;
  padding: 11px 13px;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(209, 24, 51, .13);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--muted); }

/* Contact Form 7 — make its generated markup wear this site's clothes.
   The form element itself gets the .form class via a filter in functions.php;
   these rules only cover the bits CF7 injects that have no equivalent here. */
.wpcf7 { margin: 0; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 .wpcf7-response-output {
  margin: 4px 0 0;
  border: 0;
  border-left: 3px solid var(--brand);
  background: var(--brand-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--ink-2);
}
.wpcf7 form.sent .wpcf7-response-output {
  border-left-color: var(--ok);
  background: #eaf7f1;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-left-color: var(--warn);
  background: #fdf5e6;
}
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  font-size: .8rem;
  color: var(--brand);
  font-weight: 550;
}
.field input.wpcf7-not-valid,
.field select.wpcf7-not-valid,
.field textarea.wpcf7-not-valid { border-color: var(--brand); }
.wpcf7-spinner { margin: 0 0 0 12px; vertical-align: middle; }

.info-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.info-card .ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--brand-tint);
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-card h4 { margin: 0 0 3px; font-size: .98rem; }
.info-card p { margin: 0; font-size: .93rem; color: var(--muted); }
.info-card a { font-weight: 600; }

.map-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: var(--muted);
}

/* Live embed: the iframe fills the box, so the placeholder's centring and padding
   are dropped and the fixed min-height becomes the map's actual height.
   Must stay below .map-embed — same specificity, so source order decides. */
.map-embed--live { padding: 0; display: block; min-height: 0; }
.map-embed--live iframe { display: block; width: 100%; height: 420px; border: 0; }
@media (max-width: 700px) { .map-embed--live iframe { height: 300px; } }

/* --------------------------------------------------------------------------
   Long-form page content (privacy policy, terms, anything added in the editor)
   -------------------------------------------------------------------------- */
.page-content { font-size: 1.02rem; line-height: 1.75; color: var(--body); }
.page-content > *:first-child { margin-top: 0; }
.page-content h2 {
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 38px 0 12px;
}
.page-content h3 { font-size: 1.12rem; color: var(--ink); margin: 28px 0 10px; }
.page-content p { margin: 0 0 16px; }
.page-content ul,
.page-content ol { margin: 0 0 18px; padding-left: 22px; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.page-content a:hover { color: var(--brand-600); }
.page-content strong { color: var(--ink-2); font-weight: 650; }
.page-content em { color: var(--muted); }
.page-content hr { border: 0; border-top: 1px solid var(--border); margin: 34px 0; }

/* --------------------------------------------------------------------------
   16. Notes / callouts
   -------------------------------------------------------------------------- */
.note {
  border-left: 3px solid var(--brand);
  background: var(--brand-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: .94rem;
  color: var(--ink-2);
}
.note--grey { border-left-color: var(--muted); background: var(--surface); }
.note strong { display: block; margin-bottom: 3px; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: #9aa3b1;
  padding: clamp(48px, 4vw, 72px) 0 0;
  font-size: .93rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 750;
  margin-bottom: 16px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__grid li { margin: 0; }
.footer__grid a { color: #9aa3b1; }
.footer__grid a:hover { color: #fff; }
.footer__brand img {
  height: 54px;
  width: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.footer__brand p { max-width: 320px; font-size: .92rem; }
.footer__contact { display: grid; gap: 11px; }
.footer__contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact a { color: #e6eaf0; font-weight: 600; }
.footer__bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  color: #737d8c;
}
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px -6px rgba(37, 211, 102, .65);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* --------------------------------------------------------------------------
   18. Reveal animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.2, .7, .3, 1), transform .55s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   19. Preview-only banner (remove when converting to WordPress)
   -------------------------------------------------------------------------- */
.preview-flag {
  background: #fff6e5;
  border-bottom: 1px solid #f0dcb4;
  color: #7a5a12;
  font-size: .82rem;
  text-align: center;
  padding: 7px 16px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }

  .nav__menu {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    background: #fff;
    padding: 88px 20px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    z-index: 120;
    box-shadow: -20px 0 50px -20px rgba(0, 0, 0, .3);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { padding: 14px 12px; font-size: 1.05rem; border-radius: 10px; }
  .nav__link .caret { margin-left: auto; }
  .drop {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    padding: 0 0 8px 10px;
    margin: 0 0 6px 12px;
  }
  .nav__toggle { position: relative; z-index: 130; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__grid .hero__media { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .cta__grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feat-list--2 { grid-template-columns: 1fr; }
  .shots, .shots--3 { grid-template-columns: 1fr; }
  .prod__shot { max-height: 240px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__items { gap: 14px; font-size: .8rem; }
  .topbar .wrap { justify-content: center; }
  .hero__stats { gap: 18px 28px; }
  .hero__stats div strong { font-size: 1.4rem; }
  .btn-row .btn { width: 100%; }
  .brand img { height: 40px; }
  .module__body { padding: 18px; }
  .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .cta, .wa-float, .preview-flag, .site-footer { display: none; }
  body { font-size: 12pt; }
}
