:root {
  --bg: #090909;
  --panel: #151515;
  --panel2: #1c1c1c;
  --yellow: #ffd400;
  --yellow2: #ffb900;
  --green: #57d464;
  --blue: #5ec7ff;
  --red: #ff784f;
  --pink: #ff7a91;
  --text: #ffffff;
  --soft: rgba(255, 255, 255, 0.62);
  --muted: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 212, 0, 0.24);
  --line2: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.6);
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 75% 5%, rgba(255, 212, 0, 0.15), transparent 28%),
    radial-gradient(
      circle at 15% 72%,
      rgba(255, 212, 0, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #0c0c0c 0%, #070707 45%, #030303 100%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.noise,
.grid-bg,
.yellow-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.noise {
  z-index: 0;
  opacity: 0.11;
  background-image: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.3) 0 1px,
    transparent 1px
  );
  background-size: 18px 18px;
}

.grid-bg {
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 212, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.14) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.yellow-glow {
  z-index: 0;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.38;
}

.glow-a {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 30%;
  background: var(--yellow);
  animation: glowMove 9s ease-in-out infinite;
}

.glow-b {
  width: 520px;
  height: 520px;
  right: -220px;
  top: -120px;
  background: var(--yellow);
  animation: glowMove 12s ease-in-out infinite reverse;
}

.header {
  position: fixed;
  z-index: 50;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  transition: 0.28s ease;
}

.header.scrolled {
  top: 8px;
  background: rgba(8, 8, 8, 0.92);
}

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

.logo-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--yellow);
  color: #070707;
  font-size: 25px;
  font-weight: 950;
  box-shadow: 0 0 42px rgba(255, 212, 0, 0.28);
}

.logo b,
.logo small {
  display: block;
}

.logo b {
  font-size: 22px;
  line-height: 1;
}

.logo small {
  margin-top: 4px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

.nav a {
  transition: 0.24s ease;
}

.nav a:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.download-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--yellow);
  color: #090909;
  font-weight: 950;
  box-shadow: 0 18px 55px rgba(255, 212, 0, 0.28);
  transition: 0.28s ease;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 72px rgba(255, 212, 0, 0.38);
}

.burger {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.08);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--yellow);
  border-radius: 99px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  place-items: center;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  display: grid;
}

.mobile-menu a {
  display: block;
  margin: 15px 0;
  text-align: center;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero,
.section,
.final-section,
.footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 76px;
  align-items: center;
  padding: 140px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.12);
  border: 1px solid var(--line);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(56px, 8.4vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  max-width: 840px;
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-content p,
.section-head p,
.final-card p {
  max-width: 670px;
  margin-top: 26px;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.btn {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  transition: 0.28s ease;
}

.btn-primary {
  background: var(--yellow);
  color: #080808;
  box-shadow: 0 26px 78px rgba(255, 212, 0, 0.26);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-4px);
}

.hero-stats {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.hero-stats div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--yellow);
  font-size: 32px;
}

.hero-stats span {
  margin-top: 5px;
  color: var(--soft);
}

.hero-phone {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: min(392px, 88vw);
  min-height: 760px;
  overflow: hidden;
  padding: 24px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 212, 0, 0.16), transparent 35%),
    linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotateY(-7deg) rotateX(4deg);
}

.phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 212, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.1) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.18;
}

.phone > * {
  position: relative;
  z-index: 2;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  margin-bottom: 38px;
}

.app-title p {
  color: var(--soft);
  font-size: 15px;
}

.app-title h3 {
  margin-top: 5px;
  font-size: 35px;
  letter-spacing: -0.05em;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.mini-stats div {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.mini-stats span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 212, 0, 0.18);
  color: var(--yellow);
  font-size: 23px;
}

.mini-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 26px;
}

.mini-stats small {
  display: block;
  color: var(--soft);
}

.help-card {
  min-height: 170px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: var(--yellow);
  color: #080808;
  box-shadow: 0 24px 70px rgba(255, 212, 0, 0.3);
}

.help-card h4 {
  font-size: 30px;
  letter-spacing: -0.05em;
}

.help-card p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.45;
}

.help-card button {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #080808;
  color: var(--yellow);
  font-weight: 950;
}

