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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fb;
  --bg-card: #ffffff;
  --bg-card-hover: #f3f4f6;
  --accent: #007da6;
  --accent-light: #1294bf;
  --accent-dark: #006585;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.1);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.06);
  --gradient-accent: linear-gradient(135deg, #007da6, #00a8d6);
  --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px rgba(0, 125, 166, 0.12);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-secondary);
}
body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.page-main .section-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-main .section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.page-main .section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-main .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 125, 166, 0.3);
}
.btn-outline {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 125, 166, 0.05);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn[data-magnetic] {
  position: relative;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease;
}
.btn[data-magnetic]::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(
    circle at center,
    rgba(0, 125, 166, 0.18),
    transparent 68%
  );
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  z-index: -1;
}
.btn[data-magnetic].is-magnetic::after {
  opacity: 1;
  transform: scale(1);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  /* border-bottom: 1px solid var(--border); */
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav a:hover {
  color: var(--text-primary);
}
.nav a:hover::after {
  width: 100%;
}
.nav-dropdown {
  position: relative;
  padding: 10px 0;
}
.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: space-between;
}
.nav-dropdown > .nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.nav-dropdown:hover > .nav-link svg {
  transform: rotate(180deg);
  color: var(--accent);
}
.nav-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: -16px;
  min-width: 280px;
  display: grid;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: var(--transition);
  z-index: 1200;
}
.nav-menu .nav-menu {
    left: 100%;
    top: -9px;
}
.nav-menu .nav-dropdown {
    padding: 0;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
}
.nav-dropdown:hover > .nav-menu, .nav-dropdown:focus-within > .nav-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-menu a {
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.25;
}
.nav-menu a::after {
  display: none;
}
.nav-menu a:hover {
  background: rgba(0, 125, 166, 0.08);
  color: var(--accent-dark);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.header-phone svg {
  color: var(--accent);
}
.header-phone:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.page-main .hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 72px;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(0, 125, 166, 0.14),
      transparent 35%
    ),
    radial-gradient(circle at 85% 70%, rgba(0, 168, 214, 0.1), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}
.page-main .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 75% 75% at 50% 45%,
    black 50%,
    transparent 100%
  );
  pointer-events: none;
}
.page-main .hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 36px;
  align-items: start;
}
.page-main .hero-main {
  padding: 14px 0;
}
.page-main .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 125, 166, 0.28);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 32px rgba(0, 125, 166, 0.16);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.page-main .hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(0, 125, 166, 0.16);
  animation: heroPulse 2.2s infinite;
}
@keyframes heroPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 125, 166, 0.24);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 125, 166, 0.1);
  }
}
.page-main .hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 680px;
}
.page-main .hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-main .hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 590px;
  margin-bottom: 28px;
}
.page-main .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.page-main .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.page-main .hero-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}
.page-main .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}
.page-main .hero-stat {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.07);
}
.page-main .hero-stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: #111827;
  margin-bottom: 6px;
}
.page-main .hero-stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.35;
}
.page-main .hero-dashboard {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(
    160deg,
    rgba(17, 24, 39, 0.94),
    rgba(31, 41, 55, 0.96)
  );
  color: #f9fafb;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.34);
  padding: 26px;
  overflow: hidden;
  align-self: start;
  height: fit-content;
  margin-top: 56px;
}
.page-main .hero-dashboard::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 125, 166, 0.3), transparent 70%);
}
.page-main .hero-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.page-main .hero-dashboard-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 4px;
}
.page-main .hero-dashboard-subtitle {
  color: #9ca3af;
  font-size: 0.86rem;
}
.page-main .hero-live {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 168, 214, 0.1);
  border: 1px solid rgba(0, 168, 214, 0.28);
  white-space: nowrap;
}
.page-main .hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #007da6;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.page-main .hero-timeline {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.page-main .hero-timeline li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.84rem;
}
.page-main .hero-time {
  color: #9ca3af;
  font-weight: 500;
  min-width: 45px;
}
.page-main .hero-task {
  color: #f3f4f6;
  font-weight: 500;
}
.page-main .hero-state {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 5px 8px;
}
.page-main .hero-state-ready {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.14);
}
.page-main .hero-state-work {
  color: #38bdf8;
  background: rgba(0, 168, 214, 0.18);
}
.page-main .hero-state-queue {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.14);
}
.page-main .hero-dashboard-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.page-main .hero-mini {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
}
.page-main .hero-mini strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}
.page-main .hero-mini span {
  color: #9ca3af;
  font-size: 0.78rem;
  line-height: 1.3;
}
.page-main .hero-parallax {
  will-change: transform;
  transition: transform 220ms ease-out;
}
.page-main .hero-stat,
.page-main .hero-tag,
.page-main .hero-timeline li,
.page-main .hero-mini {
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}
.page-main .hero-stat:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
  border-color: rgba(0, 125, 166, 0.35);
}
.page-main .hero-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 125, 166, 0.35);
  color: #111827;
  box-shadow: 0 8px 16px rgba(0, 125, 166, 0.16);
}
.page-main .hero-timeline li:hover {
  border-color: rgba(0, 125, 166, 0.28);
  background: rgba(255, 255, 255, 0.08);
}
.page-main .hero-mini:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 125, 166, 0.28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

