/* ==========================================================================
   TechIoT — SzamboControl  •  main.css
   Mobile-first. Prefix: .szc-
   ========================================================================== */

/* -------- Fonts (self-hosted, no Google Fonts → RODO-friendly) ------------ */
@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/GeistMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------- Tokens ------------------------------- */
:root {
  /* brand */
  --green:        #14B981;
  --green-600:    #0FA06E;
  --green-700:    #0B8258;
  --green-tint:   #E9F8F1;
  --teal-900:     #0A423D;
  --teal-700:     #0E5A52;

  /* ink / dark */
  --ink:          #0B1A22;
  --ink-2:        #102A33;
  --ink-3:        #18343E;
  --on-dark:      #E9F0F0;
  --on-dark-mut:  #9FB2B3;

  /* light */
  --paper:        #FFFFFF;
  --mist:         #F5F8F8;
  --mist-2:       #EEF3F3;
  --text:         #16242C;
  --muted:        #5B6B73;
  --muted-2:      #8B989E;
  --line:         #E5EBEB;
  --line-2:       #EFF3F3;

  /* type */
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --pill: 999px;

  /* shadow */
  --sh-sm:   0 1px 2px rgba(11,26,34,.05);
  --sh-card: 0 6px 28px rgba(11,26,34,.07);
  --sh-lift: 0 16px 48px rgba(11,26,34,.12);
  --sh-dark: 0 20px 60px rgba(0,0,0,.35);

  /* layout */
  --maxw: 1200px;
  --gut: 20px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  font-feature-settings: " cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }

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

/* skip link */
.szc-skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.szc-skip:focus { left: 0; }

/* focus */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------------- Layout ------------------------------- */
.szc-container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.szc-section { padding-block: clamp(60px, 9vw, 116px); }
.szc-section--tight { padding-block: clamp(48px, 7vw, 88px); }
.szc-mist { background: var(--mist); }
.szc-dark { background: var(--ink); color: var(--on-dark); }

.szc-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.szc-head--center { margin-inline: auto; text-align: center; }

.szc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--green-700);
  margin-bottom: 16px;
}
.szc-dark .szc-eyebrow { color: var(--green); }
.szc-eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .6; }
.szc-head--center .szc-eyebrow::before { display: none; }

.szc-h2 { font-size: clamp(1.75rem, 4.4vw, 2.7rem); }
.szc-lead { font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--muted); margin-top: 14px; }
.szc-dark .szc-lead { color: var(--on-dark-mut); }

/* ----------------------------------- Buttons ------------------------------ */
.szc-btn {
  --bg: var(--green); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: var(--pill);
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font-size: 1rem; font-weight: 600; letter-spacing: -.01em;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .22s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.szc-btn svg { width: 18px; height: 18px; }
.szc-btn--primary:hover { background: var(--green-600); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(20,185,129,.32); }
.szc-btn--primary:active { transform: translateY(0); }

.szc-btn--ghost { --bg: transparent; --fg: var(--text); --bd: var(--line); }
.szc-btn--ghost:hover { --bd: var(--ink); background: rgba(11,26,34,.03); transform: translateY(-1px); }
.szc-dark .szc-btn--ghost, .szc-on-dark .szc-btn--ghost { --fg: #fff; --bd: rgba(255,255,255,.28); }
.szc-dark .szc-btn--ghost:hover, .szc-on-dark .szc-btn--ghost:hover { background: rgba(255,255,255,.08); --bd: rgba(255,255,255,.5); }

.szc-btn--lg { padding: 16px 30px; font-size: 1.04rem; }
.szc-btn--block { width: 100%; }

.szc-btn--play svg { width: 22px; height: 22px; }

/* ----------------------------------- Header ------------------------------- */
.szc-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.szc-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(11,26,34,.02), var(--sh-sm); }
.szc-nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 68px; }

.szc-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.szc-brand svg, .szc-brand img { height: 30px; width: auto; }
.szc-brand b { font-size: 1.18rem; font-weight: 600; letter-spacing: -.02em; }

.szc-menu { display: none; align-items: center; gap: 4px; }
.szc-menu a { padding: 9px 14px; border-radius: var(--pill); font-size: .94rem; font-weight: 500; color: var(--text); transition: background .15s, color .15s; }
.szc-menu a:hover { background: var(--mist); color: var(--ink); }

