/* =========================================================================
Eiglou Free POS — campaign landing page
Trustworthy / calm / business-like. Money-green + warm paper.
========================================================================= */

:root {
  /* ---- Color (oklch) ---- */
  --paper:        oklch(0.985 0.006 95);     /* warm off-white page bg */
  --paper-2:      oklch(0.965 0.008 110);    /* slightly deeper band */
  --card:         oklch(1 0 0);              /* white surfaces */
  --ink:          oklch(0.24 0.018 165);     /* near-black, green-leaning */
  --ink-soft:     oklch(0.42 0.018 165);     /* secondary text */
  --muted:        oklch(0.55 0.012 160);     /* tertiary / captions */
  --line:         oklch(0.91 0.008 150);     /* hairline borders */
  --line-2:       oklch(0.86 0.010 150);

  --green:        oklch(0.50 0.105 162);     /* primary */
  --green-deep:   oklch(0.34 0.060 165);     /* dark sections */
  --green-deeper: oklch(0.27 0.045 166);
  --green-tint:   oklch(0.95 0.020 160);     /* soft fills */
  --green-tint-2: oklch(0.91 0.030 160);
  --gold:         oklch(0.78 0.090 78);      /* warm highlight accent */
  --gold-tint:    oklch(0.95 0.030 85);

  --shadow-sm: 0 1px 2px oklch(0.30 0.03 165 / 0.06), 0 1px 3px oklch(0.30 0.03 165 / 0.05);
  --shadow-md: 0 8px 24px oklch(0.30 0.03 165 / 0.08), 0 2px 6px oklch(0.30 0.03 165 / 0.05);
  --shadow-lg: 0 24px 60px oklch(0.30 0.03 165 / 0.14), 0 6px 16px oklch(0.30 0.03 165 / 0.07);

  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 22px;

  --font-display: "Bricolage Grotesque", "Geist", system-ui, sans-serif;
  --font-body: "Geist", system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(52px, 9vw, 104px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: clamp(1.75rem, 4.2vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); letter-spacing: -0.01em; }
.lede { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 60ch; }
.center .lede { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 1.02rem; line-height: 1;
  padding: 17px 26px; border-radius: 12px;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: oklch(0.99 0.01 160); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: oklch(0.46 0.108 162); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-arrow { transition: transform .15s ease; }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }
.btn-lg { padding: 19px 30px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ============================ Header ============================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.985 0.006 95 / 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.02em; }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--green); display: grid; place-items: center; color: #fff; font-size: 15px; font-weight: 800; box-shadow: var(--shadow-sm); }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; color: var(--muted); letter-spacing: 0.02em; margin-top: 1px; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 20px; font-size: 0.95rem; }
.login-link { font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); }
.login-link:hover { color: var(--green); }

/* ============================ Hero ============================ */
.hero { 
  position: relative; 
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  padding-top: clamp(24px, 3vw, 40px); 
  padding-bottom: clamp(24px, 3vw, 40px); 
  overflow: hidden; 
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 88% 0%, var(--green-tint) 0%, transparent 60%),
    radial-gradient(50% 60% at 0% 30%, oklch(0.96 0.012 110) 0%, transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 42px); align-items: center; }
.hero-copy { display: flex; flex-direction: column; }
.brand-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.brand-logo-hero {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.brand-name-hero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.offer-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green-tint); color: var(--green-deep);
  border: 1px solid var(--green-tint-2);
  padding: 8px 15px; border-radius: 100px; font-size: 0.76rem; font-weight: 600;
  margin-bottom: 18px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.offer-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px oklch(0.50 0.105 162 / 0.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; line-height: 1.15; }
.hero h1 .hl { color: var(--green); position: relative; white-space: nowrap; }
.hero .lede { font-size: clamp(0.95rem, 1.5vw, 1.1rem); margin-bottom: 20px; line-height: 1.6; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 18px; }
.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: var(--green-tint); 
  border: 1px solid var(--green-tint-2);
  color: var(--green-deep);
  padding: 9px 14px; 
  border-radius: 100px; 
  font-size: 0.85rem; 
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
  max-width: 180px;
}
.hero-badge svg { 
  width: 18px; 
  height: 18px; 
  color: var(--green); 
  flex: none; 
}
.hero-points { display: grid; gap: 10px; margin: 20px 0 18px; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.hero-points svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: 1px; }
.hero-trust { display: flex; flex-direction: row; gap: 10px; }
.trust-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hero-stars { display: flex; gap: 3px; color: var(--gold); }
.hero-stars svg { width: 16px; height: 16px; }
.form-flag { margin-bottom: 16px; white-space: nowrap; }
#signup { scroll-margin-top: 86px; }

