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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0d;
  color: #ffffff;
  line-height: 1.5;
}

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

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

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 14px;
}

.topbar {
  background: rgba(0,0,0,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f4c15d;
  box-shadow: 0 0 18px rgba(244, 193, 93, 0.20);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.logo-slogan {
  font-size: 11px;
  color: #f4c15d;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.status {
  font-size: 12px;
  color: #d7d7d7;
  white-space: nowrap;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #35d16f;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(53,209,111,0.8);
}

.hero-box-section {
  padding: 18px 0 8px;
}

.hero-box {
  background: #121217;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  position: relative;
}

.hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(244,193,93,0.07);
}

.hero-visual {
  min-height: 320px;
  position: relative;
  background:
    linear-gradient(to top, rgba(0,0,0,0.90), rgba(0,0,0,0.20)),
    url('/img/hero.jpg') center center / cover no-repeat;
}

.hero-overlay {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.12) 100%);
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(244,193,93,0.16);
  border: 1px solid rgba(244,193,93,0.35);
  color: #f4c15d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 0 18px rgba(244,193,93,0.10);
}

.hero-visual h1 {
  font-size: 29px;
  line-height: 1.08;
  margin-bottom: 10px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.55);
}

.hero-slogan-main {
  font-size: 20px;
  font-weight: 900;
  color: #f4c15d;
  margin-bottom: 10px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
  letter-spacing: 0.2px;
}

.hero-visual p {
  font-size: 15px;
  color: #f1f1f1;
  max-width: 560px;
}

.hero-bottom {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #13131a 0%, #101015 100%);
}

.big-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(244,193,93,0.20);
  border-radius: 20px;
  padding: 17px 14px;
  text-align: center;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #ffffff;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.big-number::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(244,193,93,0.10) 0%, rgba(244,193,93,0.02) 45%, rgba(244,193,93,0) 70%);
  pointer-events: none;
}

.blinking-number {
  animation: blinkNumber 1.1s infinite;
}

@keyframes blinkNumber {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(244,193,93,0),
      0 10px 24px rgba(0,0,0,0.18);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.025);
    box-shadow:
      0 0 26px rgba(244,193,93,0.32),
      0 0 52px rgba(244,193,93,0.12),
      0 12px 28px rgba(0,0,0,0.26);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 0 rgba(244,193,93,0),
      0 10px 24px rgba(0,0,0,0.18);
  }
}

.phone-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #f2c65b, #d99f32);
  color: #111111;
  font-size: 18px;
  font-weight: 900;
  padding: 16px 14px;
  border-radius: 18px;
  box-shadow:
    0 10px 24px rgba(217,159,50,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.call-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(217,159,50,0.28),
    inset 0 1px 0 rgba(255,255,255,0.30);
  filter: brightness(1.03);
}

.call-btn:active {
  transform: scale(0.99);
}

.mini-note {
  font-size: 13px;
  color: #d4d4d4;
  text-align: center;
}

.section {
  padding: 28px 0;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 18px;
}

.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.reason-box {
  background: #15151a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 16px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.reason-box:hover {
  transform: translateY(-2px);
  border-color: rgba(244,193,93,0.16);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.reason-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #f4c15d;
}

.reason-box p {
  font-size: 15px;
  color: #dadada;
}

.profiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.profile-card {
  background: #141418;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
  border-color: rgba(244,193,93,0.16);
}

.profile-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #1a1a1f;
}

.profile-body {
  padding: 18px 16px 18px;
}

.profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.profile-name {
  font-size: 22px;
  font-weight: 800;
}

.profile-city {
  font-size: 13px;
  color: #f4c15d;
  font-weight: 700;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #e7e7e7;
}

.profile-text {
  font-size: 15px;
  color: #dedede;
  margin-bottom: 14px;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-call {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(90deg, #f0bb53, #d69a2c);
  color: #111111;
  box-shadow: 0 8px 20px rgba(214,154,44,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.profile-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(214,154,44,0.24);
  filter: brightness(1.03);
}

.seo-text {
  background: #111116;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 18px 16px;
  margin-top: 14px;
}

.seo-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.seo-text p {
  font-size: 15px;
  color: #d8d8d8;
  margin-bottom: 12px;
}

.seo-text p:last-child {
  margin-bottom: 0;
}

.internal-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.internal-links a {
  display: block;
  background: #15151b;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.internal-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(244,193,93,0.16);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.footer {
  padding: 28px 0 100px;
  color: #bfbfbf;
  font-size: 14px;
  text-align: center;
}

.sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: rgba(5,5,7,0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  z-index: 60;
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(90deg, #f0bb53, #d69a2c);
  color: #111111;
  font-weight: 900;
  text-align: center;
  padding: 15px 12px;
  border-radius: 18px;
  font-size: 18px;
  box-shadow:
    0 12px 26px rgba(214,154,44,0.25),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

@media (min-width: 680px) {
  .hero-visual,
  .hero-overlay {
    min-height: 380px;
  }

  .hero-visual h1 {
    font-size: 40px;
  }

  .hero-slogan-main {
    font-size: 23px;
  }

  .big-number {
    font-size: 36px;
  }

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

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