/* === ТЕХПОСТАВКА — landing styles === */

:root {
  /* core palette */
  --bg: #0c0f12;
  --bg-2: #14181c;
  --bg-3: #1a1f24;
  --card: #161b20;
  --line: #262d34;
  --line-2: #303942;
  --text: #ecedef;
  --text-2: #aab2bb;
  --muted: #6b7480;
  --teal: #00657b;
  --teal-2: #0a8aa5;
  --teal-3: #2db4cf;
  --teal-soft: rgba(0, 137, 165, 0.12);
  --amber: #f5a623;
  --amber-2: #ffc14d;
  --warn: #e25c3a;
  --ok: #4ade80;

  /* type */
  --f-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* spacing */
  --gutter: clamp(20px, 4vw, 64px);
  --maxw: 1440px;

  /* radii */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* запобігає горизонтальній прокрутці */
  width: 100%;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* === Layout === */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}

.h1 {
  font-size: clamp(40px, 6.5vw, 96px);
}

.h2 {
  font-size: 40px;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.mono {
  font-family: var(--f-mono);
}

.muted {
  color: var(--text-2);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 80ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-2);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-amber {
  background: var(--amber);
  color: #1a1209;
}

.btn-amber:hover {
  background: var(--amber-2);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
}

.icon-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='2'><path d='M3 8h10M9 4l4 4-4 4'/></svg>");
}

/* === Top bar === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 15, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  flex-shrink: 0;
}

.brand-mark img,
.brand-mark svg {
  width: 22px;
  height: auto;
  display: block;
}

.brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-tag-top {
  font-family: var(--f-mono);
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  line-height: 0.9;
  margin: 7px 0px 4px;
}

.brand-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: 24px;
}

.nav a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: color 150ms ease;
}

.nav a:hover {
  color: var(--text);
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.tel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}

/* === Hero === */
.hero {
  position: relative;
  padding: clamp(40px, 8vh, 80px) 0 clamp(60px, 10vh, 120px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(0, 137, 165, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(245, 166, 35, 0.06), transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.hero-left {
  padding-top: 40px;
}

.hero-headline {
  margin-top: 28px;
  font-size: 60px;
  line-height: 1.2;
}

.hero-headline .accent {
  color: var(--teal-3);
}

.hero-sub {
  margin-top: 28px;
  max-width: 540px;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-strip {
  margin-top: 56px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: baseline;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.hero-stat .v small {
  color: var(--teal-3);
  font-size: 0.55em;
  vertical-align: super;
}

.hero-stat .l {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
}

.hero-right {
  position: relative;
  align-self: stretch;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-3);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-readout {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(10, 13, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
}

.hero-readout .live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.06);
  }
}

.hero-readout .label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
}

.hero-readout .val {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 14px;
}

.hero-readout .price {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--teal-3);
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* === Price-check widget === */
.checkbar {
  position: relative;
  margin-top: -40px;
  z-index: 5;
}

.checkbar-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}

.checkbar-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 18px;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.checkbar-cell:last-of-type {
  border-right: none;
}

.checkbar-cell .l {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
}

.checkbar-cell select,
.checkbar-cell input {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  padding: 0;
  width: 100%;
  appearance: none;
}

.checkbar-cell select option {
  background: var(--bg);
  color: var(--text);
}

.checkbar-action {
  padding: 6px;
}

.checkbar-action .btn {
  width: 100%;
  height: 100%;
}

/* === Sections === */
section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}

.section-head .lead {
  max-width: 460px;
  color: var(--text-2);
}

/* === Categories grid (Що приймаємо) === */
.cats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.cat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}

.cat:hover {
  border-color: var(--teal-2);
  transform: translateY(-2px);
}

.cat .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.cat h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.cat p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
  margin-top: auto;
}

.cat-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text-2);
}

.tag-on {
  background: var(--teal-soft);
  color: var(--teal-3);
  border-color: rgba(45, 180, 207, 0.3);
}

.cat-w-6 {
  grid-column: span 6;
}

.cat-w-4 {
  grid-column: span 4;
}

.cat-w-3 {
  grid-column: span 3;
}

.cat-photo {
  grid-column: span 6;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background: var(--bg-3);
}

