/* =========================================================
   eDestilerija — Redizajn (moderni light SaaS)
   Custom dizajn sistem, bez Bootstrap-a.
   Autor: redizajn 2026
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — eDestilerija app indigo/blue */
  --brand-50:  #eef1ff;
  --brand-100: #e0e5ff;
  --brand-200: #c7ccff;
  --brand-300: #a6adfb;
  --brand-500: #4f5af0;
  --brand-600: #3f43e0;
  --brand-700: #3333c2;
  --brand-800: #262699;

  /* Secondary accent — green leaf + amber highlights */
  --leaf:       #10b981;
  --amber:      #d97706;
  --amber-soft: #fef3c7;

  /* Ink / neutrals */
  --ink:    #0f172a;
  --slate:  #334155;
  --muted:  #64748b;
  --line:   #e6eaf0;
  --line-2: #eef2f7;

  --bg:      #ffffff;
  --bg-soft: #f6f7ff;
  --bg-deep: #14163a;

  /* Effects */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow:    0 10px 30px -12px rgba(15,23,42,.18);
  --shadow-lg: 0 30px 60px -20px rgba(38,38,153,.28);
  --ring:      0 0 0 4px rgba(79,90,240,.18);

  --maxw: 1180px;
  --gutter: 24px;
  --header-h: 74px;

  --grad: linear-gradient(135deg, var(--brand-600), var(--brand-700));
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 72px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 7px 14px; border-radius: 999px; max-width: 100%;
}
.eyebrow svg { width: 15px; height: 15px; flex: none; }
.eyebrow--dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--brand-500); box-shadow: 0 0 0 4px rgba(79,90,240,.18);
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 18px; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--muted); }

.lead { font-size: 19px; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: 12px; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 24px -10px rgba(63,67,224,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -10px rgba(63,67,224,.7); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--brand-200); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.2); }
.btn--white { background: #fff; color: var(--brand-700); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(0,0,0,.3); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
/* Header je fiksiran — guramo sadržaj ispod njega da uvek bude vidljiv */
body { padding-top: var(--header-h); }
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(15,23,42,.55);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 28px; }
.nav__logo { display: inline-flex; align-items: center; border-radius: 10px; transition: opacity .15s, transform .15s; }
.nav__logo:hover { opacity: .85; transform: translateY(-1px); }
.nav__logo img { height: 27px; width: auto; display: block; }
.nav__menu { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.nav__menu a {
  position: relative; white-space: nowrap;
  font-size: 15px; font-weight: 600; color: var(--slate);
  padding: 9px 13px; border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  border-radius: 2px; background: var(--brand-600);
  transform: scaleX(0); transform-origin: center; transition: transform .2s ease;
}
.nav__menu a:hover { color: var(--brand-700); background: var(--brand-50); }
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); }
.nav__menu a.is-active { color: var(--brand-700); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .login {
  font-weight: 700; font-size: 15px; padding: 10px 20px; border-radius: 11px;
  color: var(--brand-700); background: #fff;
  border: 1.5px solid var(--brand-200);
  transition: color .15s, background .15s, border-color .15s, box-shadow .15s, transform .15s;
}
.nav__actions .login:hover {
  color: var(--brand-800); background: var(--brand-50);
  border-color: var(--brand-300); transform: translateY(-1px);
  box-shadow: 0 8px 18px -12px rgba(51,51,194,.5);
}
.nav__burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 11px; background: #fff; align-items: center; justify-content: center;
  color: var(--ink); transition: border-color .15s, color .15s;
}
.nav__burger:hover { border-color: var(--brand-300); color: var(--brand-700); }
.nav__burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(15,23,42,.5); opacity: 0; transition: opacity .3s; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 340px);
  background: #fff; box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; padding: 22px;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__top img { height: 34px; }