/* ===== ADVANTAGES ===== */
.advantages {
  padding: 104px 0;
  position: relative;
  background: #fff;
}
.advantages-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 28px;
}
.advantages-intro .section-title {
  margin-bottom: 14px;
}
.advantages-note {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}
.advantages-note h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.advantages-note p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.advantages-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.advantages-badge {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: rgba(0, 125, 166, 0.1);
  border: 1px solid rgba(0, 125, 166, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
}
.advantages-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.adv-kpi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.adv-kpi-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 5px;
}
.adv-kpi-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}
.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.advantage-card:hover {
  background: var(--bg-card);
  border-color: rgba(0, 125, 166, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.08);
}
.advantage-card:hover::before {
  transform: scaleX(1);
}
.advantage-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 125, 166, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}
.advantage-icon svg {
  width: 24px;
  height: 24px;
}
.advantage-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(0, 125, 166, 0.24);
  line-height: 1;
}
.advantage-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.advantage-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.07),
    transparent
  );
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
}
.services-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  align-items: center;
}
.service-filter {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  transition: var(--transition);
  cursor: pointer;
}
.service-filter:hover {
  border-color: rgba(0, 125, 166, 0.4);
  color: var(--accent-dark);
  background: rgba(0, 125, 166, 0.07);
}
.service-filter.active {
  border-color: var(--accent);
  background: rgba(0, 125, 166, 0.14);
  color: var(--accent-dark);
  box-shadow: 0 10px 20px rgba(0, 125, 166, 0.18);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  grid-column: span 4;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(0, 125, 166, 0.75),
    rgba(0, 168, 214, 0.75)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(0, 125, 166, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card[hidden] {
  display: none !important;
}
.service-card.service-focus {
  border-color: rgba(0, 125, 166, 0.45);
  box-shadow: 0 10px 30px rgba(0, 125, 166, 0.2);
  transform: translateY(-2px);
}
.service-card.featured {
  grid-column: span 6;
  background: linear-gradient(145deg, #fff, #fff7ed);
  border-color: rgba(0, 125, 166, 0.3);
}
.service-card-wide {
  grid-column: span 6;
}
.service-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(0, 125, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
}
.service-chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(0, 125, 166, 0.14);
  border: 1px solid rgba(0, 125, 166, 0.24);
  border-radius: 999px;
  padding: 5px 9px;
  white-space: nowrap;
}
.service-icon svg {
  width: 22px;
  height: 22px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-link {
  margin-top: auto;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.service-card:hover .service-link svg {
  transform: translateX(3px);
}

/* ===== BRANDS ===== */
.brands {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.brands-header {
  text-align: center;
  margin-bottom: 56px;
}
.brands-header .section-subtitle {
  margin: 0 auto;
}
.brands-track-wrapper {
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.brands-track {
  display: flex;
  gap: 24px;
  animation: scroll-brands 30s linear infinite;
  width: max-content;
}
@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-item {
  flex-shrink: 0;
  padding: 20px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition);
  user-select: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.brand-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 125, 166, 0.06);
  box-shadow: 0 4px 16px rgba(0, 125, 166, 0.12);
}

/* ===== ABOUT ===== */
.about {
  padding: 104px 0;
  background: var(--bg-secondary);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.07),
    transparent
  );
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
  margin-top: 34px;
}
.about-text {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}
.about-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 6px;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 0.94rem;
  line-height: 1.5;
}
.about-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 125, 166, 0.12);
  flex-shrink: 0;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.about-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
  transition: var(--transition);
}
.about-feature:hover {
  border-color: rgba(0, 125, 166, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 125, 166, 0.12);
}
.about-feature-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}
.about-feature-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.about-visual {
  position: relative;
  display: grid;
  gap: 14px;
}
.about-card {
  border-radius: var(--radius);
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.32);
}
.about-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #f8fafc;
}
.about-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.about-card li {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.about-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.about-chip {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
}
.about-image-placeholder {
  aspect-ratio: 16/11;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.about-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 125, 166, 0.06),
    transparent 70%
  );
}
.about-image-placeholder svg {
  width: 52px;
  height: 52px;
  color: var(--accent);
  opacity: 0.55;
}