.szc-nav-cta { display: none; }

.szc-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 11px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: #fff;
}
.szc-burger span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.szc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.szc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.szc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile panel */
.szc-mobile {
  display: grid; grid-template-rows: 0fr;
  overflow: hidden; border-bottom: 1px solid transparent;
  transition: grid-template-rows .3s var(--ease), border-color .3s;
  background: #fff;
}
.szc-mobile.is-open { grid-template-rows: 1fr; border-bottom-color: var(--line); }
.szc-mobile > div { min-height: 0; }
.szc-mobile-inner { padding: 8px var(--gut) 22px; display: flex; flex-direction: column; gap: 2px; }
.szc-mobile a { padding: 13px 8px; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line-2); }
.szc-mobile a:last-of-type { border-bottom: none; }
.szc-mobile .szc-btn { margin-top: 14px; }

/* ----------------------------------- Hero --------------------------------- */
.szc-hero {
  position: relative; background: var(--ink); color: var(--on-dark);
  overflow: hidden; isolation: isolate;
  padding-block: clamp(48px, 8vw, 96px) clamp(56px, 9vw, 104px);
}
.szc-hero::before { /* ambient glow */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 82% 8%, rgba(20,185,129,.20), transparent 60%),
    radial-gradient(70% 90% at 10% 100%, rgba(14,90,82,.22), transparent 60%),
    linear-gradient(180deg, #0B1A22 0%, #0C232B 100%);
}
.szc-hero::after { /* faint grid texture */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: linear-gradient(180deg, #000, transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.szc-hero-grid { display: grid; gap: clamp(36px, 6vw, 56px); align-items: center; }
.szc-hero h1 {
  font-size: clamp(2.15rem, 7vw, 4rem); letter-spacing: -.035em; line-height: 1.04;
  color: #fff; margin: 4px 0 0;
}
.szc-hero .szc-lead { color: #C7D4D4; max-width: 30ch; }
.szc-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.szc-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 18px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.szc-trust li { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: #C2D0D0; font-weight: 500; }
.szc-trust .ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,.06); color: var(--green); flex: none; }
.szc-trust .ic svg { width: 16px; height: 16px; }

/* hero visual */
.szc-hero-visual { position: relative; }
.szc-device-stage {
  position: relative; aspect-ratio: 1 / 1; max-width: 480px; margin-inline: auto;
  border-radius: var(--r-lg);
  background: radial-gradient(120% 120% at 50% 30%, #16323C 0%, #0E2730 70%);
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--sh-dark);
  display: grid; place-items: center; overflow: hidden;
}
.szc-device-stage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 40% at 50% 24%, rgba(20,185,129,.18), transparent 70%);
}
.szc-device-stage > svg, .szc-device-stage > img { position: relative; width: 76%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); }

/* live status card (signature) */
.szc-livecard {
  position: absolute; right: -6px; bottom: 18px; z-index: 3;
  width: min(232px, 64%);
  background: rgba(13,30,38,.78); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r);
  padding: 16px; box-shadow: var(--sh-dark);
}
.szc-livecard .lc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.szc-livecard .lc-label { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-mut); }
.szc-livecard .lc-dot { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; color: var(--green); font-weight: 600; }
.szc-livecard .lc-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(20,185,129,.6); animation: szc-pulse 2.4s var(--ease) infinite; }
.szc-livecard .lc-pct { font-size: 2.1rem; font-weight: 600; letter-spacing: -.03em; color: #fff; line-height: 1; }
.szc-livecard .lc-pct span { font-size: 1.1rem; color: var(--on-dark-mut); }
.szc-gauge { height: 9px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; margin: 12px 0 14px; }
.szc-gauge i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--green), #2BD79A); transition: width 1.4s var(--ease); }
.szc-livecard .lc-meta { display: flex; justify-content: space-between; font-size: .7rem; color: var(--on-dark-mut); }
.szc-livecard .lc-meta b { color: var(--on-dark); font-weight: 600; }

@keyframes szc-pulse { 0% { box-shadow: 0 0 0 0 rgba(20,185,129,.55);} 70% { box-shadow: 0 0 0 9px rgba(20,185,129,0);} 100% { box-shadow: 0 0 0 0 rgba(20,185,129,0);} }
@media (prefers-reduced-motion: reduce) { .szc-livecard .lc-dot i { animation: none; } }