.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.cat-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7));
}

.cat-photo .cap {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.01em;
}

.cat-photo .cap span {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-3);
  margin-bottom: 6px;
}

/* === Price table === */
.priceblock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.pricetable {
  width: 100%;
  border-collapse: collapse;
}

.pricetable thead th {
  text-align: left;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.pricetable tbody td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: middle;
}

.pricetable tbody tr:last-child td {
  border-bottom: none;
}

.pricetable tbody tr:hover {
  background: var(--bg-2);
}

.pricetable .row-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.pricetable .row-marks {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.pricetable .row-price {
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-3);
  white-space: nowrap;
  text-align: right;
}

.pricetable .row-price small {
  color: var(--text-2);
  font-size: 12px;
  font-weight: 400;
}

.pricetable .row-price.no {
  color: var(--text);
}

.price-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
}

.price-note .strong {
  color: var(--text);
  font-weight: 600;
}

.price-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* === Steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
  position: relative;
}

.step:last-child {
  border-right: none;
  padding-right: 0;
}

.step:not(:first-child) {
  padding-left: 28px;
}

.step-num {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.step h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* === Why-us === */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-main {
  grid-row: span 2;
  background: var(--teal);
  color: #fff;
  padding: 48px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.why-main::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.why-main .badge {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-block;
  margin-bottom: 24px;
  width: max-content;
}

.why-main h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

.why-main p {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
}

.why-main .factory {
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.why-main .factory .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.why-main .factory .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card .glyph {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--teal-soft);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--teal-3);
  font-size: 18px;
}

.why-card h4 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.why-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* === Subscribe banner === */
.subscribe {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.subscribe::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 137, 165, 0.12), transparent 60%);
}

.subscribe-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  background: var(--bg);
  border-radius: 999px;
  border: 1px solid var(--line);
}

.subscribe-form input {
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  color: var(--text);
  padding: 12px 20px;
  font-size: 15px;
}

.subscribe-meta {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === FAQ === */
.faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.faq-q .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--text-2);
  flex-shrink: 0;
  transition: transform 200ms ease, background 200ms ease;
}

.faq-item.open .faq-q .plus {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, margin-top 280ms ease;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 16px;
}

/* === Contact === */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.contact-row:first-child {
  border-top: 1px solid var(--line);
}

.contact-row .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.contact-row .v {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.contact-row .v.small {
  font-size: 16px;
}

/* === Quote form === */
.quote-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  gap: 20px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}

.quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.quote-head .t {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.quote-head .b {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-3);
  padding: 6px 10px;
  border: 1px solid rgba(45, 180, 207, 0.3);
  background: var(--teal-soft);
  border-radius: 999px;
  white-space: nowrap;
}

.fld {
  display: grid;
  gap: 8px;
}

.fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fld .l {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fld .l .req {
  color: var(--warn);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.fld .l .hint {
  color: var(--muted);
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.fld input,
.fld select,
.fld textarea {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 150ms ease, background 150ms ease;
  appearance: none;
  width: 100%;
}

.fld input::placeholder,
.fld textarea::placeholder {
  color: var(--muted);
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  border-color: var(--teal-3);
  background: var(--bg-3);
}

.fld textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.fld select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23aab2bb' stroke-width='1.5'><path d='M3 5l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.fld select option {
  background: var(--bg);
  color: var(--text);
}

.input-wrap {
  position: relative;
}

.input-wrap .suffix {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.input-wrap input {
  padding-right: 60px;
}

/* Channels segmented */
.chans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
}

.chans label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  user-select: none;
}

.chans input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chans label:hover {
  color: var(--text);
}

.chans input:checked+.chan-pill {
  background: var(--teal);
  color: #fff;
}

.chan-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 6px;
  width: 100%;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease;
}

.chan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

/* Photo dropzone */
.drop {
  border: 1.5px dashed var(--line-2);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
  background: var(--bg);
}

.drop:hover,
.drop.dragover {
  border-color: var(--teal-3);
  background: var(--teal-soft);
}

.drop input[type=file] {
  display: none;
}

.drop .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--teal-3);
  flex-shrink: 0;
}