/* ===== FAQ ===== */
.faq {
  padding: 104px 0;
  position: relative;
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.faq-aside {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}
.faq-aside .section-title {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}
.faq-aside .section-subtitle {
  margin-bottom: 18px;
}
.faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.faq-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  background: rgba(0, 125, 166, 0.1);
  border: 1px solid rgba(0, 125, 166, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
}
.faq-note {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.faq-item.active {
  border-color: rgba(0, 125, 166, 0.32);
  box-shadow: 0 8px 22px rgba(0, 125, 166, 0.12);
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--accent);
}
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: var(--transition);
}
.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* ===== CONTACT HUB ===== */
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.contacts {
  padding: 88px 0;
  position: relative;
  background: var(--bg-secondary);
}
.contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.07),
    transparent
  );
}
.contacts-head {
  text-align: center;
  margin-bottom: 30px;
}
.contacts-head .section-label {
  justify-content: center;
}
.contacts-head .section-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.contacts-head .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 0;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: rgba(0, 125, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}
.contact-info-icon svg {
  width: 22px;
  height: 22px;
}
.contact-info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-value {
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-info-value a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 8px 32px rgba(0, 0, 0, 0.06);
}
.contact-form h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 125, 166, 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--accent-dark);
  box-shadow: 0 8px 30px rgba(0, 125, 166, 0.32);
}

/* ===== SCHEDULE (Hours) ===== */
.schedule {
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.schedule h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.schedule-row:last-child {
  border-bottom: none;
}
.schedule-day {
  color: var(--text-secondary);
}
.schedule-time {
  font-weight: 500;
}
.schedule-time.closed {
  color: var(--accent-dark);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  background: #111827;
  border-top: none;
  color: #e5e7eb;
}
.footer .logo {
  color: #fff;
}
.footer .footer-brand p {
  color: #9ca3af;
}
.footer .footer-col h4 {
  color: #f3f4f6;
}
.footer .footer-links li a {
  color: #9ca3af;
}
.footer .footer-links li a:hover {
  color: var(--accent);
}
.footer .footer-contact-item {
  color: #9ca3af;
}
.footer .footer-bottom {
  color: #6b7280;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.footer-links li a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links li a:hover {
  color: var(--accent);
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
  z-index: 999;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-panel {
  width: min(420px, 100%);
  height: 100%;
  margin-left: auto;
  background: #ffffff;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(24px);
  transition: var(--transition);
}
.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.mobile-nav-close {
  padding: 8px;
  color: var(--text-primary);
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.mobile-nav-close svg {
  width: 22px;
  height: 22px;
}
.mobile-nav-body {
  padding: 14px 12px 12px;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 8px;
}
.mobile-link,
.mobile-services-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 600;
}
.mobile-link:hover,
.mobile-services-toggle:hover {
  border-color: rgba(0, 125, 166, 0.4);
  color: var(--accent-dark);
  background: rgba(0, 125, 166, 0.06);
}
.mobile-services-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.mobile-services.open > .mobile-services-toggle svg {
  transform: rotate(180deg);
  color: var(--accent-dark);
}
.mobile-submenu {
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  padding: 0 2px;
}
.mobile-services.open > .mobile-submenu {
  max-height: 460px;
  padding-top: 6px;
  padding-bottom: 2px;
}
.mobile-submenu a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 10px;
  background: #fff;
}
.mobile-submenu a:hover {
  color: var(--accent-dark);
  border-color: rgba(0, 125, 166, 0.35);
  background: rgba(0, 125, 166, 0.05);
}
.mobile-nav-foot {
  margin-top: auto;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  display: grid;
  gap: 8px;
}
.mobile-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile-quick__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-primary);
}
.mobile-quick__item.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.mobile-quick__item:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.mobile-quick__item.primary:hover {
  background: var(--accent-dark);
  color: #fff;
}
.mobile-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  text-align: center;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}


