/* povezem.by — styles.css (mobile-first) */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

:root {
  --bg: #000000;
  --bg2: #f19a48;
  --card: rgba(0, 0, 0, 0.658);
  --card2: rgba(0, 0, 0, 0.96);
  --stroke: rgba(2, 3, 3, 0.08);
  --text: rgba(248, 250, 252, 0.96);
  --muted: rgba(182, 182, 182, 0.904);
  --muted2: rgb(228, 226, 226);
  --brand: #f97316;  /* оранжевый основной */
  --brand2: #f8ac56; /* светлый оранжевый */
  --accent: #facc15;
  --danger: #fb7185;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow2: 0 20px 60px rgba(0, 0, 0, 0.75);
  --radius: 16px;
  --radius2: 20px;
}

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

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

    .container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #000000e1;
  border-radius: 12px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
}

/* Navbar */
.navbar {
  position: sticky;
    top: 0;
    z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #000;
  box-shadow: none;
  overflow: hidden;
}

.brand-text {
  font-size: 16px;
}

.nav {
  display: none;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.95;
}

@media (min-width: 901px) {
  .phone-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--brand);
    border: 1px solid rgba(249, 115, 22, 0.85);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.02em;
    opacity: 1;
    white-space: nowrap;
  }

  .phone-link:hover {
    background: #ea6a0a;
    color: #fff;
  }
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
  display: inline-flex;
    flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-label span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-overlay {
    display: none;
    position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
    opacity: 0;
  transition: opacity 0.2s ease;
    pointer-events: none;
}

.nav-menu {
    list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-menu a:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  transform: none;
}

.nav-menu a.active {
  background: transparent;
  color: var(--brand2);
  border: none;
  font-weight: 700;
}

body.is-nav-open {
  overflow: hidden;
}

/* Mobile dropdown (opens under header, no off-screen panel) */
@media (max-width: 900px) {
  .nav-inner {
    position: relative;
  }

  .nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1002;
  }

  .nav-menu {
    width: 100%;
    max-height: 0;
    padding: 0 12px;
    gap: 4px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      max-height 0.22s ease,
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0.18s ease,
      padding 0.18s ease;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 10px;
    border: none;
    background: transparent;
    border-radius: 8px;
  }

  .nav-toggle:checked ~ .nav-overlay {
    display: block;
    opacity: 1;
    pointer-events: all;
    z-index: 1001;
  }

  .nav-toggle:checked ~ .nav .nav-menu {
    max-height: 420px;
    padding: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (min-width: 901px) {
  .nav {
    display: block;
  }

  .nav-toggle-label,
  .nav-overlay {
    display: none !important;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn:active {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: var(--brand);
  border-color: rgba(249, 115, 22, 0.85);
  box-shadow: none;
  color: #fff;
}

.btn-primary:hover {
  background: #ea6a0a;
  box-shadow: none;
}

/* Social / messengers */
.social-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: rgba(248, 250, 252, 0.88);
  transition: color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.icon-link:hover {
  transform: none;
  background: transparent;
  border-color: transparent;
  color: var(--brand2);
}

.icon-link__icon {
  width: 20px;
  height: 20px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  color: currentColor;
}

.icon-link__text {
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 14px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.btn-sm {
  padding: 10px 12px;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
    position: relative;
  padding: 56px 0 28px;
  overflow: hidden;
  
}

.hero--transport {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.35) 100%),
    url("heropc.jpg") center / cover no-repeat;
  background-color: #000;
}

@media (min-width: 900px) {
  .hero--transport .hero-visual {
    display: none;
  }
}

@media (max-width: 899px) {
  .hero--transport {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.88) 100%),
      url("heromob.jpg") center / cover no-repeat;
    background-color: #000;
  }

  .hero--transport .hero-visual {
    display: none;
  }
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.badge {
  display: none;
}

.hero-title {
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 14px 0 10px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.highlight {
  color: var(--brand2);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  filter: none;
}

.hero-subtitle {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.94);
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
  align-items: flex-start;
}

.hero-cta {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.hero-cta__note {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
  padding-left: 2px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: none;
  flex-shrink: 0;
}

.hero-visual {
    display: grid;
  align-items: center;
}

.truck-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow2);
    overflow: hidden;
}

.truck-card__top {
    display: flex;
    align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.truck-card__chip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.truck-card__dots {
  display: inline-flex;
  gap: 6px;
}

.truck-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
}

.truck-illustration {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.about-image--section {
  margin: 0 0 18px;
  border-radius: 0;
  overflow: hidden;
  border: none;
}

.about-image--section img {
  border-radius: 0;
  max-height: none;
  object-fit: contain;
  width: 100%;
  height: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
  width: 100%;
  max-width: 100%;
}

.gallery__item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  min-width: 0;
  width: 100%;
}

.gallery__item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  min-width: 0;
}

.gallery__item--wide {
  grid-column: 1 / -1;
}