.drawer__close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.drawer__menu { display: flex; flex-direction: column; gap: 2px; }
.drawer__menu a { padding: 13px 12px; border-radius: 10px; font-weight: 600; color: var(--ink); font-size: 17px; }
.drawer__menu a:hover { background: var(--brand-50); color: var(--brand-700); }
.drawer__cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 96px; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(45% 55% at 88% -5%, rgba(79,90,240,.16), transparent 60%),
    radial-gradient(40% 45% at 2% 8%, rgba(217,119,6,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-soft), #fff 78%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 60px; align-items: center; }
.hero__copy, .hero__media { min-width: 0; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); letter-spacing: -0.035em; margin-top: 22px; overflow-wrap: break-word; }
.hero h1 .hl { color: var(--brand-700); }
.hero__sub { margin-top: 22px; font-size: 19px; max-width: 560px; }
.hero__points { margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__points li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--slate); font-size: 15.5px; }
.hero__points svg { width: 20px; height: 20px; color: var(--brand-600); flex: none; }
/* eSEF / eOtpremnica integration callout */
.hero__integ {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 560px;
  padding: 15px 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100);
  box-shadow: var(--shadow-sm);
}
.hero__integ-ico {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), #b45309);
  box-shadow: 0 6px 16px -6px rgba(217,119,6,.5);
}
.hero__integ-ico svg { width: 22px; height: 22px; }
.hero__integ-txt { display: flex; flex-direction: column; gap: 2px; }
.hero__integ-txt b { color: var(--ink); font-size: 15.5px; line-height: 1.3; letter-spacing: -.01em; }
.hero__integ-txt span { color: var(--muted); font-size: 14px; line-height: 1.45; }

.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Social proof row */
.hero__proof { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__avatars { display: flex; align-items: center; }
.hero__avatars img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; background: var(--brand-50); margin-left: -10px; box-shadow: var(--shadow-sm);
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__avatars span {
  width: 40px; height: 40px; border-radius: 50%; margin-left: -10px;
  display: grid; place-items: center; font-size: 13px; font-weight: 800; color: #fff;
  background: var(--grad); border: 2px solid #fff; box-shadow: var(--shadow-sm);
}
.hero__proof-txt { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.45; }
.hero__proof-txt b { color: var(--ink); }
.hero__stars { display: flex; gap: 2px; color: var(--amber); margin-bottom: 3px; }
.hero__stars svg { width: 16px; height: 16px; }

/* Hero media: lifestyle fotografija */
.hero__media { position: relative; }
.hero__media::before {
  content: ""; position: absolute; inset: -10% -8% -14% -8%; z-index: 0;
  background: radial-gradient(50% 50% at 60% 40%, rgba(79,90,240,.22), transparent 70%);
  filter: blur(10px);
}
.hero__photo {
  position: relative; z-index: 1; margin: 0; border-radius: 24px; overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow-lg), 0 2px 10px rgba(15,23,42,.08);
  transform: perspective(1600px) rotateY(-3deg) rotateX(1.5deg);
  transition: transform .5s ease, box-shadow .5s ease;
  will-change: transform;
}
/* tanak svetli prsten oko fotografije */
.hero__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), inset 0 0 0 6px rgba(255,255,255,.08);
  pointer-events: none;
}
/* suptilni gradijent na dnu za dubinu */
.hero__photo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%; z-index: 1;
  background: linear-gradient(to top, rgba(13,18,38,.34), transparent);
  pointer-events: none;
}
.hero__photo img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 3 / 4; transform: scale(1.02); transition: transform .6s ease;
}
.hero__media:hover .hero__photo {
  transform: perspective(1600px) rotateY(0deg) rotateX(0deg);
  box-shadow: var(--shadow-lg), 0 18px 50px -18px rgba(63,67,224,.45);
}
.hero__media:hover .hero__photo img { transform: scale(1.06); }