.section-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.contacts {
  padding: 42px 0 72px;
  background: var(--bg-secondary);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}
.card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.info-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
}
.info-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.info-value a:hover {
  color: var(--accent-dark);
}

.schedule {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  margin-bottom: 14px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.schedule-row:last-child {
  border-bottom: none;
}
.schedule-row span:first-child {
  color: var(--text-secondary);
}
.schedule-row .closed {
  color: var(--accent-dark);
  font-weight: 700;
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  height: 280px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  margin-bottom: 12px;
}
label {
  display: block;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: #fff;
  padding: 11px 12px;
  font: inherit;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 125, 166, 0.14);
}
.submit {
  width: 100%;
  border: 0;
  border-radius: var(--radius-xs);
  background: var(--accent);
  color: #fff;
  padding: 13px 16px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
.submit:hover {
  background: var(--accent-dark);
}

.hero-inner__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 820px;
}

.hero-inner {
  padding: 66px 0 42px;
  background: radial-gradient(
      circle at 15% 18%,
      rgba(0, 125, 166, 0.13),
      transparent 34%
    ),
    linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
  border-bottom: 1px solid var(--border);
}
.page-about .label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.hero-inner p {
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 1.06rem;
  margin-bottom: 22px;
}
.hero-inner .hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-inner .tag {
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: #334155;
}

.page-about .section {
  padding: 54px 0;
  background: var(--bg-secondary);
}
.page-about .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}
.page-about .card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.05);
}
.page-about .card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.page-about .card p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.page-about .points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.page-about .points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-size: 0.94rem;
}

.page-about .points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 125, 166, 0.12);
  margin-top: 7px;
  flex-shrink: 0;
}

.page-about .kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.page-about .kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: #fff;
}

.page-about .kpi-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  color: var(--accent-dark);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.page-about .kpi-label {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.page-about .process {
  background: linear-gradient(165deg, #0f172a, #1e293b);
  color: #e2e8f0;
}

.page-about .process h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.page-about .process ul {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.page-about .process li {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.page-about .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-about .chip {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
}

.page-about .cta {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-service .hero {
  position: relative;
  background: linear-gradient(165deg, #0a1628 0%, #0f2440 45%, #0d1f38 100%);
  overflow: hidden;
  padding: 60px 0;
}
.page-service .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 125, 166, 0.1) 1px,
    transparent 1px
  );
  background-size: 42px 42px;
  opacity: 0.5;
  pointer-events: none;
}
.page-service .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.page-service .hero-glow--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 125, 166, 0.28), transparent 70%);
  top: -200px;
  left: -80px;
  animation: heroGlow 9s ease-in-out infinite alternate;
}
.page-service .page-service .hero-glow--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.14),
    transparent 70%
  );
  bottom: -100px;
  right: -50px;
  animation: heroGlow 11s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(28px, -18px) scale(1.1);
  }
}

.page-service .hero-inner--service {
  position: relative;
  z-index: 2;
  /* padding: 112px 0 76px; */
}
.breadcrumb {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  margin-bottom: 30px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.page-service .hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 56px;
  align-items: center;
}

.page-service .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 125, 166, 0.12);
  border: 1px solid rgba(0, 125, 166, 0.28);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.page-service .hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.55);
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.8);
  }
}
.page-service .hero-badge-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: unset;
}