.help-card > span {
  font-size: 74px;
}

.app-section-label {
  margin-top: 42px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.announcement-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.announcement-list article {
  min-height: 112px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.announcement-list article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 212, 0, 0.16);
  font-size: 24px;
}

.announcement-list h5 {
  font-size: 17px;
}

.announcement-list p {
  margin-top: 5px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.35;
}

.announcement-list b {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.16);
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-nav {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(20, 20, 20, 0.94);
  border-top: 1px solid var(--line);
}

.phone-nav span {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 20px;
}

.phone-nav small {
  display: block;
  margin-top: -12px;
  font-size: 10px;
}

.phone-nav .active {
  color: var(--yellow);
}

.float-card {
  position: absolute;
  z-index: 8;
  width: 168px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.float-card b,
.float-card span {
  display: block;
}

.float-card b {
  color: var(--yellow);
  font-size: 18px;
}

.float-card span {
  margin-top: 6px;
  color: var(--soft);
  line-height: 1.35;
}

.card-one {
  left: -10px;
  top: 17%;
}

.card-two {
  right: -10px;
  bottom: 19%;
  animation-delay: -2s;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 212, 0, 0.04);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 56px;
  padding: 24px 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  color: rgba(255, 212, 0, 0.22);
  font-size: 42px;
  font-weight: 1000;
  letter-spacing: -0.05em;
}

.section,
.final-section {
  padding: 108px 0;
}

.section-head {
  margin-bottom: 54px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 310px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.32s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 212, 0, 0.08);
}

.service-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 24px;
  font-size: 34px;
}

.service-icon.danger {
  background: rgba(255, 120, 79, 0.13);
  color: var(--red);
}

.service-icon.blue {
  background: rgba(94, 199, 255, 0.12);
  color: var(--blue);
}

.service-icon.green {
  background: rgba(87, 212, 100, 0.12);
  color: var(--green);
}

.service-icon.pink {
  background: rgba(255, 122, 145, 0.12);
  color: var(--pink);
}

.service-icon.amber {
  background: rgba(255, 212, 0, 0.12);
  color: var(--yellow);
}

.service-card h3 {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin-top: 12px;
  color: var(--soft);
  line-height: 1.6;
}

.request-layout,
.profile-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.inner-phone {
  min-height: 680px;
  transform: none;
}

.screen-title {
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.screen-sub {
  margin-top: 8px;
  color: var(--soft);
}

.empty-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-state div {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.16);
  color: var(--yellow);
  font-size: 50px;
  margin-bottom: 22px;
}

.empty-state h4 {
  font-size: 26px;
}

.empty-state p {
  max-width: 220px;
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.5;
}

.fab {
  position: absolute;
  right: 24px;
  bottom: 106px;
  z-index: 6;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 22px;
  background: var(--yellow);
  color: #080808;
  font-size: 34px;
  font-weight: 800;
  box-shadow: 0 20px 60px rgba(255, 212, 0, 0.35);
}

.request-copy {
  display: grid;
  gap: 18px;
}

.workflow-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.workflow-card span {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.workflow-card h3 {
  margin-top: 12px;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.workflow-card p {
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.6;
}

.map-board {
  padding: 28px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.map-top h3 {
  font-size: 36px;
  letter-spacing: -0.055em;
}

.map-top p {
  margin-top: 5px;
  color: var(--soft);
}

.map-top > span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.14);
  border: 1px solid var(--line);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-top i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.filter-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 22px;
  padding-bottom: 8px;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-row button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  font-weight: 800;
}

.filter-row .active {
  background: var(--yellow);
  color: #080808;
}

.city-map {
  position: relative;
  height: 560px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 212, 0, 0.17) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 212, 0, 0.17) 2px, transparent 2px),
    linear-gradient(135deg, #121212, #080808);
  background-size: 80px 80px;
}

.district {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 212, 0, 0.07);
  border: 1px solid rgba(255, 212, 0, 0.08);
  color: rgba(255, 212, 0, 0.12);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.d1 {
  left: 54%;
  top: 8%;
  width: 22%;
  height: 20%;
}
.d2 {
  left: 12%;
  top: 35%;
  width: 16%;
  height: 28%;
}
.d3 {
  left: 36%;
  top: 43%;
  width: 30%;
  height: 20%;
}
.d4 {
  left: 70%;
  top: 40%;
  width: 20%;
  height: 31%;
}
.d5 {
  left: 48%;
  top: 70%;
  width: 32%;
  height: 19%;
}