.hero__badge {
  position: absolute; z-index: 3; background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.hero__badge--br { animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__badge .ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.hero__badge .ico svg { width: 20px; height: 20px; }
.hero__badge b { display: block; color: var(--ink); font-size: 18px; line-height: 1.1; }
.hero__badge small { color: var(--muted); font-size: 12.5px; }
.hero__badge--tl { top: 28px; left: -34px; }
.hero__badge--br { bottom: -22px; right: -28px; }

/* ---------- Trust / logos ---------- */
.trust { padding: 40px 0 8px; }
.trust__title { text-align: center; color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: .02em; margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { height: 42px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s; }
.marquee__track a:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 30px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat__num { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.stat__num span { color: var(--brand-600); }
.stat__label { margin-top: 6px; color: var(--muted); font-size: 14.5px; }

/* ---------- Problem / solution ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.panel { border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); }
.panel h3 { font-size: 22px; display: flex; align-items: center; gap: 12px; }
.panel ul { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.panel li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.panel li svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.panel--pain { background: #fff7f6; border-color: #ffe1dd; }
.panel--pain h3 { color: #b91c1c; }
.panel--pain li svg { color: #ef4444; }
.panel--gain { background: var(--brand-50); border-color: var(--brand-100); position: relative; }
.panel--gain h3 { color: var(--brand-800); }
.panel--gain li svg { color: var(--brand-600); }
.panel .tag { display:inline-block; font-size:12px; font-weight:700; padding:4px 10px; border-radius:999px; }
.panel--pain .tag { background:#fee2e2; color:#b91c1c; }
.panel--gain .tag { background:var(--brand-600); color:#fff; }

/* ---------- Modules (tabs) ---------- */
.tabs__nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.tabs__btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--slate);
  font-weight: 600; font-size: 15px; padding: 12px 18px; border-radius: 999px;
  transition: all .18s ease; box-shadow: var(--shadow-sm);
}
.tabs__btn svg { width: 19px; height: 19px; }
.tabs__btn:hover { border-color: var(--brand-200); color: var(--brand-700); }
.tabs__btn.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 12px 22px -10px rgba(63,67,224,.55); }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: fadeUp .45s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: none; } }