/* Logo Grid */
.logo-grid { 
  display: flex; 
  flex-wrap: wrap; 
  /* justify-content: center; 
  align-items: center;  */
  gap: 24px 10px; 
  margin-top: 22px; 
}
.logo-item { 
  width: 60px; 
  height: 60px; 
  display: flex; 
  /* align-items: center; 
  justify-content: center;  */
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}
.logo-item img { 
  max-width: 100%; 
  max-height: 100%; 
  object-fit: contain; 
}

/* hero visual */
.hero-visual { position: relative; }
.app-frame {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.app-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.app-bar .d { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.app-bar .addr { margin-left: 10px; font-size: 12px; color: var(--muted); font-family: var(--font-body); }
.slot-screenshot { width: 100%; aspect-ratio: 16 / 10.4; }
.hero-float {
  position: absolute; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: 13px 16px; display: flex; align-items: center; gap: 12px;
}
.hero-float .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero-float > span:last-child { display: flex; flex-direction: column; }
.hero-float .t { font-size: 12px; color: var(--muted); line-height: 1.3; }
.hero-float .v { font-size: 1.05rem; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.01em; }
.float-a { bottom: -18px; left: -14px; }
.float-b { top: 26px; right: -16px; }

/* ============================ Logos / trust strip ============================ */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.trust-inner { padding-block: 26px; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 26px; }
.logo-slot { width: 132px; height: 46px; opacity: 0.95; }

/* ============================ Generic section bits ============================ */
.section-head { max-width: 64ch; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }

/* offer / "is it really free" band */
.band-green { background: var(--green-deep); color: oklch(0.96 0.01 160); position: relative; overflow: hidden; }
.band-green::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 85% 10%, oklch(0.42 0.07 165 / 0.7), transparent 60%); pointer-events:none; }
.band-green h2 { color: #fff; }
.band-green .lede { color: oklch(0.90 0.015 160); }
.offer-cols { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 4vw, 48px); align-items: center; position: relative; z-index: 1; }
.offer-points { display: grid; gap: 16px; margin-top: 26px; }
.offer-point { display: flex; gap: 14px; align-items: flex-start; }
.offer-point .ck { width: 26px; height: 26px; border-radius: 8px; background: oklch(0.50 0.105 162); display: grid; place-items: center; flex: none; margin-top: 2px; }
.offer-point .ck svg { width: 16px; height: 16px; color: #fff; }
.offer-point b { font-weight: 600; color: #fff; }
.offer-point p { color: oklch(0.88 0.015 160); font-size: 0.98rem; }
.offer-note { font-size: 0.82rem; color: oklch(0.80 0.02 160); margin-top: 24px; }
.offer-note a { color: oklch(0.92 0.03 160); text-decoration: underline; text-underline-offset: 2px; }

.price-card {
  background: oklch(0.30 0.045 166); border: 1px solid oklch(0.42 0.05 165);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg);
}
.price-card .free-big { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff; font-size: clamp(3.4rem, 9vw, 5.2rem); }
.price-card .free-sub { color: oklch(0.86 0.02 160); margin: 6px 0 22px; }
.price-card ul { display: grid; gap: 11px; margin-bottom: 26px; }
.price-card li { display: flex; gap: 11px; align-items: center; color: oklch(0.92 0.01 160); font-size: 0.97rem; }
.price-card li svg { width: 18px; height: 18px; color: oklch(0.72 0.11 162); flex: none; }
.price-card .crossout { color: oklch(0.72 0.02 160); }
.price-card .crossout s { color: oklch(0.62 0.02 160); }

/* ============================ Features grid ============================ */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.feature .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--green-tint); display: grid; place-items: center; margin-bottom: 16px; }
.feature .ic svg { width: 24px; height: 24px; color: var(--green); }
.feature h3 { margin-bottom: 7px; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================ Shop types ============================ */
.types-band { background: var(--paper-2); }
.type-row { display: flex; flex-wrap: wrap; gap: 12px; }
.type-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line); border-radius: 100px;
  padding: 12px 20px; font-weight: 600; font-size: 0.98rem; box-shadow: var(--shadow-sm);
}
.type-chip svg { width: 19px; height: 19px; color: var(--green); }