.page-service .hero .h-rev.h-d2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
  max-width: 580px;
}
.page-service .hero .h-rev.h-d2 .hl {
  background: linear-gradient(135deg, #38bdf8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-service .hero-desc {
  color: rgba(255, 255, 255, 0.52);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 34px;
}
.page-service .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.page-service .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 13px;
  font-size: 0.93rem;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.page-service .btn-hero.primary {
  background: linear-gradient(135deg, #007da6, #0891b2);
  color: #fff;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 0 36px rgba(0, 125, 166, 0.35),
    0 8px 22px rgba(0, 125, 166, 0.2);
}
.page-service .btn-hero.primary:hover {
  box-shadow: 0 0 56px rgba(0, 125, 166, 0.5),
    0 14px 30px rgba(0, 125, 166, 0.3);
  transform: translateY(-2px);
}
.page-service .btn-hero.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.page-service .btn-hero.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #f1f5f9;
}

.page-service .hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.page-service .hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.84rem;
  font-weight: 500;
}
.page-service .hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: rgba(56, 189, 248, 0.65);
  flex-shrink: 0;
}

/* Dashboard visual */
.page-service .hero-visual {
  position: relative;
}

.page-service .hero-dash {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(18px);
}
.page-service .hero-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-service .hero-dash-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: #e2e8f0;
}
.page-service .hero-dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.06em;
}
.page-service .hero-dash-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
  animation: heroPulse 2s ease-in-out infinite;
}

.page-service .hero-dash-rows {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.page-service .hero-dash-row {
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.page-service .hero-dash-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.page-service .hero-dash-row-label {
  font-size: 0.84rem;
  color: #94a3b8;
}
.page-service .hero-dash-row-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}
.page-service .hero-dash-row-val.g {
  color: #4ade80;
}
.page-service .hero-dash-row-val.y {
  color: #fbbf24;
}
.page-service .hero-dash-row-val.r {
  color: #f87171;
}

.page-service .hero-bar {
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.page-service .hero-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-service .hero-bar-fill.g {
  background: linear-gradient(90deg, #4ade80, #22d3ee);
}
.page-service .hero-bar-fill.y {
  background: linear-gradient(90deg, #fbbf24, #f97316);
}
.page-service .hero-bar-fill.r {
  background: linear-gradient(90deg, #f87171, #ef4444);
}

.page-service .hero-dash-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.page-service .hero-dash-kpi {
  padding: 13px;
  background: rgba(0, 125, 166, 0.09);
  border: 1px solid rgba(0, 125, 166, 0.18);
  border-radius: 11px;
  text-align: center;
}
.page-service .hero-dash-kpi strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 3px;
}
.page-service .hero-dash-kpi span {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.3;
}

/* Floating info cards */
.page-service .hero-float {
  position: absolute;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.page-service .hero-float--top {
  top: -12px;
  right: 18px;
  animation: heroFloat 5.5s ease-in-out infinite;
}
.page-service .hero-float--bot {
  bottom: -12px;
  left: -14px;
  animation: heroFloat 6.5s ease-in-out infinite reverse;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.page-service .hero-float-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-service .hero-float-ico.green {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}
.page-service .hero-float-ico.blue {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}
.page-service .hero-float-txt strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.25;
}
.page-service .hero-float-txt span {
  font-size: 0.7rem;
  color: #64748b;
}

/* Waveform (oscilloscope) */
.page-service .hero-wave {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}
.page-service .hero-wave path {
  stroke: #38bdf8;
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: heroLine 4s ease-out 0.5s forwards;
}
@keyframes heroLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Hero fade-up reveals */
.page-service .h-rev {
  opacity: 0;
  transform: translateY(26px);
  animation: heroReveal 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-service .h-d1 {
  animation-delay: 0.08s;
}
.page-service .h-d2 {
  animation-delay: 0.16s;
}
.page-service .h-d3 {
  animation-delay: 0.24s;
}
.page-service .h-d4 {
  animation-delay: 0.34s;
}
.page-service .h-d5 {
  animation-delay: 0.46s;
}
.page-service .h-d6 {
  animation-delay: 0.55s;
}
.page-service .h-d7 {
  animation-delay: 0.75s;
}

/* ===== SECTIONS (light) ===== */
.page-service .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}
.page-service .btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.page-service .btn.primary:hover {
  background: var(--accent-dark);
}
.page-service .btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.page-service .section {
  padding: 52px 0;
  background: var(--bg-soft);
}
.page-service .grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}
.page-service .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}
.page-service .card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.page-service .card p {
  color: var(--text-soft);
  font-size: 0.96rem;
  margin-bottom: 10px;
  line-height: 1.7;
}
.page-service .list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.page-service .list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #334155;
  font-size: 0.92rem;
}
.page-service .list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}
.page-service .kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.page-service .kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: #fff;
}
.page-service .kpi strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.page-service .kpi span {
  color: var(--muted);
  font-size: 0.8rem;
}