.module { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.module--rev .module__media { order: -1; }
.module h3 { font-size: clamp(24px, 3vw, 32px); }
.module .feat-list { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.feat { display: flex; gap: 14px; align-items: flex-start; }
.feat__ico { width: 26px; height: 26px; border-radius: 8px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feat__ico svg { width: 16px; height: 16px; }
.feat b { color: var(--ink); }
.feat p { margin-top: 3px; font-size: 15.5px; color: var(--muted); }
.module__cta { margin-top: 30px; }

.module__media { position: relative; }
.shot {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); background: #fff;
}
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #fbfcfe; }
.browser__bar i { width: 11px; height: 11px; border-radius: 50%; background: #e2e6ec; }
.browser__bar i:nth-child(1){ background:#ff6058;} .browser__bar i:nth-child(2){ background:#ffbd2e;} .browser__bar i:nth-child(3){ background:#28c840;}
.shot .browser__bar { border-bottom: 1px solid var(--line-2); }
.shot img { width: 100%; display: block; }
.shot--photo img { aspect-ratio: auto; object-fit: initial; max-height: none; width: 100%; height: auto; }
.shot--float {
  position: absolute; width: auto; max-width: 50%; max-height: 100%;
  right: -22px; bottom: -24px;
  border-radius: 14px; box-shadow: 0 24px 50px -18px rgba(15,23,42,.4);
  border: 1px solid var(--line); background: #fff;
}
.module__media .badge-soft {
  position: absolute; top: -16px; left: -16px; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; box-shadow: var(--shadow); font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 9px; font-size: 14px;
}
.module__media .badge-soft svg { width: 18px; height: 18px; color: var(--brand-600); }

/* ---------- Benefits cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-x { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s; }
.card-x:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-200); }
.card-x__ico { width: 54px; height: 54px; border-radius: 14px; background: var(--grad); color: #fff; display: grid; place-items: center; margin-bottom: 20px; }
.card-x__ico svg { width: 26px; height: 26px; }
.card-x h3 { font-size: 20px; }
.card-x p { margin-top: 12px; color: var(--muted); font-size: 15.5px; }

/* ---------- Compare (manual vs software) ---------- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vs__card { border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); background:#fff; }
.vs__card h3 { font-size: 21px; display: flex; align-items: center; gap: 10px; }
.vs__card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 13px; }
.vs__card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.vs__card li svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.vs__sum { margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--line); }
.vs__sum b { font-size: 26px; display: block; }
.vs--manual { background:#fff8f7; border-color:#ffe1dd; }
.vs--manual li svg { color:#ef4444; } .vs--manual .vs__sum b { color:#dc2626; }
.vs--app { background: var(--brand-50); border-color: var(--brand-100); }
.vs--app li svg { color: var(--brand-600); } .vs--app .vs__sum b { color: var(--brand-700); }
.vs-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 22px; }

/* Comparison table */
.cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background:#fff; }
.cmp-table th, .cmp-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-2); font-size: 15.5px; }
.cmp-table thead th { background: var(--bg-soft); color: var(--ink); font-weight: 700; }
.cmp-table thead th:nth-child(2) { color: var(--brand-700); }
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table td:not(:first-child), .cmp-table th:not(:first-child) { text-align: center; }
.cmp-table .col-app { background: rgba(79,90,240,.05); font-weight: 600; }
.cmp-yes { color: var(--brand-600); font-weight: 700; }
.cmp-no { color: #cbd5e1; }
.cmp-mid { color: var(--amber); font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background:#fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm); }
.step__n { width: 48px; height: 48px; border-radius: 14px; background: var(--brand-50); color: var(--brand-700); font-weight: 800; font-size: 22px; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 19px; } .step p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.step__line { display:none; }

/* ---------- Pricing ---------- */
.price-toggle { display: inline-flex; align-items: center; gap: 4px; background:#fff; border:1px solid var(--line); border-radius: 999px; padding: 5px; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.price-toggle button { border: 0; background: transparent; padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; color: var(--muted); }
.price-toggle button.is-active { background: var(--grad); color: #fff; }
.price-toggle .save { font-size: 12px; color: var(--brand-700); }
.price-free { text-align:center; color: var(--brand-700); font-weight: 700; margin-bottom: 40px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan { background:#fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--pop { border: 2px solid var(--brand-600); box-shadow: var(--shadow-lg); position: relative; }
.plan__pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color:#fff; font-size: 12.5px; font-weight: 700; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 20px; }
.plan__price { margin: 16px 0 6px; font-size: 42px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.plan__price span { font-size: 16px; font-weight: 600; color: var(--muted); }
.plan__desc { color: var(--muted); font-size: 15px; min-height: 44px; }
.plan .btn { margin: 22px 0; }
.plan__list { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line-2); padding-top: 22px; }
.plan__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.plan__list svg { width: 19px; height: 19px; color: var(--brand-600); flex: none; margin-top: 2px; }
.soon { font-size: 11px; background: var(--amber-soft); color: var(--amber); border-radius: 5px; padding: 1px 7px; font-weight: 700; }
.price-hide { display: none; }

/* ---------- Testimonials ---------- */
.tst { position: relative; }
.tst__viewport { overflow: hidden; }
.tst__track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tst__item { flex: 0 0 33.333%; padding: 0 12px; box-sizing: border-box; }
.tst__card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; }
.tst__stars { display:flex; gap:3px; color: var(--amber); margin-bottom: 14px; }
.tst__stars svg { width: 18px; height: 18px; }
.tst__quote { color: var(--slate); font-size: 16px; }
.tst__person { display:flex; align-items:center; gap: 13px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.tst__person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--brand-50); }
.tst__person b { color: var(--ink); display:block; font-size: 15px; }
.tst__person small { color: var(--muted); font-size: 13.5px; }
.tst__ctrl { display:flex; justify-content:center; gap: 10px; margin-top: 34px; }
.tst__ctrl button { width: 46px; height: 46px; border-radius: 50%; border:1px solid var(--line); background:#fff; display:grid; place-items:center; box-shadow: var(--shadow-sm); transition: all .18s; }
.tst__ctrl button:hover { border-color: var(--brand-300, var(--brand-200)); color: var(--brand-700); transform: translateY(-2px); }
.tst__ctrl svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.acc { border:1px solid var(--line); border-radius: var(--radius-sm); background:#fff; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.acc.is-open { box-shadow: var(--shadow); border-color: var(--brand-200); }
.acc__q { width: 100%; text-align: left; border: 0; background: transparent; padding: 20px 22px; font-weight: 700; font-size: 16.5px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc__q svg { width: 22px; height: 22px; color: var(--brand-600); flex: none; transition: transform .25s; }
.acc.is-open .acc__q svg { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc__a-inner { padding: 0 22px 22px; color: var(--muted); font-size: 15.5px; }
.acc__a-inner a { color: var(--brand-700); font-weight: 600; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact__card { background: var(--grad); color:#fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact__card h2 { color:#fff; font-size: 30px; }
.contact__card p { margin-top: 14px; color: rgba(255,255,255,.9); }
.contact__line { display:flex; align-items:center; gap: 14px; margin-top: 28px; }
.contact__line .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.16); display:grid; place-items:center; flex:none; }
.contact__line .ico svg { width: 22px; height: 22px; }
.contact__line small { display:block; color: rgba(255,255,255,.8); font-size: 13px; }
.contact__line a { font-weight: 700; font-size: 17px; }
.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 13px 15px;
  font-size: 15px; font-family: inherit; color: var(--ink); background: var(--bg-soft);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: var(--ring); background:#fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form__status {
  margin-top: 16px; padding: 13px 16px; border-radius: 11px;
  font-size: 14px; font-weight: 600; text-align: center;
  border: 1px solid transparent;
}
.form__status--success { color: #15803d; background: #f0fdf4; border-color: #bbf7d0; }
.form__status--error   { color: #b91c1c; background: #fef2f2; border-color: #fecaca; }
.form__status--loading { color: var(--brand-700); background: var(--bg-soft); border-color: var(--line); }

/* ---------- CTA banner ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; color:#fff; background: var(--bg-deep); }
.cta-band::before { content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(60% 120% at 50% -20%, rgba(79,90,240,.35), transparent 60%), radial-gradient(50% 100% at 100% 120%, rgba(217,119,6,.25), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color:#fff; font-size: clamp(26px, 4vw, 40px); }
.cta-band p { margin: 16px auto 0; max-width: 560px; color: rgba(255,255,255,.82); font-size: 18px; }
.cta-band__row { margin-top: 30px; display:flex; flex-wrap:wrap; gap: 14px; justify-content:center; }
.cta-band__chips { margin-top: 22px; display:flex; flex-wrap:wrap; gap: 10px 24px; justify-content:center; color: rgba(255,255,255,.85); font-size: 14.5px; }
.cta-band__chips span { display:flex; align-items:center; gap: 8px; }
.cta-band__chips svg { width: 18px; height: 18px; color: var(--brand-200); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 40px; margin-bottom: 18px; }
.footer__brand p { font-size: 15px; max-width: 280px; }
.footer__col h4 { color:#fff; font-size: 15px; margin-bottom: 18px; }
.footer__col a { display:block; padding: 6px 0; font-size: 15px; color: rgba(255,255,255,.7); transition: color .15s; }
.footer__col a:hover { color: var(--brand-200); }
.footer__bottom { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap: 16px; padding-top: 28px; font-size: 14px; }
.footer__social { display:flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display:grid; place-items:center; transition: background .18s; }
.footer__social a:hover { background: var(--brand-600); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; color:#fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color:#fff; border:0; display:grid; place-items:center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s; z-index: 90; }
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__copy { max-width: 660px; }
  .hero__sub { max-width: none; }
  .hero__photo { transform: none; }
  .hero__media:hover .hero__photo { transform: none; }
  .hero__media { max-width: 440px; margin: 0 auto; }
  .hero__badge--tl { left: 0; } .hero__badge--br { right: 0; }
  .module, .module--rev .module__media { grid-template-columns: 1fr; }
  .module--rev .module__media { order: 0; }
  .module__media { order: -1; margin-bottom: 8px; }
  .faq__grid, .contact { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tst__item { flex-basis: 50%; }
}
@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .nav__menu, .nav__actions .login, .nav__actions .btn { display: none; }
  .nav__burger { display: inline-flex; }
  .stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .split, .vs, .cards, .steps, .plans, .form__row { grid-template-columns: 1fr; }
  .tst__item { flex-basis: 100%; }
  .cta-band { padding: 48px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 56px; }
  .hero h1 { font-size: clamp(24px, 6.2vw, 36px); }
  .hero__sub { font-size: 17px; }
  .hero__points { gap: 8px 18px; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__photo { box-shadow: var(--shadow); }
  .hero__badge { display: none; }
  .hero__proof { gap: 12px; }
  .cmp-wrap { overflow-x: auto; }
  .cmp-table { min-width: 560px; }
  .shot--float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