/* ============================ How it works ============================ */
.steps { display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 26px; }
.step .num { font-family: var(--font-display); font-weight: 800; font-size: 1rem; width: 40px; height: 40px; border-radius: 11px; background: var(--green); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================ Objections ============================ */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.02rem, 2vw, 1.16rem); color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--green-tint); display: grid; place-items: center; flex: none; transition: transform .25s ease, background .2s; }
.faq-q-ic svg { width: 17px; height: 17px; color: var(--green); }
.faq-item[open] .faq-q-ic { transform: rotate(45deg); background: var(--green); }
.faq-item[open] .faq-q-ic svg { color: #fff; }
.faq-a { padding: 0 24px 24px; color: var(--ink-soft); font-size: 1rem; max-width: 64ch; }

/* ============================ Testimonials ============================ */
.tst-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.tst { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; }
.tst .stars { display: flex; gap: 3px; color: var(--gold); }
.tst .stars svg { width: 18px; height: 18px; }
.tst blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--ink); font-weight: 450; }
.tst .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst .ava { width: 46px; height: 46px; border-radius: 50%; flex: none; }
.tst .who .nm { font-weight: 600; font-size: 0.96rem; }
.tst .who .rl { font-size: 0.85rem; color: var(--muted); }

/* ============================ Form / final CTA ============================ */
.cta-band { background: var(--green-deeper); position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 56px); align-items: center; position: relative; z-index: 1; }
.cta-copy .eyebrow { color: oklch(0.80 0.10 162); }
.cta-copy .eyebrow::before { background: oklch(0.80 0.10 162); }
.cta-copy h2 { color: #fff; }
.cta-copy .lede { color: oklch(0.90 0.015 160); }
.cta-bullets { display: grid; gap: 13px; margin-top: 26px; }
.cta-bullets li { display: flex; gap: 12px; align-items: center; color: oklch(0.92 0.01 160); font-size: 1rem; }
.cta-bullets svg { width: 20px; height: 20px; color: oklch(0.74 0.11 162); flex: none; }

.form-card { background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 30px); }
.form-card h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); margin-bottom: 4px; }
.form-card .sub { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 18px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 10px;
  padding: 12px 13px; transition: border-color .15s ease, box-shadow .15s ease, background .15s;
  min-height: 48px;
}
.field input::placeholder { color: oklch(0.66 0.01 160); }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); background: var(--card); box-shadow: 0 0 0 4px oklch(0.50 0.105 162 / 0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pw-wrap { position: relative; }
.pw-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); padding: 8px; color: var(--muted); border-radius: 8px; }
.pw-toggle:hover { color: var(--ink); }
.pw-reqs { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 8px; }
.pw-req { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--muted); transition: color .2s; }
.pw-req .rk { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: all .2s; }
.pw-req .rk svg { width: 8px; height: 8px; color: #fff; opacity: 0; transition: opacity .2s; }
.pw-req.ok { color: var(--green); }
.pw-req.ok .rk { background: var(--green); border-color: var(--green); }
.pw-req.ok .rk svg { opacity: 1; }
.field-error { font-size: 0.75rem; color: oklch(0.55 0.16 25); margin-top: 4px; display: none; }
.field.invalid input, .field.invalid select { border-color: oklch(0.62 0.16 25); }
.field.invalid .field-error { display: block; }
.form-submit { margin-top: 6px; font-size: 1rem; }
.btn-campaign-cta {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35), 0 2px 6px rgba(255, 107, 107, 0.2) !important;
  animation: heartbeat 1.3s ease-in-out infinite;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  position: relative;
}
.btn-campaign-cta:hover {
  background: linear-gradient(135deg, #FF5252 0%, #FF3838 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4), 0 4px 8px rgba(255, 107, 107, 0.25) !important;
}
.btn-campaign-cta:active {
  transform: translateY(-1px) !important;
}
.btn-campaign-cta:disabled {
  animation: none;
  background: linear-gradient(135deg, #FFB3B3 0%, #FFA3A3 100%) !important;
  opacity: 0.7;
}
.form-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 0.75rem; color: var(--muted); }
.form-secure svg { width: 14px; height: 14px; color: var(--green); }
.form-legal { font-size: 0.7rem; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.4; }
.form-legal a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.form-secure a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* success state */
.form-success { display: none; text-align: center; padding: 14px 4px; }
.form-success.show { display: block; animation: rise .4s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes heartbeat {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
  25% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(255, 107, 107, 0); }
  50% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
  75% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(255, 107, 107, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}
.success-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--green-tint); display: grid; place-items: center; margin: 0 auto 18px; }
.success-ic svg { width: 32px; height: 32px; color: var(--green); }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }

/* ============================ Footer ============================ */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: 44px 30px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 30px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.94rem; max-width: 38ch; }
.footer-contact { display: grid; gap: 9px; font-size: 0.94rem; color: var(--ink-soft); }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a:hover { color: var(--green); }

/* ============================ Sticky mobile CTA ============================ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: oklch(0.99 0.005 95 / 0.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px oklch(0.30 0.03 165 / 0.08);
  transform: translateY(110%); transition: transform .3s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }
.mobile-cta-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.mobile-cta-meta .lbl { font-weight: 700; font-family: var(--font-display); font-size: 0.98rem; }
.mobile-cta-meta .sm { font-size: 0.78rem; color: var(--muted); }

/* ============================ Intelligent POS ============================ */
.smart-band { background: var(--paper-2); }
.smart-feature { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 54px); align-items: center; margin-top: clamp(34px, 5vw, 54px); }
.smart-feature + .smart-feature { margin-top: clamp(46px, 7vw, 88px); }
.smart-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green); background: var(--green-tint); border: 1px solid var(--green-tint-2); padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.smart-badge.soon { color: oklch(0.56 0.09 70); background: var(--gold-tint); border-color: oklch(0.88 0.045 82); }
.smart-badge .bdot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.smart-copy h3 { font-size: clamp(1.4rem, 3.2vw, 1.95rem); margin-bottom: 14px; }
.smart-copy > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 24px; max-width: 50ch; }
.smart-list { display: grid; gap: 18px; }
.smart-list li { display: flex; gap: 14px; align-items: flex-start; }
.smart-list .si { width: 40px; height: 40px; border-radius: 11px; background: var(--green-tint); display: grid; place-items: center; flex: none; }
.smart-list .si svg { width: 21px; height: 21px; color: var(--green); }
.smart-list b { display: block; font-weight: 600; margin-bottom: 2px; font-size: 1rem; }
.smart-list p { color: var(--ink-soft); font-size: 0.95rem; }