/* ----------------------------------- Benefits ----------------------------- */
.szc-benefits { display: grid; gap: 16px; grid-template-columns: 1fr; }
.szc-bcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.szc-bcard:hover { transform: translateY(-3px); box-shadow: var(--sh-card); border-color: #D9E4E2; }
.szc-bcard .ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 13px; background: var(--green-tint); color: var(--green-700); margin-bottom: 18px; }
.szc-bcard .ic svg { width: 24px; height: 24px; }
.szc-bcard h3 { font-size: 1.12rem; margin-bottom: 7px; }
.szc-bcard p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ----------------------------------- Steps -------------------------------- */
.szc-steps { display: grid; gap: 14px; grid-template-columns: 1fr; counter-reset: step; }
.szc-step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.szc-step:hover { transform: translateY(-3px); box-shadow: var(--sh-card); }
.szc-step .num {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff; font-family: var(--mono); font-size: .95rem; font-weight: 500;
  margin-bottom: 16px;
}
.szc-step .sic { color: var(--green); margin-bottom: 14px; }
.szc-step .sic svg { width: 26px; height: 26px; }
.szc-step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.szc-step p { margin: 0; color: var(--muted); font-size: .95rem; }
.szc-step .arrow { display: none; }

/* ----------------------------------- App showcase ------------------------- */
.szc-app { background: var(--ink); color: var(--on-dark); overflow: hidden; }
.szc-app-grid { display: grid; gap: clamp(40px, 6vw, 64px); align-items: center; }
.szc-app h2 { color: #fff; }
.szc-applist { display: grid; gap: 14px; margin: 28px 0 30px; }
.szc-applist li { display: flex; align-items: flex-start; gap: 13px; color: #D4DFDF; font-size: 1.02rem; }
.szc-applist .chk { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(20,185,129,.16); color: var(--green); margin-top: 1px; }
.szc-applist .chk svg { width: 15px; height: 15px; }
.szc-stores { display: flex; flex-wrap: wrap; gap: 12px; }
.szc-store { display: inline-flex; align-items: center; gap: 11px; padding: 11px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.03); transition: background .2s, border-color .2s; }
.szc-store:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.32); }
.szc-store svg { width: 22px; height: 22px; color: #fff; }
.szc-store small { display: block; font-size: .62rem; color: var(--on-dark-mut); line-height: 1.2; }
.szc-store b { display: block; font-size: .96rem; color: #fff; font-weight: 600; letter-spacing: -.01em; }

.szc-phones { position: relative; display: grid; place-items: center; }
.szc-phones .ph { filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }
.szc-phones .ph-main { width: min(260px, 70%); position: relative; z-index: 2; }
.szc-phones .ph-back { display: none; position: absolute; width: min(220px, 60%); z-index: 1; transform: translate(58%, 8%) rotate(6deg); opacity: .85; }

/* ----------------------------------- Comparison --------------------------- */
.szc-vs { display: grid; gap: 16px; grid-template-columns: 1fr; position: relative; }
.szc-vscard { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; background: #fff; }
.szc-vscard h3 { font-size: 1.18rem; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.szc-vscard ul { display: grid; gap: 14px; }
.szc-vscard li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; }
.szc-vscard li .mk { flex: none; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; margin-top: 1px; }
.szc-vscard li .mk svg { width: 14px; height: 14px; }

.szc-vscard.is-old { background: var(--mist); }
.szc-vscard.is-old li { color: var(--muted); }
.szc-vscard.is-old .mk { background: #FBE9E9; color: #D2554E; }
.szc-vscard.is-old h3 { color: var(--muted); }

.szc-vscard.is-new { border-color: rgba(20,185,129,.4); box-shadow: 0 10px 40px rgba(20,185,129,.1); }
.szc-vscard.is-new li .mk { background: var(--green-tint); color: var(--green-700); }
.szc-vscard.is-new h3 .brandmark { color: var(--green); display: inline-flex; }
.szc-vscard.is-new h3 .brandmark svg { width: 22px; height: 22px; }

.szc-vsbadge {
  justify-self: center; display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  border: 4px solid #fff; box-shadow: var(--sh-card); z-index: 2;
}

/* ----------------------------------- Audience ----------------------------- */
.szc-aud { display: grid; gap: 16px; grid-template-columns: 1fr; }
.szc-acard { border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; background: #fff; text-align: left; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.szc-acard:hover { transform: translateY(-3px); box-shadow: var(--sh-card); }
.szc-acard .ic { color: var(--green); margin-bottom: 16px; }
.szc-acard .ic svg { width: 34px; height: 34px; stroke-width: 1.5; }
.szc-acard h3 { font-size: 1.06rem; margin-bottom: 6px; }
.szc-acard p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ----------------------------------- Reviews ------------------------------ */
.szc-reviews { display: grid; gap: 16px; grid-template-columns: 1fr; }
.szc-rcard { border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; background: #fff; display: flex; flex-direction: column; }
.szc-stars { display: inline-flex; gap: 3px; color: var(--green); margin-bottom: 16px; }
.szc-stars svg { width: 18px; height: 18px; }
.szc-rcard blockquote { margin: 0 0 18px; font-size: 1.04rem; line-height: 1.6; color: var(--text); }
.szc-rcard .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.szc-rcard .av { width: 40px; height: 40px; border-radius: 50%; background: var(--green-tint); color: var(--green-700); display: grid; place-items: center; font-weight: 600; font-size: .95rem; flex: none; }
.szc-rcard .who b { display: block; font-size: .95rem; }
.szc-rcard .who span { font-size: .82rem; color: var(--muted); }

/* ----------------------------------- Stats -------------------------------- */
.szc-stats { background: var(--ink); color: #fff; border-top: 1px solid var(--ink-3); }
.szc-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 20px; text-align: center; }
.szc-stat .n { font-size: clamp(2.1rem, 6vw, 3rem); font-weight: 600; letter-spacing: -.03em; color: #fff; line-height: 1; }
.szc-stat .n .u { color: var(--green); }
.szc-stat .l { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mut); margin-top: 12px; }
.szc-stat--badge { display: grid; place-items: center; gap: 10px; }
.szc-stat--badge .flag { width: 46px; height: auto; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.3); }

/* ----------------------------------- Contact ------------------------------ */
.szc-contact { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.szc-contact::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(80% 120% at 85% 0%, var(--teal-700), var(--teal-900) 60%), var(--teal-900);
}
.szc-contact::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .4;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.szc-contact-grid { display: grid; gap: clamp(32px, 5vw, 56px); align-items: start; }
.szc-contact h2 { color: #fff; }
.szc-contact .szc-lead { color: rgba(255,255,255,.82); }
.szc-callback { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 9px 16px; border-radius: var(--pill); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); font-size: .88rem; font-weight: 500; }
.szc-callback svg { width: 16px; height: 16px; color: #9FF0CE; }

.szc-cinfo { display: grid; gap: 14px; margin-top: 30px; }
.szc-cinfo a, .szc-cinfo div { display: flex; align-items: center; gap: 14px; color: #fff; min-width: 0; }
.szc-cinfo b, .szc-cinfo small { overflow-wrap: anywhere; }
.szc-cinfo .ic { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); }
.szc-cinfo .ic svg { width: 20px; height: 20px; color: #fff; }
.szc-cinfo b { display: block; font-size: 1.04rem; font-weight: 600; }
.szc-cinfo small { display: block; font-size: .8rem; color: rgba(255,255,255,.7); }

/* form */
.szc-form { background: #fff; color: var(--text); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 36px); box-shadow: var(--sh-dark); }
.szc-form h3 { font-size: 1.2rem; margin-bottom: 6px; }
.szc-form .sub { color: var(--muted); font-size: .94rem; margin: 0 0 22px; }
.szc-field { margin-bottom: 16px; }
.szc-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.szc-field .req { color: var(--green-700); }
.szc-input, .szc-select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--mist); font-size: 1rem; color: var(--text); font-family: inherit;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.szc-input::placeholder { color: var(--muted-2); }
.szc-input:focus, .szc-select:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(20,185,129,.12); }
.szc-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235B6B73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 42px; }
.szc-row2 { display: grid; gap: 16px; grid-template-columns: 1fr; }

.szc-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 20px; font-size: .8rem; color: var(--muted); line-height: 1.5; }
.szc-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--green); flex: none; }
.szc-consent a { color: var(--green-700); text-decoration: underline; }

/* honeypot */
.szc-hp { display: none !important; }
.szc-formmsg { display: none; padding: 13px 16px; border-radius: var(--r-sm); font-size: .92rem; margin-top: 14px; }
.szc-formmsg.is-ok { display: block; background: var(--green-tint); color: var(--green-700); border: 1px solid rgba(20,185,129,.3); }
.szc-formmsg.is-err { display: block; background: #FBE9E9; color: #C0433C; border: 1px solid #F2C9C7; }
.szc-btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* deployment map (graphic) */
.szc-deploymap { margin-top: 30px; }
.szc-deploymap img { width: 100%; height: auto; display: block; border-radius: var(--r); }
.szc-deploymap figcaption { margin: 12px 2px 0; font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.5; }
.szc-deploymap figcaption b { color: rgba(255,255,255,.82); font-weight: 600; }

/* header custom logo (Site Identity) — keep it sized to the bar */
.szc-nav .custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.szc-nav .custom-logo { height: 34px; width: auto; max-width: 200px; }


/* ----------------------------------- FAQ ---------------------------------- */
.szc-faq { display: grid; gap: 14px; grid-template-columns: 1fr; align-content: start; }
.szc-faqitem { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.szc-faqitem.is-open { border-color: rgba(20,185,129,.35); box-shadow: var(--sh-card); }
.szc-faqq {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: 0; text-align: left;
  font-size: 1.04rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
}
.szc-faqq .pm { flex: none; position: relative; width: 22px; height: 22px; }
.szc-faqq .pm::before, .szc-faqq .pm::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; background: var(--green); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .25s var(--ease); }
.szc-faqq .pm::after { transform: translate(-50%,-50%) rotate(90deg); }
.szc-faqitem.is-open .pm::after { transform: translate(-50%,-50%) rotate(0); }
.szc-faqa { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.szc-faqitem.is-open .szc-faqa { grid-template-rows: 1fr; }
.szc-faqa > div { min-height: 0; overflow: hidden; }
.szc-faqa p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: .98rem; line-height: 1.65; }

/* ----------------------------------- Footer ------------------------------- */
.szc-footer { background: var(--ink); color: var(--on-dark-mut); padding-block: clamp(48px, 7vw, 76px) 0; }
.szc-footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.szc-footer .fbrand b { color: #fff; }
.szc-footer .fbrand .szc-flogo { height: 34px; width: auto; max-width: 220px; display: block; }
.szc-footer .fbrand p { font-size: .92rem; color: var(--on-dark-mut); max-width: 34ch; margin: 14px 0 0; line-height: 1.6; }
.szc-social { display: flex; gap: 10px; margin-top: 20px; }
.szc-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); color: var(--on-dark); transition: background .18s, color .18s, border-color .18s; }
.szc-social a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.szc-social svg { width: 18px; height: 18px; }

.szc-fcol h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 16px; font-weight: 500; }
.szc-fcol ul { display: grid; gap: 11px; }
.szc-fcol a, .szc-fcol li { font-size: .94rem; color: var(--on-dark); }
.szc-fcol a:hover { color: var(--green); }
.szc-fcol .fline { display: flex; align-items: center; gap: 10px; }
.szc-fcol .fline svg { width: 16px; height: 16px; color: var(--green); flex: none; }

.szc-fmade { border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 20px; }
.szc-fmade .row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.szc-fmade .flag { width: 30px; height: auto; border-radius: 3px; overflow: hidden; }
.szc-fmade b { color: #fff; font-size: .98rem; }
.szc-fmade p { margin: 0; font-size: .86rem; color: var(--on-dark-mut); line-height: 1.55; }

.szc-foot-bottom { margin-top: clamp(40px, 6vw, 60px); border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; font-size: .85rem; }
.szc-foot-bottom .links { display: flex; gap: 20px; }
.szc-foot-bottom a:hover { color: var(--green); }

/* ----------------------------------- Back to top -------------------------- */
.szc-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--sh-card); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, background .2s;
}
.szc-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.szc-top:hover { background: var(--green); }
.szc-top svg { width: 20px; height: 20px; }

