/* ================================================================
   InfoGastro — clean light design system
   Static, dependency-free layout for the current single-page markup.
   ================================================================ */

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #f2f7f4;
  --surface-green: #e9f7ef;
  --text: #17211c;
  --text-soft: #526159;
  --text-muted: #66756d;
  --green-700: #075f38;
  --green-600: #087443;
  --green-500: #119653;
  --green-400: #21b968;
  --green-100: #dcf5e6;
  --green-50: #effaf3;
  --line: #dce7e0;
  --line-strong: #cadbd1;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(17, 54, 36, .07);
  --shadow-md: 0 18px 48px rgba(17, 54, 36, .10);
  --shadow-lg: 0 28px 75px rgba(17, 54, 36, .14);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --section-space: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3 { font-family: "Manrope", "Inter", sans-serif; }
::selection { color: var(--white); background: var(--green-600); }
:focus-visible { outline: 3px solid var(--green-400); outline-offset: 4px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.skip-link:focus { top: 18px; }

/* Header */
.site-header { position: relative; z-index: 50; background: var(--surface); }
.contact-strip { color: #dcebe3; background: #123c2b; font-size: 12px; }
.contact-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.contact-strip a { display: inline-flex; align-items: center; gap: 8px; transition: color .22s ease; }
.contact-strip a:hover { color: #8fe5b4; }
.contact-strip svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-strip__links { display: flex; align-items: center; gap: 28px; }
.navbar {
  height: 84px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(7,95,56,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.navbar.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 35px rgba(17,54,36,.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: nav-in .25s ease;
}
@keyframes nav-in { from { transform: translateY(-100%); } }
.navbar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; }
.main-menu { display: flex; align-items: center; gap: 28px; color: #33443b; font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700; }
.main-menu > a:not(.button) { position: relative; padding: 12px 0; }
.main-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}
.main-menu > a:not(.button):hover { color: var(--green-700); }
.main-menu > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--green-700); border-radius: 2px; transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-600);
  border: 1px solid var(--green-600);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(8,116,67,.17);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.button:hover { background: var(--green-700); border-color: var(--green-700); box-shadow: 0 14px 30px rgba(7,95,56,.22); transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 19px; }
.button--small svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button--light { color: var(--white); background: var(--green-600); }
.button--dark { color: var(--white); background: var(--green-600); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(33,185,104,.12), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(17,150,83,.07), transparent 27%),
    linear-gradient(180deg, #f8fbf9 0%, #f3f8f5 100%);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .55;
  background-image:
    linear-gradient(rgba(8,116,67,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,116,67,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 82%);
}
.hero__glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(12px); }
.hero__glow--one { top: -250px; right: -140px; width: 680px; height: 680px; background: radial-gradient(circle, rgba(33,185,104,.16), transparent 66%); }
.hero__glow--two { bottom: -300px; left: -250px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(8,116,67,.08), transparent 65%); }
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 82px; padding-bottom: 72px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; color: var(--green-600); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--green-400); border-radius: 2px; }
.eyebrow--dark { color: var(--green-600); }
.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 5.3vw, 76px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
  text-wrap: balance;
}
.hero h1 em { color: var(--green-500); font-style: normal; }
.hero__copy > p { max-width: 590px; margin: 27px 0 34px; color: var(--text-soft); font-size: 17px; line-height: 1.72; }
.hero__actions { display: flex; align-items: center; gap: 27px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-700); font-size: 14px; font-weight: 800; }
.text-link span { color: var(--green-500); font-size: 19px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero__visual { position: relative; min-width: 0; }
.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  color: var(--text);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,116,67,.13);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
  animation: card-float 7s ease-in-out infinite;
}
@keyframes card-float { 0%,100% { transform: rotate(1deg) translateY(0); } 50% { transform: rotate(.2deg) translateY(-8px); } }
.dashboard-card__bar { height: 36px; display: flex; align-items: center; gap: 6px; padding: 0 8px; }
.dashboard-card__bar > span { width: 8px; height: 8px; background: #d6dfda; border-radius: 50%; }
.dashboard-card__bar > span:first-child { background: #ef9970; }
.dashboard-card__bar > span:nth-child(2) { background: #e8cc67; }
.dashboard-card__bar > span:nth-child(3) { background: #68c99a; }
.dashboard-card__bar small { margin-left: 8px; color: #6b7971; font-size: 10px; font-weight: 700; }
.dashboard-card > img { width: 100%; aspect-ratio: 1.8; object-fit: cover; border: 1px solid #e0e8e3; border-radius: 15px; filter: saturate(.94) contrast(1.03); }
.dashboard-card__footer { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 11px 13px 0; }
.dashboard-card__footer strong, .dashboard-card__footer small { display: block; }
.dashboard-card__footer strong { font-size: 15px; }
.dashboard-card__footer small { margin-top: 3px; color: var(--text-muted); font-size: 11px; }
.status-dot { display: flex; align-items: center; gap: 7px; color: var(--green-600); font-size: 11px; font-weight: 800; }
.status-dot::before { content: ""; width: 7px; height: 7px; background: var(--green-400); border-radius: 50%; box-shadow: 0 0 0 4px var(--green-100); }
.floating-pill {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #28372f;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 800;
  animation: badge-float 5s ease-in-out infinite;
}
.floating-pill svg { width: 17px; height: 17px; padding: 3px; color: var(--white); background: var(--green-500); border-radius: 50%; fill: none; stroke: currentColor; stroke-width: 2.2; }
.floating-pill--top { top: -20px; right: 7%; }
.floating-pill--bottom { bottom: 20px; left: -42px; animation-delay: -2s; }
@keyframes badge-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -7px; } }
.capability-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-bottom: 64px; }
.capability-row > div {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.capability-row > div:hover { border-color: #b9d9c7; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.capability-row svg { width: 27px; flex: 0 0 auto; fill: none; stroke: var(--green-500); stroke-width: 1.7; }
.capability-row strong, .capability-row small { display: block; }
.capability-row strong { color: var(--text); font-size: 13px; }
.capability-row small { margin-top: 3px; color: var(--text-muted); font-size: 11px; }

/* Shared section styles */
.section { padding: var(--section-space) 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 90px; margin-bottom: 52px; }
.section-heading h2, .automation h2, .coverage h2, .contact h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.07;
  text-wrap: balance;
}
.section-heading > p { max-width: 490px; margin: 0 0 5px; color: var(--text-soft); font-size: 16px; line-height: 1.75; }

/* Solutions */
.solutions { background: var(--surface); }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin-inline: auto; }
.solution-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .27s ease, box-shadow .27s ease, border-color .27s ease;
}
.solution-card:hover { border-color: #bed8c8; box-shadow: var(--shadow-md); transform: translateY(-7px); }
.solution-card__media { position: relative; overflow: hidden; margin: 8px 8px 0; aspect-ratio: 1.8; background: var(--surface-soft); border-radius: 12px; }
.solution-card__media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(12,50,32,.18)); }
.solution-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: transform .45s ease, filter .45s ease; }
.solution-card:hover .solution-card__media img { filter: saturate(1); transform: scale(1.045); }
.solution-card__media > span { position: absolute; top: 13px; left: 13px; z-index: 2; padding: 7px 11px; color: var(--green-700); background: rgba(255,255,255,.94); border: 1px solid rgba(8,116,67,.14); border-radius: 999px; box-shadow: 0 6px 18px rgba(17,54,36,.08); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.solution-card__icon { position: absolute; right: 14px; bottom: 13px; z-index: 3; width: 40px; height: 40px; padding: 10px; color: var(--white); background: var(--green-600); border-radius: 12px; fill: none; stroke: currentColor; stroke-width: 1.7; box-shadow: 0 8px 20px rgba(8,116,67,.2); }
.solution-card__body { position: relative; min-height: 268px; padding: 29px 29px 31px; }
.solution-card__number { position: absolute; top: 30px; right: 28px; color: #a5b7ad; font-size: 11px; font-weight: 800; }
.solution-card h3 { margin: 0 0 13px; color: var(--text); font-size: 24px; letter-spacing: -.025em; }
.solution-card p { min-height: 72px; margin: 0 0 24px; color: var(--text-soft); font-size: 14px; line-height: 1.7; }
.solution-card a { display: inline-flex; align-items: center; gap: 9px; color: var(--green-700); font-size: 13px; font-weight: 800; }
.solution-card a span { transition: transform .2s ease; }
.solution-card a:hover span { transform: translateX(5px); }

/* Restaurant ecosystem modules */
.ecosystem-heading { max-width: 760px; margin: 96px auto 42px; text-align: center; }
.ecosystem-heading .eyebrow { justify-content: center; }
.ecosystem-heading h3 { margin: 0; color: var(--text); font-size: clamp(34px, 3.5vw, 48px); font-weight: 800; letter-spacing: -.045em; line-height: 1.08; }
.ecosystem-heading > p { max-width: 680px; margin: 21px auto 0; color: var(--text-soft); font-size: 16px; line-height: 1.72; }
.module-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.module-card {
  position: relative;
  display: flex;
  min-height: 320px;
  grid-column: span 2;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface), #f5faf7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .27s ease, box-shadow .27s ease, border-color .27s ease;
}
.module-card::before { content: ""; position: absolute; top: -70px; right: -60px; width: 170px; height: 170px; background: radial-gradient(circle, rgba(33,185,104,.12), transparent 68%); border-radius: 50%; pointer-events: none; }
.module-card:nth-child(4) { grid-column: 2 / span 2; }
.module-card:nth-child(5) { grid-column: 4 / span 2; }
.module-card:hover { border-color: #bad8c6; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.module-card__top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 25px; }
.module-card__top > span { padding: 6px 9px; color: var(--green-700); background: var(--green-50); border: 1px solid #cee8d8; border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.module-card__icon { display: grid; width: 48px; height: 48px; place-items: center; color: var(--green-600); background: var(--surface); border: 1px solid #cfe4d8; border-radius: 13px; box-shadow: 0 7px 18px rgba(17,54,36,.07); }
.module-card__icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.module-card h3 { position: relative; margin: 0 0 12px; color: var(--text); font-size: 22px; letter-spacing: -.025em; }
.module-card > p { position: relative; flex: 1; margin: 0 0 23px; color: var(--text-soft); font-size: 14px; line-height: 1.7; }
.module-card > a { position: relative; display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; color: var(--green-700); font-size: 13px; font-weight: 800; }
.module-card > a span { transition: transform .2s ease; }
.module-card > a:hover span { transform: translateX(5px); }

/* Real product demonstrations */
.product-demos {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 211, 128, .2), transparent 28%),
    radial-gradient(circle at 5% 65%, rgba(29, 164, 98, .13), transparent 24%),
    linear-gradient(145deg, #0b281d 0%, #103d2a 58%, #0c2e21 100%);
}
.product-demos::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16; background-image: radial-gradient(rgba(255,255,255,.55) .6px, transparent .6px); background-size: 18px 18px; mask-image: linear-gradient(120deg, #000, transparent 62%); }
.product-demos .container { position: relative; }
.demo-heading { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: 72px; margin-bottom: 44px; }
.demo-heading h2 { margin: 15px 0 0; color: var(--white); font-size: clamp(42px, 5vw, 65px); letter-spacing: -.055em; line-height: 1.03; }
.demo-heading h2 em { color: #69dfa0; font-style: normal; }
.demo-heading > p { max-width: 510px; margin: 0 0 5px; color: #c4d9ce; font-size: 16px; line-height: 1.72; }
.demo-tabs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 8px; margin-bottom: 18px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.13); border-radius: 15px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.demo-tabs button { display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px; padding: 10px 12px; color: #c5d8ce; background: transparent; border: 1px solid transparent; border-radius: 10px; cursor: pointer; font: 700 12px/1.2 var(--font-body); transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease; }
.demo-tabs button span { color: #6e9b83; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.demo-tabs button:hover { color: var(--white); background: rgba(255,255,255,.07); transform: translateY(-1px); }
.demo-tabs button.is-active { color: #0f4e31; background: #f8fffb; border-color: #fff; box-shadow: 0 9px 25px rgba(0,0,0,.18); }
.demo-tabs button.is-active span { color: #1d9a5d; }
.demo-tabs button:focus-visible { outline: 3px solid #7ce2a8; outline-offset: 3px; }
.demo-viewer { overflow: hidden; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.17); border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.26); }
.demo-panel[hidden] { display: none; }
.demo-panel video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #edf5f0; object-fit: cover; }
.demo-panel__meta { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 20px; color: #bed4c8; background: rgba(7,28,20,.88); border-top: 1px solid rgba(255,255,255,.1); }
.demo-panel__meta span { display: inline-flex; align-items: center; gap: 8px; color: #89e5ae; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-panel__meta i { width: 8px; height: 8px; background: #3be58a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(59,229,138,.12); }
.demo-panel__meta p { margin: 0; font-size: 12px; }
.demo-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 26px; }
.demo-cta p { margin: 0; color: #d6e6de; font-size: 15px; }
.demo-cta .button { flex: 0 0 auto; }

/* Original visual showcase */
.showcase { position: relative; overflow: hidden; min-height: 240px; background: #183c30; border-block: 1px solid rgba(255,255,255,.1); }
.showcase__track { position: relative; height: 240px; }
.showcase__slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.02); transition: opacity .65s ease, transform 1.1s ease; }
.showcase__slide.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.showcase__slide img { width: 100%; height: 100%; object-fit: cover; }
.showcase__controls { position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; display: flex; align-items: center; justify-content: center; gap: 15px; padding: 12px; }
.showcase__arrow { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: rgba(16,52,39,.75); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.showcase__arrow:hover { background: var(--green-500); transform: scale(1.07); }
.showcase__dots { display: flex; gap: 7px; }
.showcase__dots button { width: 7px; height: 7px; padding: 0; background: rgba(255,255,255,.5); border: 0; border-radius: 99px; cursor: pointer; transition: width .25s ease, background .25s ease; }
.showcase__dots button.is-active { width: 23px; background: #76dfa5; }

/* Automation timeline */
.automation { background: var(--surface-soft); }
.automation__grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 100px; }
.automation__copy > p { max-width: 510px; margin: 24px 0 31px; color: var(--text-soft); font-size: 16px; line-height: 1.75; }
.steps { position: relative; margin: 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; top: 32px; bottom: 32px; left: 28px; width: 2px; background: linear-gradient(var(--green-400), #cce6d7); }
.steps li { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 21px; align-items: start; margin: 6px 0; padding: 17px 18px 17px 0; border: 1px solid transparent; border-radius: var(--radius-md); transition: background .24s ease, border-color .24s ease, transform .24s ease; }
.steps li:hover { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); transform: translateX(5px); }
.steps li > span { z-index: 1; display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: var(--green-600); border: 7px solid var(--surface-soft); border-radius: 50%; box-shadow: 0 0 0 1px #bcd9c8; font-size: 10px; font-weight: 800; }
.steps h3 { margin: 3px 0 5px; color: var(--text); font-size: 18px; }
.steps p { margin: 0; color: var(--text-soft); font-size: 14px; line-height: 1.62; }

/* Coverage */
.coverage { position: relative; padding: 96px 0; color: var(--white); background: linear-gradient(130deg, #123c2b 0%, #0b5b37 100%); }
.coverage::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(rgba(255,255,255,.65) .7px, transparent .7px); background-size: 20px 20px; mask-image: linear-gradient(90deg, transparent, #000 55%, transparent); }
.coverage__grid { position: relative; display: grid; grid-template-columns: .82fr 1fr 1fr; gap: 22px; align-items: stretch; }
.coverage__intro { align-self: center; padding-right: 30px; }
.coverage .eyebrow { color: #a9e4c3; }
.coverage .eyebrow span { background: #75dca2; }
.coverage h2 { color: var(--white); }
.coverage-card { padding: 33px; color: var(--text); background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-md); box-shadow: 0 18px 48px rgba(0,0,0,.13); transition: transform .25s ease, box-shadow .25s ease; }
.coverage-card:hover { box-shadow: 0 24px 58px rgba(0,0,0,.18); transform: translateY(-5px); }
.coverage-card__icon { display: grid; width: 48px; height: 48px; margin-bottom: 31px; place-items: center; color: var(--green-600); background: var(--green-50); border: 1px solid #d1eadb; border-radius: 13px; }
.coverage-card__icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.coverage-card small { color: var(--green-600); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.coverage-card h3 { margin: 9px 0 11px; color: var(--text); font-size: 21px; }
.coverage-card p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.7; }

/* Contact */
.contact { position: relative; overflow: hidden; padding: 100px 0; color: var(--white); background: #123c2b; }
.contact::before { content: ""; position: absolute; top: -220px; right: -140px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(33,185,104,.25), transparent 65%); border-radius: 50%; }
.contact__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 88px; }
.contact .eyebrow { color: #a9e4c3; }
.contact .eyebrow span { background: #75dca2; }
.contact h2 { color: var(--white); }
.contact__copy p { max-width: 560px; margin: 24px 0 0; color: #c9dcd2; font-size: 16px; line-height: 1.75; }
.contact__actions { padding: 8px 26px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); }
.contact__actions > a { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 15px; padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.15); transition: padding-left .22s ease, background .22s ease; }
.contact__actions > a:hover { padding-left: 9px; }
.contact__actions small, .contact__actions strong { display: block; }
.contact__actions small { margin-bottom: 3px; color: #acc7ba; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact__actions strong { color: var(--white); font-size: 17px; }
.contact__icon { display: grid; width: 44px; height: 44px; place-items: center; color: #b2ebc9; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transition: color .2s ease, background .2s ease; }
.contact__icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact__actions > a:hover .contact__icon { color: var(--green-700); background: var(--white); }
.other-phones { margin-top: 17px; color: #acc7ba; font-size: 12px; }
.other-phones a { color: var(--white); }

/* Footer */
.footer { padding: 72px 0 0; color: #aebfb6; background: #0d241b; }
.footer__main { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 66px; padding-bottom: 52px; }
.footer__brand img { width: 185px; padding: 5px 9px; background: rgba(255,255,255,.95); border-radius: 999px; }
.footer__brand p { max-width: 300px; margin: 20px 0 0; font-size: 13px; line-height: 1.7; }
.footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 12px; }
.footer__column h2 { margin: 3px 0 11px; color: var(--white); font-size: 13px; }
.footer__column a { transition: color .2s ease, transform .2s ease; }
.footer__column a:hover { color: #8fe5b4; transform: translateX(3px); }
.footer__address p { margin: 0; line-height: 1.75; }
.footer__address a { margin-top: 5px; color: #8fe5b4; font-weight: 700; }
.footer__bottom { min-height: 70px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer__legal { display: flex; gap: 21px; }
.footer__original-marks { display: flex; gap: 7px; }
.footer__original-marks img { width: 22px; height: 22px; object-fit: contain; opacity: .48; filter: grayscale(1); }

/* Floating actions */
.whatsapp-float, .back-to-top { position: fixed; bottom: 20px; z-index: 24; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease; }
.whatsapp-float { right: 78px; color: var(--white); background: #168f50; border: 3px solid var(--white); box-shadow: 0 10px 27px rgba(15,91,52,.24); }
.whatsapp-float svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.whatsapp-float:hover { box-shadow: 0 14px 32px rgba(15,91,52,.32); transform: translateY(-3px); }
.back-to-top { right: 20px; color: var(--green-700); background: var(--white); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(8px); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { color: var(--white); background: var(--green-600); transform: translateY(-3px); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .68s ease var(--delay, 0ms), transform .68s cubic-bezier(.2,.75,.2,1) var(--delay, 0ms); }
.reveal.is-visible, .hero .reveal { opacity: 1; transform: none; }

/* Tablet */
@media (max-width: 1020px) {
  :root { --section-space: 96px; }
  .main-menu { gap: 18px; }
  .hero__grid { gap: 48px; }
  .hero h1 { font-size: clamp(50px, 6.5vw, 68px); }
  .floating-pill--bottom { left: -18px; }
  .capability-row > div { padding: 18px; }
  .section-heading { gap: 54px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .module-card, .module-card:nth-child(4), .module-card:nth-child(5) { grid-column: auto; }
  .module-card:last-child { width: calc(50% - 9px); grid-column: 1 / -1; justify-self: center; }
  .automation__grid { gap: 65px; }
  .coverage__grid { grid-template-columns: 1fr 1fr; }
  .coverage__intro { grid-column: 1 / -1; margin-bottom: 14px; }
  .coverage__intro br { display: none; }
  .contact__inner { gap: 58px; }
  .footer__main { grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; }
  .footer__address { grid-column: 2 / -1; }
}

/* Mobile */
@media (max-width: 900px) {
  :root { --section-space: 80px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .contact-strip { display: none; }
  .navbar, .navbar.is-sticky { height: 74px; background: rgba(255,255,255,.98); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .brand img { width: 162px; }
  .menu-toggle { display: block; }
  .main-menu {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 25px 20px;
    color: var(--text);
    background: #ffffff;
    border-top: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .24s ease, transform .24s ease;
  }
  .main-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-menu > a, .main-menu > a:nth-child(4) { display: flex; padding: 17px 8px !important; border-bottom: 1px solid var(--line); }
  .main-menu > a::after { display: none; }
  .main-menu .button { justify-content: center; margin-top: 20px; color: var(--white); border: 0; }
  .hero { padding-top: 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 66px; padding-bottom: 62px; }
  .hero h1 { font-size: clamp(45px, 12.5vw, 66px); }
  .hero__copy > p { font-size: 16px; }
  .hero__visual { width: min(100%, 560px); margin-inline: auto; }
  .dashboard-card { animation-name: card-float-mobile; }
  @keyframes card-float-mobile { 0%,100% { transform: rotate(.7deg) translateY(0); } 50% { transform: rotate(0) translateY(-6px); } }
  .floating-pill--bottom { left: 5px; }
  .capability-row { grid-template-columns: 1fr 1fr; gap: 11px; padding-bottom: 54px; }
  .capability-row > div { min-height: 92px; padding: 15px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { display: grid; grid-template-columns: .95fr 1.05fr; }
  .solution-card__media { height: calc(100% - 16px); aspect-ratio: auto; }
  .solution-card__body { min-height: 244px; }
  .demo-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
  .demo-tabs { display: flex; overflow-x: auto; justify-content: flex-start; padding: 7px; scrollbar-width: thin; scroll-snap-type: x proximity; }
  .demo-tabs button { min-width: 154px; scroll-snap-align: start; }
  .showcase, .showcase__track { height: 190px; min-height: 190px; }
  .automation__grid, .contact__inner { grid-template-columns: 1fr; gap: 47px; }
  .coverage { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__address { grid-column: auto; }
  .footer__bottom { grid-template-columns: 1fr auto; padding: 20px 0; }
  .footer__legal { grid-row: 2; }
}

@media (max-width: 680px) {
  .ecosystem-heading { margin-top: 76px; text-align: left; }
  .ecosystem-heading .eyebrow { justify-content: flex-start; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card, .module-card:nth-child(4), .module-card:nth-child(5), .module-card:last-child { width: 100%; grid-column: auto; }
}

/* Small mobile */
@media (max-width: 520px) {
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(41px, 11.8vw, 54px); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .floating-pill { padding: 8px 11px; font-size: 9px; }
  .floating-pill--top { right: -2px; }
  .floating-pill--bottom { bottom: 14px; left: -2px; }
  .dashboard-card { padding: 8px; border-radius: 18px; }
  .dashboard-card__footer { min-height: 65px; }
  .capability-row { grid-template-columns: 1fr; }
  .capability-row > div { min-height: 78px; }
  .section-heading h2, .automation h2, .coverage h2, .contact h2, .demo-heading h2 { font-size: 37px; }
  .solution-card { display: block; }
  .solution-card__media { height: auto; aspect-ratio: 1.8; }
  .solution-card__body { min-height: auto; padding: 27px 24px 29px; }
  .solution-card p { min-height: auto; }
  .demo-viewer { border-radius: 15px; }
  .demo-panel__meta { min-height: 82px; align-items: flex-start; flex-direction: column; gap: 8px; padding: 13px 15px; }
  .demo-panel__meta p { line-height: 1.45; }
  .demo-cta { align-items: stretch; flex-direction: column; gap: 17px; }
  .demo-cta .button { width: 100%; }
  .showcase, .showcase__track { height: 150px; min-height: 150px; }
  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__intro { grid-column: auto; }
  .contact__actions { padding-inline: 13px; }
  .contact__actions > a { grid-template-columns: 43px minmax(0,1fr) auto; }
  .contact__actions strong { overflow-wrap: anywhere; font-size: 14px; }
  .footer__main { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand, .footer__address { grid-column: auto; }
  .footer__bottom { grid-template-columns: 1fr; gap: 13px; padding: 24px 0; }
  .footer__legal { grid-row: auto; }
  .whatsapp-float, .back-to-top { bottom: 14px; width: 46px; height: 46px; }
  .whatsapp-float { right: 68px; }
  .back-to-top { right: 14px; }
}

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