/* ===========================================================
   Prodigi inštalacije — spletna stran (osnutek)
   Design: po vzoru ponudba.prodigi-instalacije.si
   Vsebina/struktura: prodigi-instalacije.si
   =========================================================== */

:root {
  --navy: #0e2a44;
  --navy-soft: #173a5a;
  --blue: #1e6fb8;
  --blue-bright: #2e97e6;
  --blue-tint: #eaf3fb;
  --ink: #20313f;
  --muted: #5d6b7a;
  --line: #e4eaf0;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --gold: #c9a23a;
  --ok: #2ea36b;
  --shadow-sm: 0 2px 10px rgba(14, 42, 68, .06);
  --shadow-md: 0 10px 30px rgba(14, 42, 68, .10);
  --shadow-lg: 0 24px 60px rgba(14, 42, 68, .16);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { color: var(--muted); }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-bright); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 52px; }
.section-head.center { text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-weight: 700; font-size: .98rem; padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s var(--ease);
  font-family: inherit; line-height: 1; white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(30, 111, 184, .28); }
.btn--primary:hover { background: var(--blue-bright); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30, 111, 184, .36); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(255,255,255,.0); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--navy); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .3s var(--ease); padding: 13px 0;
  background: rgba(255,255,255,.93); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header.solid { background: rgba(255,255,255,.98); box-shadow: var(--shadow-sm); padding: 8px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: -.02em; flex-shrink: 0; }
.brand img { height: 54px; width: auto; max-width: none; display: block; transition: height .3s var(--ease); }
.header.solid .brand img { height: 46px; }
.brand--footer { display: inline-flex; background: #fff; padding: 12px 18px; border-radius: 12px; flex-shrink: 0; }
.brand--footer img { height: 44px; width: auto; max-width: none; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .88rem; padding: 9px 11px; border-radius: 8px;
  transition: all .2s var(--ease); white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-tint); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 7px; font-size: .95rem; white-space: nowrap; }