/* Purchase-order builder mock */
.po-mock { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(18px, 3vw, 24px); }
.po-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.po-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.po-auto { font-size: 0.72rem; font-weight: 600; color: var(--green); background: var(--green-tint); padding: 6px 11px; border-radius: 100px; display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
.po-auto svg { width: 13px; height: 13px; }
.po-field { margin-bottom: 14px; }
.po-field > label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); display: block; margin-bottom: 7px; }
.po-select { display: flex; align-items: center; justify-content: space-between; background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 10px; padding: 12px 14px; font-weight: 600; font-size: 0.95rem; }
.po-select svg { width: 17px; height: 17px; color: var(--muted); }
.po-modes { display: flex; gap: 8px; }
.po-mode { flex: 1; text-align: center; font-size: 0.82rem; font-weight: 600; padding: 10px 6px; border-radius: 9px; border: 1.5px solid var(--line-2); background: var(--paper); color: var(--ink-soft); }
.po-mode.active { background: var(--green); border-color: var(--green); color: #fff; }
.po-pills { display: flex; gap: 7px; margin-top: 9px; }
.po-pill { flex: 1; text-align: center; font-size: 0.78rem; font-weight: 600; padding: 7px; border-radius: 8px; background: var(--paper); border: 1.5px solid var(--line-2); color: var(--muted); }
.po-pill.on { background: var(--green-tint); border-color: var(--green-tint-2); color: var(--green-deep); }
.po-table { margin-top: 16px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.po-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; padding: 12px 14px; align-items: center; font-size: 0.9rem; }
.po-row + .po-row { border-top: 1px solid var(--line); }
.po-row.h { background: var(--paper-2); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 700; }
.po-row .stk { color: var(--ink-soft); text-align: right; min-width: 42px; }
.po-qty { font-weight: 700; color: var(--green); font-family: var(--font-display); text-align: right; min-width: 48px; display: inline-flex; align-items: center; gap: 6px; justify-content: flex-end; }
.po-qty .auto-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* AI assistant chat mock */
.chat-mock { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(18px, 3vw, 22px); }
.chat-top { display: flex; align-items: center; gap: 12px; padding-bottom: 15px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.chat-top > span:last-child { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.chat-ava { width: 42px; height: 42px; border-radius: 12px; background: var(--green); display: grid; place-items: center; color: #fff; flex: none; }
.chat-ava svg { width: 22px; height: 22px; }
.chat-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.chat-status { font-size: 0.78rem; color: var(--green); display: flex; align-items: center; gap: 6px; }
.chat-status .live { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.chat-msgs { display: flex; flex-direction: column; gap: 11px; }
.bubble { max-width: 84%; padding: 12px 15px; border-radius: 16px; font-size: 0.92rem; line-height: 1.45; }
.bubble.bot { background: var(--paper-2); border: 1px solid var(--line); border-bottom-left-radius: 5px; align-self: flex-start; color: var(--ink); }
.bubble.user { background: var(--green); color: oklch(0.98 0.01 160); border-bottom-right-radius: 5px; align-self: flex-end; }
.chat-input { margin-top: 18px; display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line-2); border-radius: 100px; padding: 9px 9px 9px 18px; color: var(--muted); font-size: 0.9rem; }
.chat-input .send { margin-left: auto; width: 36px; height: 36px; border-radius: 50%; background: var(--green); display: grid; place-items: center; color: #fff; flex: none; }
.chat-input .send svg { width: 17px; height: 17px; }

/* Ledger / journal-entry mock (accounting) */
.ledger-ref { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.ledger-row { display: grid; grid-template-columns: 1fr 92px 92px; gap: 8px; padding: 11px 14px; font-size: 0.9rem; align-items: center; }
.ledger-row + .ledger-row { border-top: 1px solid var(--line); }
.ledger-table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.ledger-row span:nth-child(2), .ledger-row span:nth-child(3) { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.ledger-row.h { background: var(--paper-2); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 700; }
.ledger-row.h span { font-weight: 700; }
.ledger-row.total { background: var(--paper-2); font-family: var(--font-display); font-weight: 700; border-top: 1.5px solid var(--line-2); }
.ledger-balanced { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--green); background: var(--green-tint); padding: 9px 14px; border-radius: 100px; }
.ledger-balanced svg { width: 15px; height: 15px; }

/* ============================ Responsive ============================ */
@media (min-width: 680px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .offer-cols { grid-template-columns: 1.15fr 0.85fr; }
  .cta-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .tst-grid { grid-template-columns: repeat(3, 1fr); }
  .smart-feature { grid-template-columns: 1fr 1fr; }
  .smart-feature.reverse .smart-visual { order: -1; }
  .mobile-cta { display: none; }
}
@media (max-width: 899px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}

/* Centered bottom reinforcement CTA */
.cta-final { max-width: 780px; margin-inline: auto; text-align: center; }
.cta-final .eyebrow { justify-content: center; }
.cta-final .eyebrow::before { display: none; }
.cta-final .lede { margin-inline: auto; margin-bottom: 30px; }
.cta-final-actions { display: flex; justify-content: center; }
.cta-bullets.inline { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; margin-top: 28px; }
.cta-bullets.inline li { font-size: 0.95rem; }

@media (max-width: 1050px) {
  .form-secure {
   flex-direction: column;
  }
}

/* =========================================================================
   Floating action buttons (WhatsApp + scroll-to-top)
   ========================================================================= */
.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fab-scroll-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .2s ease;
}

.fab-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: background .2s ease, transform .15s ease;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.08);
}
.fab-stck-btn {
  visibility: hidden
}

.fab-btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.fab-whatsapp {
  background: #25D366;
  color: #fff;
}

.fab-whatsapp:hover {
  background: #1ebe5d;
}

.fab-scroll-top {
  background: var(--green);
  color: #fff;
}

.fab-scroll-top:hover {
  background: var(--green-deep);
}

@media (max-width: 600px) {
  .fab-stack {
    bottom: 18px;
    right: 18px;
  }

  .fab-btn {
    width: 40px;
    height: 40px;
  }
}
.hero-btn{
    white-space: normal;
    line-height: 1.2;
}
