/* =========================================================
   Elektro Šimek — elektrikář Liberec
   Dark technical art direction · Space Grotesk + Inter
   ========================================================= */

:root {
  /* palette */
  --bg:        #14161A;
  --bg-2:      #181B20;
  --surface:   #1E222A;
  --surface-2: #23272F;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --accent:      #F5C518;
  --accent-2:    #FFD84D;
  --accent-deep: #C99A00;
  --accent-glow: rgba(245, 197, 24, 0.35);

  --text:  #EDEFF2;
  --muted: #9AA3AF;
  --faint: #6B7280;

  --ok: #35D07F;

  /* type */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* metrics */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 74px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--accent); color: #14161A; }
[hidden] { display: none !important; }

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

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 1000;
  background: var(--accent); color: #14161A;
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

/* ---------- typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow__tick { width: 26px; height: 1px; background: var(--accent); position: relative; }
.eyebrow__tick::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }

.section__head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
.section__desc { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.section__desc a { color: var(--accent); border-bottom: 1px solid var(--accent-glow); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--text);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform; white-space: nowrap;
}
.btn svg { flex: none; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent); color: #14161A;
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--accent-glow); }

.btn--ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--call {
  background: rgba(245, 197, 24, 0.1); color: var(--accent);
  border: 1px solid rgba(245, 197, 24, 0.35); padding: 0.65rem 1.15rem;
}
.btn--call:hover { background: var(--accent); color: #14161A; transform: translateY(-1px); }

/* ---------- pulse dot ---------- */
.pulse-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.pulse-dot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--accent); animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(3); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(20, 22, 26, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(20, 22, 26, 0.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  color: var(--accent); background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.25);
  box-shadow: inset 0 0 14px rgba(245, 197, 24, 0.12);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; }
.nav__links a {
  font-size: 0.94rem; color: var(--muted); padding: 0.5rem 0.85rem; border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease); position: relative;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav__cta { display: flex; align-items: center; gap: 0.6rem; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent;
  border: 1px solid var(--line-2); border-radius: 10px;
}
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); overflow: hidden; }

.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 75%);
  opacity: 0.6;
}
.hero__glow {
  position: absolute; z-index: 0; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, var(--accent-glow), transparent 62%);
  filter: blur(30px); opacity: 0.5; pointer-events: none;
}
.hero__circuit { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.55; }
.circuit-path {
  fill: none; stroke: var(--accent); stroke-width: 1.4; opacity: 0.5;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  filter: drop-shadow(0 0 4px var(--accent-glow));
}
.circuit-node { fill: var(--accent); opacity: 0; filter: drop-shadow(0 0 6px var(--accent-glow)); }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-2);
  padding: 0.5rem 1rem; border-radius: 999px; margin-bottom: 1.6rem;
}
.hero__badge strong { color: var(--accent); font-weight: 700; }

.hero__title { font-size: clamp(2.3rem, 5.8vw, 4.3rem); font-weight: 700; letter-spacing: -0.03em; }
.hero__title .hl { color: var(--accent); display: inline-block; }
.hero__lead { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.2rem); margin-top: 1.5rem; max-width: 40ch; }
.hero__lead strong { color: var(--text); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.hero__phone {
  display: inline-flex; flex-direction: column; margin-top: 2rem;
  padding-left: 1rem; border-left: 2px solid var(--accent); width: max-content;
  transition: transform 0.2s var(--ease);
}
.hero__phone:hover { transform: translateX(3px); }
.hero__phone-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }
.hero__phone-num { font-family: var(--font-head); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; color: var(--text); }

.hero__visual { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2); aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(1.02); }
.hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,22,26,0.55) 100%);
}
.hero__frame-line { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); animation: scanline 4s linear infinite; }
@keyframes scanline { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

.hero__stat {
  position: absolute; z-index: 2; background: rgba(30, 34, 42, 0.9);
  backdrop-filter: blur(10px); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 0.85rem 1.1rem; display: flex; flex-direction: column;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8);
}
.hero__stat--a { left: -18px; top: 22%; }
.hero__stat--b { right: -14px; bottom: 16%; }
.hero__stat-num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--accent); line-height: 1; }
.hero__stat-label { font-size: 0.76rem; color: var(--muted); margin-top: 0.2rem; }

/* =========================================================
   PROMISE STRIP
   ========================================================= */
.promise { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.promise__track { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.5rem; flex-wrap: wrap; }
.promise__item { display: flex; align-items: center; gap: 0.8rem; color: var(--muted); font-size: 0.98rem; flex: 1 1 260px; }
.promise__item svg { color: var(--accent); flex: none; }
.promise__item strong { color: var(--text); font-weight: 600; }
.promise__sep { width: 1px; height: 34px; background: var(--line); flex: none; }

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem 1.5rem; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--surface-2); }
.card:hover::before { transform: scaleX(1); }