.nav-phone:hover { color: var(--blue); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all .3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; padding: 120px 0 60px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(11,30,49,.92) 0%, rgba(11,30,49,.72) 45%, rgba(11,30,49,.35) 100%);
}
.hero__inner { max-width: 680px; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--blue-bright); }
.hero p { color: rgba(255,255,255,.9); font-size: 1.18rem; max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 28px; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-size: 1.6rem; color: #fff; font-weight: 800; }
.hero__trust small { color: rgba(255,255,255,.75); font-size: .82rem; letter-spacing: .02em; }

/* ---------- Stats bar ---------- */
.stats { background: var(--navy); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 0; }
.stat { text-align: center; color: #fff; }
.stat b { display: block; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue-bright); }
.stat span { font-size: .9rem; color: rgba(255,255,255,.78); }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .ico {
  width: 52px; height: 52px; border-radius: 12px; background: var(--blue-tint); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 18px;
}
.svc-card .ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 9px; }
.svc-card p { font-size: .94rem; margin-bottom: 16px; }
.svc-card .more { font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card .more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.about__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: 18px; left: 18px; background: #fff; border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.about__badge b { font-size: 1.6rem; color: var(--blue); }
.about__badge span { font-size: .82rem; color: var(--muted); line-height: 1.3; }
.checks { margin-top: 22px; display: grid; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 600; }
.checks li svg { width: 22px; height: 22px; min-width: 22px; color: var(--ok); flex-shrink: 0; margin-top: 2px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { text-align: center; padding: 20px; position: relative; }
.step .num {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--blue-tint); color: var(--blue); font-weight: 800; font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { font-size: .95rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: #fff; font-weight: 700; font-size: .95rem;
  background: linear-gradient(to top, rgba(11,30,49,.85), transparent);
}

/* ---------- Before / After ---------- */
.ba { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.ba__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.ba__img img { width: 100%; display: block; }
.ba__tags { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; }
.ba__tags span { position: absolute; bottom: 16px; background: rgba(11,30,49,.85); color: #fff; font-weight: 700; font-size: .78rem; padding: 7px 16px; border-radius: 999px; letter-spacing: .05em; text-transform: uppercase; }
.ba__tags .b { left: 16px; }
.ba__tags .a { right: 16px; background: var(--blue); }

/* ---------- Brands / references ---------- */
.brands { overflow: hidden; }
.brands__track { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; justify-content: center; }
.brand-chip {
  font-weight: 800; font-size: 1.3rem; color: var(--navy); opacity: .55; letter-spacing: .02em;
  filter: grayscale(1); transition: all .3s var(--ease); padding: 10px 4px;
}
.brand-chip:hover { opacity: 1; filter: grayscale(0); color: var(--blue); }
.brands__track img.brand-logo { height: 46px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: all .3s var(--ease); }
.brands__track img.brand-logo:hover { filter: none; opacity: 1; }
@media (max-width: 760px) { .brands__track { gap: 36px 40px; } .brands__track img.brand-logo { height: 38px; } }
.placeholder-note {
  display: inline-block; font-size: .74rem; color: var(--blue); background: var(--blue-tint);
  border: 1px dashed var(--blue); border-radius: 6px; padding: 3px 9px; font-weight: 700; letter-spacing: .02em;
}

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.tst .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.tst p { color: var(--ink); font-size: .98rem; font-style: italic; }
.tst .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst .av { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; font-weight: 800; }
.tst .who b { display: block; color: var(--navy); font-size: .95rem; }
.tst .who span { font-size: .82rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.contact__info { display: grid; gap: 22px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-item .ico { width: 46px; height: 46px; border-radius: 11px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.ci-item .ico svg { width: 22px; height: 22px; }
.ci-item b { display: block; color: var(--navy); margin-bottom: 2px; }
.ci-item a, .ci-item span { color: var(--muted); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; 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-weight: 700; font-size: .85rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .96rem; color: var(--ink); background: #fff; transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 110px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.consent input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-soft)); color: #fff; border-radius: var(--radius); padding: clamp(40px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -40%; right: -10%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(46,151,230,.35), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 540px; margin: 14px auto 28px; position: relative; }
.cta-band .hero__cta { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 64px 0 28px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer ul { display: grid; gap: 9px; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; }
.footer__cw {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 14px 16px; margin-top: 8px;
}
.footer__cw .seal { width: 46px; height: 46px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), #e6c976); display: grid; place-items: center; color: #4a3a05; font-weight: 800; font-size: .7rem; text-align: center; line-height: 1.05; flex-shrink: 0; }
.footer__cw small { color: rgba(255,255,255,.8); font-size: .8rem; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__bottom a { color: rgba(255,255,255,.6); }

/* ---------- Sub-page hero ---------- */
.page-hero {
  background: linear-gradient(115deg, var(--navy), var(--navy-soft)); color: #fff; padding: 150px 0 64px; position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; bottom: -50%; left: -5%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(46,151,230,.25), transparent 70%); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .crumb { font-size: .88rem; color: rgba(255,255,255,.7); position: relative; }
.page-hero .crumb a { color: rgba(255,255,255,.85); }
.page-hero p { color: rgba(255,255,255,.88); max-width: 600px; margin-top: 8px; position: relative; }

/* ---------- Article / content layout ---------- */
.content { display: grid; grid-template-columns: 1.7fr 1fr; gap: 50px; align-items: start; }
.prose h2 { margin: 0 0 18px; }
.prose h3 { margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; font-size: 1.05rem; }
.prose ul.bul { display: grid; gap: 11px; margin: 18px 0 24px; }
.prose ul.bul li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.prose ul.bul li svg { width: 21px; height: 21px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.prose .lead { font-size: 1.18rem; color: var(--ink); font-weight: 600; }
.prose .callout { background: var(--blue-tint); border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 26px 0; color: var(--navy); font-weight: 600; }
.content__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 24px; aspect-ratio: 4/3; }
.content__media img { width: 100%; height: 100%; object-fit: cover; }
.aside-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 100px; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.aside-card .ci-item { margin-bottom: 14px; }
.aside-card .btn { width: 100%; margin-top: 8px; }

/* ---------- Image placeholder ---------- */
.imgph {
  width: 100%; height: 100%; min-height: 220px; display: grid; place-items: center; text-align: center;
  background: repeating-linear-gradient(45deg, #eef3f8, #eef3f8 12px, #e7eef5 12px, #e7eef5 24px);
  color: var(--blue); font-weight: 700; font-size: .85rem; padding: 20px;
}
.imgph span { background: rgba(255,255,255,.8); padding: 6px 12px; border-radius: 6px; border: 1px dashed var(--blue); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200; max-width: 560px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 20px 22px; display: none; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; animation: cookieUp .4s var(--ease); }
@keyframes cookieUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie p { font-size: .86rem; flex: 1 1 280px; margin: 0; }
.cookie p a { font-weight: 700; }
.cookie .actions { display: flex; gap: 10px; }
.cookie .btn { padding: 10px 18px; font-size: .85rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Chatbot widget ---------- */
.pchat { position: fixed; right: 18px; bottom: 18px; z-index: 250; }
.pchat__toggle {
  display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff;
  border: 0; cursor: pointer; font-family: inherit; font-weight: 700; font-size: .95rem;
  padding: 14px 20px; border-radius: 999px; box-shadow: var(--shadow-md); transition: all .25s var(--ease);
}
.pchat__toggle::before { content: '💬'; font-size: 1.1rem; }
.pchat__toggle:hover { background: var(--blue-bright); transform: translateY(-2px); }
.pchat__toggle.hidden { display: none; }
.pchat__panel {
  display: none; flex-direction: column; width: min(360px, calc(100vw - 36px)); height: min(540px, calc(100vh - 120px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
}
.pchat__panel.open { display: flex; animation: cookieUp .3s var(--ease); }
.pchat__head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--navy); color: #fff; padding: 14px 16px; font-weight: 800;
}
.pchat__close { background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 4px; }
.pchat__body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-alt); }
.pchat__msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.5; }
.pchat__msg--bot { background: #fff; border: 1px solid var(--line); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.pchat__msg--user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.pchat__quick { display: flex; flex-wrap: wrap; gap: 8px; }
.pchat__chip {
  background: #fff; border: 1.5px solid var(--line); color: var(--blue); font-family: inherit; font-weight: 700;
  font-size: .82rem; padding: 8px 13px; border-radius: 999px; cursor: pointer; transition: all .2s var(--ease);
}
.pchat__chip:hover { border-color: var(--blue); background: var(--blue-tint); }
.pchat__cta { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); }
.pchat__btn { flex: 1; text-align: center; font-weight: 700; font-size: .82rem; padding: 10px 8px; border-radius: var(--radius-sm); }
.pchat__btn--call { background: var(--blue); color: #fff; }
.pchat__btn--call:hover { background: var(--blue-bright); color: #fff; }
.pchat__btn--form { background: var(--blue-tint); color: var(--blue); }
.pchat__foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.pchat__input { flex: 1; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: inherit; font-size: .92rem; }
.pchat__input:focus { outline: none; border-color: var(--blue); }
.pchat__send { background: var(--blue); color: #fff; border: 0; font-family: inherit; font-weight: 700; font-size: .88rem; padding: 0 16px; border-radius: var(--radius-sm); cursor: pointer; }
.pchat__send:hover { background: var(--blue-bright); }
@media (max-width: 760px) {
  .pchat { right: 12px; bottom: 12px; }
  .pchat__toggle { padding: 12px 16px; font-size: .88rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about, .contact, .content, .ba { grid-template-columns: 1fr; gap: 36px; }
  .aside-card { position: static; }
  .stats .grid { grid-template-columns: repeat(3, 1fr); gap: 26px 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery, .tst-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .btn--primary { display: none; }
  .nav-phone { font-size: 0; gap: 0; padding: 8px; color: var(--blue); }
  .nav-phone svg { width: 24px; height: 24px; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: 16px; left: 16px;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px; gap: 2px; margin-top: 8px;
  }
  .nav-links.open a { color: var(--navy); width: 100%; padding: 12px 14px; }
  .steps { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero__trust { gap: 22px; }
}
@media (max-width: 520px) {
  .svc-grid, .gallery, .tst-grid { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; }
  body { font-size: 16px; }
}