.page-service .sidebar {
  position: sticky;
  top: 96px;
}
.page-service .process {
  background: linear-gradient(165deg, #0f172a, #1e293b);
  color: #e2e8f0;
}
.page-service .process h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
.page-service .process ol {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.page-service .process li {
  color: #cbd5e1;
  font-size: 0.9rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.page-service .process li b {
  color: #7dd3fc;
  min-width: 20px;
}
.page-service .quick-info {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  display: grid;
  gap: 8px;
}
.page-service .quick-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.84rem;
  color: #cbd5e1;
}
.page-service .quick-row strong {
  color: #f8fafc;
  font-weight: 700;
}

.page-service .symptoms {
  padding: 52px 0;
  background: #fff;
}
.page-service .symptoms-head {
  margin-bottom: 18px;
}
.page-service .symptoms-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 10px;
}
.page-service .symptoms-head p {
  color: var(--text-soft);
  max-width: 760px;
}
.page-service .symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.page-service .symptom {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}
.page-service .symptom h4 {
  font-size: 0.98rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.page-service .symptom p {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.page-service .faq-wrap {
  padding: 52px 0;
  background: var(--bg-soft);
}
.page-service .faq-wrap h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.page-service .faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}
.page-service .faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.page-service .faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  padding: 16px 18px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.page-service .faq-q span:last-child {
  color: var(--muted);
  transition: var(--transition);
  font-size: 1.1rem;
  line-height: 1;
}
.page-service .faq-item.open .faq-q span:last-child {
  transform: rotate(45deg);
  color: var(--accent);
}
.page-service .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  padding: 0 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
.page-service .faq-item.open .faq-a {
  max-height: 220px;
  padding-bottom: 14px;
}

.page-service .final-cta {
  padding: 54px 0 70px;
  background: #fff;
}
.page-service .cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, #fff, #f8f9fb);
}
.page-service .cta-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 8px;
}
.page-service .cta-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}
.page-service .cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

h1 {
  font-weight: 700;
}
.logo svg {
  width: 100%;
  height: auto;
}

.error {
  color: red;
}

.form-privacy .form-check-input {
  padding: unset;
  margin: unset;
  cursor: pointer;
}
.form-privacy span {
  color: var(--text-secondary);
  font-size: 14px;
}

.cookie-warning {
  position: fixed;
  bottom: 8px;
  transform: translateX(-50%);
  left: 50%;
  display: none;
  justify-content: space-between;
  width: 100%;
  padding: 32px;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: white;
  color: rgb(0, 0, 0);
  max-width: 836px;
  box-shadow: 0 0 16px 0 rgb(0, 0, 0, 0.2);
}

.cookie-warning--active {
  display: flex;
  align-items: center;
  z-index: 1000;
}

.cookie-warning__text {
  font-size: 16px;
  line-height: 160%;
  margin-right: 30px;
  max-width: 630px;
}

.cookie-warning__text a {
  color: inherit;
}

.cookie-warning__read {
  display: block;
  margin-left: 15px;
  color: white;
  text-decoration: underline;
}

.cookie-warning__apply {
  cursor: pointer;
  padding: 8px 18px;
  background-color: var(--accent);
  border: none;
  border-radius: 4px;
  color: white;
}

.scroll-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    border: none;
    border-radius: 4px;
    background: var(--accent);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.cta .btn {
    color: white;
}
.service-link {
    cursor:pointer;
}


.hide-text--hidden .hide-text__content {
    max-height: 200px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.hide-text--hidden .hide-text__content::after {
    background: linear-gradient(0deg, rgb(255,255,255), transparent);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
}

.hide-text__button {
    padding: 0;
    border: none;
    background-color: transparent;
    display: inline-flex;
    border-bottom: 2px dashed;
}

.tpwidget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* overflow: hidden; */
    z-index: 999;
}