.card__no { position: absolute; top: 1.3rem; right: 1.4rem; font-family: var(--font-head); font-size: 0.85rem; color: var(--faint); font-weight: 500; }
.card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 13px;
  color: var(--accent); background: rgba(245, 197, 24, 0.09);
  border: 1px solid rgba(245, 197, 24, 0.2); margin-bottom: 1.3rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover .card__icon { transform: translateY(-2px); box-shadow: 0 0 20px -4px var(--accent-glow); }
.card__title { font-size: 1.16rem; margin-bottom: 0.55rem; }
.card__text { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

.card--cta { background: linear-gradient(155deg, rgba(245,197,24,0.12), rgba(30,34,42,0.4)); border-color: rgba(245,197,24,0.28); display: flex; flex-direction: column; }
.card--cta .card__text { margin-bottom: 1.3rem; }
.card--cta .btn { margin-top: auto; }

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process__list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process__step { position: relative; padding-top: 4.6rem; }
.process__step::before {
  content: ""; position: absolute; top: 26px; left: 26px; right: -1.5rem; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
}
.process__step:last-child::before { display: none; }
.process__num {
  position: absolute; top: 0; left: 0; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: var(--accent); background: var(--surface); border: 1px solid rgba(245,197,24,0.3); z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-2);
}
.process__body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process__body p { color: var(--muted); font-size: 0.95rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.gallery__item--big { grid-row: span 2; grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,22,26,0.75), transparent 55%); }
.gallery__item figcaption {
  position: absolute; left: 1rem; bottom: 0.9rem; z-index: 1;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
}
.gallery__item figcaption::before { content: ""; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 8px var(--accent-glow); }

/* =========================================================
   PRICING
   ========================================================= */
.pricing__grid { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; }
.price-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  padding: 1.15rem 0.4rem; border-bottom: 1px solid var(--line);
}
.price-row__name { font-family: var(--font-head); font-weight: 500; font-size: 1.04rem; }
.price-row__note { font-family: var(--font-body); font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.price-row__dots { border-bottom: 1px dashed var(--line-2); height: 1px; align-self: center; }
.price-row__val { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 1.05rem; white-space: nowrap; }
.price-row--accent { background: rgba(245,197,24,0.06); border: 1px solid rgba(245,197,24,0.22); border-radius: 12px; padding-inline: 1.1rem; margin-top: 0.6rem; }

.pricing__cta {
  max-width: 780px; margin: 2.5rem auto 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.8rem;
}
.pricing__cta p { color: var(--muted); }
.pricing__cta strong { color: var(--text); }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 4/5; box-shadow: 0 40px 80px -35px rgba(0,0,0,0.7); }
.about__frame img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; right: -14px; bottom: 26px; background: var(--accent); color: #14161A;
  border-radius: 13px; padding: 0.8rem 1.15rem; display: flex; flex-direction: column; line-height: 1.1;
  box-shadow: 0 20px 40px -18px var(--accent-glow);
}
.about__badge-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; opacity: 0.75; }
.about__badge-val { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }

.about__content > p { color: var(--muted); margin-top: 1.1rem; }
.about__content > p strong { color: var(--text); }
.about__content .section__title { margin-top: 0.4rem; }

.about__list { margin-top: 1.6rem; display: grid; gap: 0.75rem; }
.about__list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.97rem; }
.about__list svg { color: var(--accent); flex: none; }

.about__counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.counter__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--accent); line-height: 1; }
.counter__label { font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; display: block; }

/* =========================================================
   COVERAGE
   ========================================================= */
.coverage { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.coverage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.coverage__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.6rem 0 2rem; }
.coverage__tags li {
  font-size: 0.9rem; color: var(--text); padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.02);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.coverage__tags li:hover { border-color: var(--accent); color: var(--accent); background: rgba(245,197,24,0.06); }
.coverage__frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 5/4; }
.coverage__frame img { width: 100%; height: 100%; object-fit: cover; }
.coverage__pin {
  position: absolute; left: 1rem; top: 1rem; display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(20,22,26,0.85); backdrop-filter: blur(8px); border: 1px solid var(--line-2);
  color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; padding: 0.5rem 0.9rem; border-radius: 999px;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: var(--line-2); }