.gallery__item--wide img {
  aspect-ratio: 16 / 7;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

.truck-body {
  position: absolute;
  width: 240px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #facc15);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
  transform: translateX(-14px);
}

.truck-cabin {
  position: absolute;
  width: 86px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateX(110px) translateY(8px);
}

.truck-window {
  position: absolute;
  width: 34px;
  height: 22px;
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.55);
  transform: translateX(126px) translateY(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.truck-wheel {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.35);
}

.truck-wheel--a {
  transform: translateX(-70px) translateY(48px);
}

.truck-wheel--b {
  transform: translateX(80px) translateY(48px);
}

.truck-shadow {
  position: absolute;
  width: 280px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  filter: blur(10px);
  transform: translateY(66px);
}

.truck-card__bottom {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini__k {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2px;
}

.mini__v {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 900px) {
  .hero {
    padding: 78px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 36px;
  }

  .hero-title {
    font-size: 48px;
  }

  .truck-illustration {
    min-height: 220px;
  }
}

/* Sections */
.section {
  padding: 44px 0;
}

.section--muted {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.section-subtitle--left {
  text-align: left;
}

.section-subtitle a {
  color: var(--brand2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-subtitle a:hover {
  color: var(--accent);
}

.section-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Cards / grids */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.card {
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  box-shadow: none;
  transition: none;
}

.card:hover {
  transform: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}

.card-icon {
  display: none;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 900px) {
  .pricing {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .section-title {
    font-size: 30px;
  }
}

.price-card {
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.price-card::before {
  display: none;
}

.price-card > * {
  position: relative;
}

.price-card--featured {
  border-color: rgba(249, 115, 22, 0.55);
  border-top-width: 2px;
  background: transparent;
}

.price-badge {
  display: none;
}

.price-title {
  margin: 0 0 4px;
  font-size: 18px;
}

.price-meta {
  margin: 0 0 12px;
  color: var(--muted2);
}

.price-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.price-list li {
  margin: 8px 0;
}

/* Page hero */
.page-hero {
  padding: 44px 0 18px;
  background: transparent;
}

.page-hero__inner {
  display: grid;
  gap: 16px;
}

.page-title {
  margin: 10px 0 8px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.page-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero__card {
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0 0;
  box-shadow: none;
}

@media (min-width: 900px) {
  .page-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 18px;
  }
}

/* Split */
.split {
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 18px;
  }
}

/* Note / callout */
.note {
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0 0;
  box-shadow: none;
}

.note h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.note p {
  margin: 0 0 12px;
  color: var(--muted);
}

.note-foot {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.callout {
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
}

.callout--big {
  padding: 0;
}

.callout__title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.callout__phone {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.callout__note {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.small-muted {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* Lists */
.steps {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps li {
  margin: 10px 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checklist li::before {
  content: "–";
  width: auto;
  height: auto;
  flex: 0 0 auto;
  display: inline;
  place-items: unset;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--brand2);
  font-weight: 700;
  line-height: 1.4;
}

.fineprint {
  margin-top: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.fineprint p {
  margin: 0;
}

/* Footer */
.footer {
  padding: 26px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
    gap: 18px;
  }
}

.footer-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.18s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-note {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* Back to top */
.fab-top {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1100;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 12px;
  background: var(--brand);
  border: 1px solid rgba(249, 115, 22, 0.85);
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fab-top[hidden] {
  display: none;
}

.fab-top:hover {
  background: #ea6a0a;
}

.fab-top__arrow {
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg) translateY(2px);
}

/* Reveal animation (triggered by JS) */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    }
}

.developed-links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 18px;
}

.developed-links > a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  font-size: 13px;
}

.developed-links > a:hover,
.developed-links > a:active,
.developed-links > a:focus {
  transform: none !important;
  background: transparent !important;
  border-color: transparent !important;
  color: rgba(255, 255, 255, 0.75) !important;
  box-shadow: none !important;
}

/* Contact form */
.lead-form {
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 0;
  box-shadow: none;
  display: grid;
  gap: 14px;
}

.lead-form--wide {
  padding: 18px 0 0;
}

#lead-form {
  scroll-margin-top: 88px;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .lead-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .field--full {
    grid-column: 1 / -1;
  }

  .lead-form--wide {
    padding: 18px 0 0;
  }
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.field__hint {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
}

.field__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(248, 250, 252, 0.96);
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

select.field__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.7' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field__input option {
  color: #111;
}

.field__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field__input:focus {
  border-color: rgba(249, 115, 22, 0.65);
  box-shadow: none;
}

.field__textarea {
  resize: vertical;
  min-height: 110px;
}

.lead-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  margin: 0;
  font-size: 14px;
}

.form-status--ok {
  color: #86efac;
}

.form-status--error {
  color: #fda4af;
}

.form-status--pending {
  color: rgba(255, 255, 255, 0.72);
}

/* SEO / GEO blocks */
.geo-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.geo-list li {
  display: inline;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  font-size: inherit;
  color: inherit;
}

.geo-list li:not(:last-child)::after {
  content: " · ";
  color: rgba(255, 255, 255, 0.35);
}

.seo-text {
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
  line-height: 1.6;
}

.seo-text strong {
  color: rgba(248, 250, 252, 0.92);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  font-weight: 650;
  color: rgba(248, 250, 252, 0.95);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 75ch;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hide duplicate nav phone button — keep text phone link */
.nav-cta .btn {
  display: none;
}

.stats {
  display: none;
}