.drop .copy {
  display: grid;
  gap: 4px;
}

.drop .t {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.drop .s {
  font-size: 12px;
  color: var(--text-2);
}

.drop .browse {
  color: var(--teal-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb .x {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  font-size: 14px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.thumb .x:hover {
  background: var(--warn);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--teal);
}

.consent a {
  color: var(--teal-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.quote-submit .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-submit .meta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}

@media (max-width: 800px) {
  .quote-form {
    padding: 24px;
  }

  .fld-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .chans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  /* Форма заявки */
  .quote-form {
    padding: 16px;
    border-radius: 16px;
    gap: 16px;
  }

  .quote-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 16px;
  }

  .quote-head .t {
    font-size: 18px;
  }

  /* Запобігає авто-зуму на iOS при фокусі */
  .fld input,
  .fld select,
  .fld textarea {
    font-size: 16px;
  }

  /* Кнопка надіслати — на всю ширину */
  .quote-submit {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .quote-submit .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Контактна інформація — лейбл над значенням */
  .contact-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 14px 0;
  }

  .contact-row .v {
    font-size: 15px;
  }

  .contact-row .v.small {
    font-size: 14px;
  }
}

/* === Footer === */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 16px;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer ul a {
  font-size: 14px;
  color: var(--text);
}

.footer ul a:hover {
  color: var(--teal-3);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === Photo strip (between sections) === */
.photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 4px;
  height: clamp(220px, 32vw, 380px);
  width: 100%;
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-strip .ps-cell {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}

.photo-strip .ps-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0, 0.2, 1);
}

.photo-strip .ps-cell:hover img {
  transform: scale(1.05);
}

.photo-strip .ps-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.photo-strip .ps-tag {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.photo-strip .ps-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-3);
  box-shadow: 0 0 0 3px rgba(45, 180, 207, 0.25);
}

@media (max-width: 800px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .photo-strip .ps-cell {
    aspect-ratio: 4/3;
  }

  .photo-strip .ps-cell:nth-child(n+3) {
    display: none;
  }
}

.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: none;
}

/* === Responsive === */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .checkbar-inner {
    grid-template-columns: 1fr;
  }

  .checkbar-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .why {
    grid-template-columns: 1fr;
  }

  .why-main {
    grid-row: auto;
  }

  .cats {
    grid-template-columns: 1fr 1fr;
  }

  .cat-w-6,
  .cat-w-4,
  .cat-w-3,
  .cat-photo {
    grid-column: span 1;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 36px;
  }

  .step:nth-child(2) {
    padding-right: 0;
  }

  .step:not(:first-child) {
    padding-left: 0;
    padding-top: 36px;
  }

  .subscribe {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {

  .h2 {
    font-size: 28px;
  }

  .top_btn {
    display: none;
  }

  .topbar-inner {
    padding: 14px 10px;
  }

  .brand-name {
    font-size: 15px;
  }

  .cats {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pricetable thead {
    display: none;
  }

  .pricetable tbody td {
    display: block;
    padding: 8px 20px;
  }

  .pricetable tbody tr {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .pricetable tbody td {
    border: none;
  }

  .pricetable .row-price {
    text-align: left;
    white-space: normal; /* не дає ціні вилазити за екран */
    font-size: 16px;
  }

  /* таблиця не ширше екрану */
  .pricetable {
    display: block;
    width: 100%;
    overflow-x: hidden;
  }

  /* кнопки не тягнуть ширину */
  .btn {
    white-space: normal;
    word-break: break-word;
  }

  /* hero-strip статистика — перевірка на мінімальну ширину */
  .hero-strip {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-stat {
    min-width: 0;
  }

  .why-main {
    padding: 32px;
  }

  .subscribe {
    padding: 24px 20px;
    gap: 32px;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
  }

  .subscribe-form input {
    padding: 10px 12px;
    font-size: 16px; /* запобігає zoom на iOS */
  }

  .subscribe-form .btn {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .topbar-inner {
    gap: 2px;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-left {
    padding-top: 0;
  }

  .brand-tag-top {
    font-size: 7px;
  }

  .price-note {
    grid-template-columns: 1fr;
  }

}