.tpwidget__button {
    padding: 12px;
    border: none;
    background: #43d854;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: white;
    position: relative;
}

.tpwidget__button::before,
.tpwidget__button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #43d854;
    transform-origin: center;
    transform-box: fill-box;
    animation: flyBorder1 6s linear infinite;
}

.tpwidget__button::after {
    animation: flyBorder2 3s linear infinite;
    border: 1px solid #43d854;
}

@keyframes flyBorder1 {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(2);
    }

    99% {
        opacity: 0;
    }
}

@keyframes flyBorder2 {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(2);
    }

    99% {
        opacity: 0;
    }
}

.tpwidget__button svg {
    fill: currentColor;
    color: inherit;
    animation: rotateWidgetSvg 3s linear infinite;
}

@keyframes rotateWidgetSvg {

    0%,
    100% {
        transform: scaleX(0) scaleY(0.5);
    }

    50% {
        transform: scaleX(1) scaleY(1)
    }
}

.tpwidget__button-icon--opened {
    display: none;
}

.tpwidget__button--open svg,
.tpwidget__button--open::before,
.tpwidget__button--open::after {
    animation: none;
}

.tpwidget__button--open .tpwidget__button-icon--opened {
    display: block;
    width: 24px;
    height: 24px;
}

.tpwidget__button--open .tpwidget__button-icon--closed {
    display: none;
}

.tpwidget__list {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.tpwidget__list--open {
    display: flex;
}

.tpwidget__list svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    color: white;
}

.tpwidget__list > * {
    width: 64px;
    height: 64px;
    background-color: #43d854;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-parallax,
  .hero-badge-dot,
  .hero-live-dot,
  .btn[data-magnetic] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.header-rating {
    position: relative;
    padding: 6px 12px;
    padding-left: 40px;
    float: left;
    font-weight: 600;
    text-decoration: none;
    color: black;
    font-size: 14px;
    background: rgb(0 125 166 / 8%);
    border: 1px solid rgba(0, 125, 166, 0.24);
    border-radius: 14px;
}
.header-rating:before {
    background-image: url(/assets/img/yandex.webp);
    display: block;
    content: '';
    position: absolute;
    top: 7px;
    left: 12px;
    width: 25px;
    height: 19px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain
}

.reviews {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.07), transparent);
}
.reviews-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.reviews-head .section-label { justify-content: center; }
.reviews-head .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.reviews-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.reviews-badge-wrap iframe {
  border: none;
  display: block;
  max-width: 100%;
}
.reviews-widget-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: #fff;
  min-height: 520px;
}
.reviews-widget-wrap iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: none;
  vertical-align: top;
}
.reviews-foot {
  text-align: center;
  margin-top: 20px;
}
.reviews-foot a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid transparent;
}
.reviews-foot a:hover {
  color: var(--accent);
  border-bottom-color: rgba(0,125,166,0.35);
}
   
.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(0, 125, 166, 0.2);
    border-radius: 10px;
    color: #007DA6;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.header-search-toggle:hover,
.header-search-toggle:focus-visible {
    background: #007DA6;
    color: #fff;
    border-color: #007DA6;
    outline: none;
}