.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid currentColor;
  box-shadow: 0 0 28px currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}

.pin.road {
  color: var(--red);
}
.pin.water {
  color: var(--blue);
}
.pin.safety {
  color: var(--pink);
}
.pin.park {
  color: #55d9c7;
}
.pin.green {
  color: var(--green);
}

.issue-list {
  margin-top: 24px;
}

.issue-head {
  display: flex;
  justify-content: space-between;
  color: var(--soft);
  margin-bottom: 14px;
  text-transform: lowercase;
}

.issue-head span {
  color: var(--soft);
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.issue-list article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.issue-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(94, 199, 255, 0.12);
  color: var(--blue);
  font-size: 26px;
}

.issue-list h4 {
  font-size: 20px;
}

.issue-list p {
  margin-top: 6px;
  color: var(--soft);
}

.issue-list b {
  display: inline-flex;
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 122, 145, 0.14);
  color: var(--pink);
  font-size: 11px;
}

.issue-list button {
  width: 58px;
  height: 68px;
  border-radius: 16px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
  font-weight: 900;
}

.issue-list button span {
  display: block;
}

.profile-card,
.profile-copy,
.final-card {
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.profile-card {
  padding: 34px;
  text-align: center;
}

.avatar {
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 5px solid var(--yellow);
  background: rgba(255, 212, 0, 0.14);
  color: var(--yellow);
  font-size: 50px;
  font-weight: 950;
}

.profile-card h3 {
  font-size: 30px;
}

.profile-card > p {
  color: var(--soft);
  margin-top: 6px;
}

.profile-form-preview {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.profile-form-preview div {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  font-size: 22px;
}

.profile-card button {
  width: 100%;
  min-height: 70px;
  margin-top: 28px;
  border: 0;
  border-radius: 22px;
  background: var(--yellow);
  color: #070707;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 22px 70px rgba(255, 212, 0, 0.28);
}

.profile-copy {
  padding: 34px;
}

.profile-copy h3 {
  font-size: 38px;
  letter-spacing: -0.055em;
}

.profile-copy > p {
  margin-top: 14px;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.65;
}

.mini-feature {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  margin-top: 26px;
}

.mini-feature span {
  color: var(--yellow);
}

.mini-feature b {
  font-size: 20px;
}

.mini-feature p {
  margin-top: 6px;
  color: var(--soft);
  line-height: 1.55;
}

.final-card {
  padding: clamp(36px, 7vw, 88px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 0, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.045);
}

.final-card h2,
.final-card p {
  margin-left: auto;
  margin-right: auto;
}

.final-card .btn {
  margin-top: 34px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 48px 0 70px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer b {
  color: var(--text);
  font-size: 24px;
}

.footer p {
  margin-top: 8px;
}

.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a:hover {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(34px, 26px, 0) scale(1.08);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }
}

@media (max-width: 1080px) {
  .nav,
  .download-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .hero,
  .request-layout,
  .profile-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-phone {
    min-height: auto;
  }

  .phone {
    transform: none;
  }
}

@media (max-width: 720px) {
  .header {
    width: calc(100% - 22px);
  }

  .logo span:last-child {
    display: none;
  }

  .hero,
  .section,
  .final-section,
  .footer {
    width: calc(100% - 34px);
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 39px;
  }

  .hero-content p,
  .section-head p,
  .final-card p {
    font-size: 17px;
  }

  .hero-stats,
  .service-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .phone {
    min-height: 740px;
  }

  .float-card {
    display: none;
  }

  .help-card {
    align-items: flex-start;
  }

  .help-card > span {
    font-size: 48px;
  }

  .map-top,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .city-map {
    height: 440px;
  }

  .issue-list article {
    grid-template-columns: 54px 1fr;
  }

  .issue-list button {
    grid-column: 1 / -1;
    width: 100%;
    height: 48px;
  }

  .profile-form-preview div {
    font-size: 18px;
  }
}
