.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.font-manrope {
  font-family: "Manrope", sans-serif;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.btn-radius-12 {
  border-radius: 12px !important;
}

.bg-grid-pattern {
  background-image: radial-gradient(circle, #e2dfde 1px, transparent 1px);
  background-size: 40px 40px;
}

.image-high-quality {
  image-rendering: auto;
  filter: contrast(1.1) saturate(0.78) brightness(0.9) hue-rotate(-8deg);
}

.hero-section {
  position: relative;
  min-height: 921px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  gap: 4rem;
}

.hero-copy {
  z-index: 10;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: #eeeeee;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #af101a;
  animation: pulse 2s infinite;
}

.hero-pill-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  color: #af101a;
}

.hero-description {
  margin: 0 0 2.5rem;
  max-width: 38rem;
  color: #5f5e5e;
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #af101a, #d32f2f);
  box-shadow: 0 14px 28px rgba(175, 16, 26, 0.28);
}

.hero-button-primary-icon {
  transition: transform 0.2s ease;
}

.hero-button-primary:hover .hero-button-primary-icon {
  transform: translateX(4px);
}

.hero-button-secondary {
  padding: 1rem 2rem;
  font-weight: 700;
  color: #1a1c1c;
  background: #fff;
  border: 1px solid rgba(228, 190, 186, 0.35);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.hero-button-secondary:hover {
  background: #f3f3f3;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.hero-stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
}

.hero-stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  color: #5f5e5e;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(228, 190, 186, 0.4);
}

.hero-visual {
  position: relative;
  display: none;
}

.hero-glow-primary,
.hero-glow-tertiary {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(56px);
}

.hero-glow-primary {
  top: -6rem;
  right: -6rem;
  background: rgba(175, 16, 26, 0.1);
}

.hero-glow-tertiary {
  bottom: -6rem;
  left: -6rem;
  background: rgba(0, 95, 123, 0.1);
}

.hero-image-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(26, 28, 28, 0.2), transparent);
}

.services-section {
  padding: 8rem 0;
  background: #f9f9f9;
}

.services-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
}

.services-heading {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

.services-heading-left {
  max-width: 42rem;
}

.services-kicker {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #af101a;
}

.services-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.services-description {
  margin: 0;
  max-width: 22rem;
  color: #5f5e5e;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid transparent;
  transition: 0.45s ease;
}

.service-card:hover {
  border-color: rgba(211, 47, 47, 0.2);
  box-shadow: 0 22px 44px rgba(175, 16, 26, 0.06);
}

.service-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: 0.3s ease;
}

.service-icon {
  color: #af101a;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: #af101a;
}

.service-card:hover .service-icon {
  color: #fff;
}

.service-title {
  margin: 0 0 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #5f5e5e;
}

.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.floating-action {
  height: 2.45rem;
  border-radius: 9999px;
  padding: 0 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 24, 27, 0.2);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.floating-action .material-symbols-outlined {
  font-size: 1rem;
}

.floating-action:hover {
  transform: translateY(-1px);
}

.floating-action-chat {
  background: linear-gradient(135deg, #0088cc, #0ea5e9);
}

.floating-action-top {
  border: 0;
  cursor: pointer;
  background: #27272a;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-action-top .material-symbols-outlined {
  font-size: 0.9rem;
}

.floating-telegram-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.floating-action-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(4px);
  transition: opacity 650ms ease, transform 650ms ease, filter 650ms ease;
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (min-width: 768px) {
  .services-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

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

}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero-visual {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}