.review__stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 1rem; }
.review p { font-size: 1rem; line-height: 1.65; color: var(--text); }
.review footer { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; }
.review__name { font-family: var(--font-head); font-weight: 600; }
.review__meta { font-size: 0.85rem; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq__wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq .section__head { margin-bottom: 0; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.faq__list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s var(--ease); }
.faq__item[open] { border-color: var(--line-2); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; font-family: var(--font-head);
  font-weight: 500; font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__ico { position: relative; width: 18px; height: 18px; flex: none; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq__ico::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__ico::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__ico::after { transform: scaleY(0); }
.faq__answer { padding: 0 1.4rem 1.3rem; color: var(--muted); }
.faq__answer p { max-width: 60ch; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact__info > p { color: var(--muted); }
.contact__list { display: grid; gap: 1.1rem; margin: 1.8rem 0; }
.contact__list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact__ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: var(--accent); background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.2); flex: none; }
.contact__list li > span:last-child { display: flex; flex-direction: column; padding-top: 0.1rem; }
.contact__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact__list a { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; transition: color 0.2s var(--ease); }
.contact__list a:hover { color: var(--accent); }

.contact__map { margin-top: 1.6rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.35) contrast(1.05); }
.contact__map iframe { display: block; }

.contact__form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); position: relative; }
.form__title { font-size: 1.4rem; margin-bottom: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field label { font-size: 0.86rem; color: var(--muted); margin-bottom: 0.4rem; font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.98rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 0.8rem 0.95rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,197,24,0.14); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239AA3AF' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #E5484D; }
.field__err { font-size: 0.8rem; color: #F0787B; margin-top: 0.35rem; min-height: 0; }
.form__note { font-size: 0.8rem; color: var(--faint); margin-top: 0.9rem; text-align: center; }

.form__success {
  display: flex; align-items: center; gap: 0.9rem; margin-top: 1.2rem;
  background: rgba(53, 208, 127, 0.1); border: 1px solid rgba(53,208,127,0.35);
  border-radius: 12px; padding: 1rem 1.15rem; color: var(--text);
}
.form__success svg { color: var(--ok); flex: none; }
.form__success a { color: var(--accent); font-weight: 600; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer { margin-bottom: 1rem; }
.footer__tag { color: var(--muted); font-size: 0.95rem; max-width: 34ch; margin-bottom: 1.4rem; }
.footer__col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.9rem; }
.footer__col p { color: var(--text); font-size: 0.95rem; line-height: 1.9; }
.footer__col a:hover { color: var(--accent); }
.footer__links li { line-height: 2; }
.footer__links a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--accent); }
.footer__nonstop { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-weight: 600; }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.6rem; border-top: 1px solid var(--line); }
.footer__bottom p { font-size: 0.85rem; color: var(--faint); }

/* =========================================================
   FLOATING CALL BUTTON (mobile)
   ========================================================= */
.call-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 150; display: none;
  align-items: center; gap: 0.5rem; background: var(--accent); color: #14161A;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 1.3rem; border-radius: 999px; box-shadow: 0 12px 30px -8px var(--accent-glow), 0 0 0 6px rgba(245,197,24,0.12);
  animation: fabPulse 2.6s ease-in-out infinite;
}
@keyframes fabPulse { 0%, 100% { box-shadow: 0 12px 30px -8px var(--accent-glow), 0 0 0 0 rgba(245,197,24,0.25); } 50% { box-shadow: 0 12px 30px -8px var(--accent-glow), 0 0 0 10px rgba(245,197,24,0); } }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .process__step::before { display: none; }
  .about__counters { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(20,22,26,0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.15rem, 4vw, 2.5rem) 1.6rem; gap: 0.2rem;
    transform: translateY(-140%); transition: transform 0.4s var(--ease); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 0.9rem 0.5rem; font-size: 1.05rem; border-radius: 8px; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 440px; margin-inline: auto; width: 100%; }
  .hero__frame { aspect-ratio: 16/12; }
  .hero__stat--a { left: 8px; }
  .hero__stat--b { right: 8px; }

  .faq__wrap { grid-template-columns: 1fr; }
  .faq .section__head { position: static; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin-inline: auto; width: 100%; }
  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__media { max-width: 520px; }
  .contact__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .call-fab { display: inline-flex; }
}

@media (max-width: 620px) {
  :root { --nav-h: 66px; }
  .nav__links { inset: var(--nav-h) 0 auto 0; }
  .brand__sub { display: none; }
  .nav .btn--call span { display: none; }
  .nav .btn--call { padding: 0.65rem; }

  .services__grid { grid-template-columns: 1fr; }
  .process__list { grid-template-columns: 1fr; }
  .about__counters { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--big { grid-row: span 2; grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stat { padding: 0.7rem 0.9rem; }
  .hero__stat-num { font-size: 1.3rem; }
  .pricing__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .pricing__cta .btn { width: 100%; }
  .price-row { grid-template-columns: 1fr auto; }
  .price-row__dots { display: none; }
}

@media (max-width: 380px) {
  .hero__stat--a { top: 12%; }
  .hero__actions .btn { width: 100%; }
}