.site-search[hidden] { display: none; }
.site-search {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    flex-direction: column;
}
.site-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 36, 0.55);
    animation: siteSearchFade .2s ease;
}
.site-search__panel {
    position: relative;
    background: #fff;
    padding: 20px clamp(16px, 4vw, 40px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    animation: siteSearchSlide .25s ease;
}
.site-search__form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 820px;
    margin: 0 auto;
    background: #f4f6f8;
    border: 1px solid rgba(0, 125, 166, 0.15);
    border-radius: 14px;
    padding: 6px 6px 6px 16px;
}
.site-search__form:focus-within {
    border-color: #007DA6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 125, 166, 0.15);
}
.site-search__label {
    display: inline-flex;
    color: #007DA6;
}
.site-search__input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 16px;
    color: #0f1724;
    outline: none;
}
.site-search__input::placeholder { color: #7b8794; }
.site-search__submit {
    height: 44px;
    padding: 0 20px;
    background: #007DA6;
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color .2s ease;
}
.site-search__submit:hover,
.site-search__submit:focus-visible { background: #005f80; outline: none; }
.site-search__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    color: #4a5568;
    border-radius: 10px;
    cursor: pointer;
}
.site-search__close:hover { background: rgba(0, 0, 0, 0.06); color: #0f1724; }

@media (max-width: 575.98px) {
    .site-search__panel { padding: 14px; }
    .site-search__form { padding: 4px 4px 4px 12px; gap: 6px; }
    .site-search__submit { padding: 0 14px; font-size: 14px; }
}

body.site-search-open { overflow: hidden; }

@keyframes siteSearchFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes siteSearchSlide {
    from { transform: translateY(-16px); opacity: 0 }
    to { transform: translateY(0); opacity: 1 }
}

 
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .advantages-head {
    grid-template-columns: 1fr;
  }
  .advantages-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .page-main .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-dashboard {
    max-width: 720px;
    margin-top: 0;
  }
  .service-card {
    grid-column: span 6;
  }
  .service-card.featured,
  .service-card-wide {
    grid-column: span 12;
  }
  .reviews-widget-wrap iframe { height: 640px; }
}

@media (max-width: 980px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .page-main .hero {
    padding-top: 42px;
  }
  .page-about .grid {
    grid-template-columns: 1fr;
  }
  .page-about .hero {
    padding-top: 44px;
  }
  .page-service .grid {
    grid-template-columns: 1fr;
  }
  .page-service .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-service .hero-inner--service {
    /* padding: 60px 0; */
  }
  .page-service .hero h1 {
    max-width: 100%;
  }
  .page-service .hero-float {
    display: none;
  }
  .page-service .sidebar {
    position: static;
  }
  .page-service .symptoms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-service .cta-card {
    grid-template-columns: 1fr;
  }
  .page-service .cta-actions {
    justify-content: flex-start;
  }

}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .header-phone {
    /* display: none; */
  }
  .mobile-nav {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-inner {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .page-main .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-dashboard {
    padding: 20px;
    border-radius: 18px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .services-controls {
    gap: 8px;
  }
  .service-filter {
    font-size: 0.78rem;
    padding: 8px 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card.featured,
  .service-card-wide {
    grid-column: span 1;
  }

  .about-text {
    padding: 22px;
  }
  .about-card {
    padding: 20px;
  }
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
  .advantages-kpis {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .faq-aside {
    padding: 22px;
  }
  .faq-question {
    padding: 16px 16px;
    font-size: 0.96rem;
  }
  .faq-answer-inner {
    padding: 0 16px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }
  .contacts-head .section-title {
    font-size: 1.8rem;
  }
  .logo {
    width: 94px;
  }
  .cookie-warning--active {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px;
    bottom: 0;
    padding: 16px 12px 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .cookie-warning__text {
    margin-right: 0;
    font-size: 14px;
  }

  .cookie-warning__apply {
    width: 100%;
  }
  .reviews { padding: 72px 0; }
  .reviews-widget-wrap iframe { height: 560px; }
  .header-phone svg {display:none;}
  .header-phone {flex-shrink:0;}
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .card {
    padding: 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .header-phone {
    /* display: none; */
    font-size: 14px;
    gap: 4px;
  }
  .map-wrap {
    height: 230px;
  }
  .page-about .card {
    padding: 16px;
  }
  .page-about .kpis {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .page-service .card {
    padding: 16px;
  }
  .page-service .kpis {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .page-service .symptoms-grid {
    grid-template-columns: 1fr;
  }
  .page-service .hero-inner--service {
    /* padding: 0; */
  }
  .page-service .hero-cta {
    flex-direction: column;
  }
  .page-service .btn-hero {
    justify-content: center;
  }
  .page-service .hero-trust {
    gap: 12px;
  }
  .page-service .hero-dash {
    padding: 18px;
  }
  .page-main .hero-timeline {
    padding-left: 0;
  }
  
}
@media (max-width: 480px) {
  .logo {
    width: 70px;
  }
  .header-rating {
      display: none;
  }
  .header-search-toggle {
    width: 32px;
    height: 32px;
    border: none;
    }
    
    .header-phone {
        font-size: 13px;
    }
    
    .container.header-inner {
        gap: 6px;
    }
}