/* ----------------------------------- Reveal anim -------------------------- */
.szc-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.szc-reveal.is-in { opacity: 1; transform: none; }
.szc-reveal-d1 { transition-delay: .08s; }
.szc-reveal-d2 { transition-delay: .16s; }
.szc-reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .szc-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .szc-gauge i { transition: none !important; }
}

/* ============================ Breakpoints ================================= */
@media (min-width: 560px) {
  .szc-benefits, .szc-aud, .szc-reviews { grid-template-columns: repeat(2, 1fr); }
  .szc-steps { grid-template-columns: repeat(2, 1fr); }
  .szc-row2 { grid-template-columns: 1fr 1fr; }
  .szc-foot-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 860px) {
  :root { --gut: 28px; }
  .szc-menu { display: flex; }
  .szc-nav-cta { display: inline-flex; }
  .szc-burger { display: none; }
  .szc-mobile { display: none; }

  .szc-hero-grid { grid-template-columns: 1.05fr .95fr; }
  .szc-app-grid { grid-template-columns: 1fr 1fr; }
  .szc-phones .ph-back { display: block; }
  .szc-contact-grid { grid-template-columns: 1fr 1.05fr; }
  .szc-faq { grid-template-columns: 1fr 1fr; gap: 14px 20px; }

  .szc-benefits, .szc-steps { grid-template-columns: repeat(4, 1fr); }
  .szc-aud { grid-template-columns: repeat(4, 1fr); }
  .szc-reviews { grid-template-columns: repeat(3, 1fr); }
  .szc-stats-grid { grid-template-columns: repeat(4, 1fr); }

  /* comparison side by side with center VS */
  .szc-vs { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
  .szc-vsbadge { align-self: center; }

  /* steps connector */
  .szc-steps { position: relative; }
  .szc-step .arrow { display: grid; place-items: center; position: absolute; top: 38px; right: -11px; width: 22px; height: 22px; color: var(--muted-2); z-index: 2; }
  .szc-step:last-child .arrow { display: none; }
  .szc-step .arrow svg { width: 18px; height: 18px; }

  .szc-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
}

@media (min-width: 1024px) {
  .szc-livecard { right: -18px; }
}

/* --------------------------- Prose (strony prawne) ------------------------ */
.szc-prose { max-width: 760px; margin-inline: auto; }
.szc-prose .szc-head { margin-bottom: clamp(20px, 3vw, 32px); }
.szc-entry { color: var(--text); font-size: 1.02rem; line-height: 1.75; }
.szc-entry > * + * { margin-top: 1.1em; }
.szc-entry h2 { font-size: 1.5rem; margin-top: 1.8em; letter-spacing: -.02em; }
.szc-entry h3 { font-size: 1.2rem; margin-top: 1.5em; }
.szc-entry a { color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; }
.szc-entry a:hover { color: var(--green); }
.szc-entry ul, .szc-entry ol { padding-left: 1.3em; display: grid; gap: .5em; }
.szc-entry li { list-style: disc; }
.szc-entry ol li { list-style: decimal; }
.szc-entry blockquote { border-left: 3px solid var(--green); padding-left: 18px; color: var(--muted); font-style: italic; }
.szc-entry img { max-width: 100%; height: auto; border-radius: var(--r-sm); }
.szc-entry code { font-family: var(--mono); font-size: .9em; background: var(--mist); padding: 2px 6px; border-radius: 6px; }
.szc-entry table { width: 100%; border-collapse: collapse; }
.szc-entry th, .szc-entry td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.szc-pagelinks { margin-top: 1.5em; display: flex; gap: 8px; }
.pagination, .nav-links { margin-top: 2em; display: flex; flex-wrap: wrap; gap: 8px; }
.pagination a, .pagination .current, .nav-links a {
  display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--text); font-weight: 500;
}
.pagination .current { background: var(--green); color: #fff; border-color: var(--green); }
.pagination a:hover, .nav-links a:hover { border-color: var(--green); color: var(--green-700); }
/* Przycisk CTA na stronie produktu — szerszy, tekst w jednej linii */
.pbuy { flex-direction: column; align-items: stretch; }
.pbuy .btn { white-space: nowrap; padding-left: 40px; padding-right: 40px; }
.pbuy .price { margin: 0 0 4px; }

