/* ==================== WebDigital - Main Styles ==================== */
/* Файл: css/styles.css */

/* ==================== RESET & CSS VARIABLES ==================== */

:root {
  /* Hero секция */
  --hero-bg: #ffffff;
  --hero-bg2: #f6f8fc;
  --hero-text: #0f172a;
  --hero-muted: rgba(15,23,42,.72);
  --hero-stroke: rgba(15,23,42,.12);
  --hero-shadow: 0 26px 70px rgba(15,23,42,.10);
  --hero-radius: 18px;
  --hero-blue: #1d9bf0;
  --hero-blue2: #2f7cff;

  /* Общие переменные */
  --brand: #268CF6;
  --brand-deep: #1f76d6;
  --brand-light: #E6F3FE;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --heading-gradient-black-blue: linear-gradient(90deg, #0f172a 0%, #114a86 55%, #268cf6 100%);
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(36, 142, 245, 0.3);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
}

/* Design pages: section headings should be dark -> noble violet */
.page-design,
.page-website-design,
.page-website-redesign,
.page-ux-ui-design {
  --heading-gradient-black-blue: linear-gradient(90deg, #0f172a 0%, #2a1f54 55%, #5b46a6 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* ==================== UTILITIES ==================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  z-index: 9999;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ==================== GLOBAL HEADING GRADIENT ==================== */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .services-title,
  .stages-title,
  .landing-services-block .headline h2,
  .preimslick__head h2,
  .landing-pricing__head h2,
  .landing-types-packages__head h2,
  .landing-calc__head h2,
  .landing-calc .landing-calc__head h2,
  .landing-steps__head h2,
  .landing-snake__head h2,
  .landing-advantages__head h2,
  .landing-process-wide__head h2,
  .landing-faq__head h2,
  .service-card h2,
  .service-prices h2,
  .service-works h2,
  .service-cta h2 {
    background-image: var(--heading-gradient-black-blue) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
  }
}

/* ==================== INFO BAR ==================== */
.info-bar {
  background: linear-gradient(90deg,
    rgba(38, 140, 246, 0.03) 0%,
    rgba(38, 140, 246, 0.08) 25%,
    rgba(94, 179, 255, 0.1) 50%,
    rgba(38, 140, 246, 0.08) 75%,
    rgba(38, 140, 246, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: shimmer-bg 8s ease infinite;
  padding: 14px 0;
  border-bottom: 1px solid rgba(38, 140, 246, 0.1);
  position: relative;
  overflow: hidden;
}

@keyframes shimmer-bg {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.info-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: info-shine 4s ease-in-out infinite;
}

@keyframes info-shine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.info-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: pulse-glow 2s infinite, float-badge 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.35);
  position: relative;
}

.info-badge::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53, #ffcc00);
  z-index: -1;
  opacity: 0;
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 107, 0.35); }
  50% { box-shadow: 0 4px 25px rgba(255, 107, 107, 0.5); }
}

.info-text {
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
}

.info-text::before {
  content: "✨";
  margin-right: 8px;
  animation: sparkle 1.5s ease infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.info-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(38, 140, 246, 0.08);
}

.info-link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.3s ease;
}

.info-link:hover {
  background: rgba(38, 140, 246, 0.15);
  color: var(--brand-deep);
}

.info-link:hover::after {
  transform: translateX(4px);
}

/* ==================== HEADER ==================== */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.05),
    0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
  isolation: isolate;
}

.site-header:hover {
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

/* Logo */
.logo {
  font-size: 34px;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 50%, var(--brand-deep) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #5eb3ff);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.logo:hover {
  background-position: 100% 50%;
  transform: scale(1.03);
}

.logo:hover::after {
  width: 100%;
}

/* ==================== BURGER MENU ==================== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--brand);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==================== NAVIGATION ==================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand);
  background: var(--brand-light);
}

/* Mobile Nav */
.mobile-nav-header {
  display: none;
}

.nav-accordion {
  display: none;
}

/* ==================== HEADER CONTACT ==================== */
.header-contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-phone {
  text-decoration: none;
  color: var(--brand);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.2px;
  white-space: nowrap;
  transition: var(--transition);
}

.contact-phone:hover {
  color: var(--brand-deep);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
}

.contact-email a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-email a:hover {
  color: var(--brand);
}

/* ==================== HEADER ACTIONS ==================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn-consultation {
  background: linear-gradient(135deg, var(--brand) 0%, #4da3f7 50%, var(--brand-deep) 100%);
  background-size: 200% 200%;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow:
    0 8px 20px rgba(38, 140, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-consultation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn-consultation:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow:
    0 14px 32px rgba(38, 140, 246, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-consultation:hover::before {
  left: 100%;
}

.social-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  text-decoration: none;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-btn i {
  font-size: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-btn--telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 50%, #1E8ED3 100%);
  background-size: 200% 200%;
}

.social-btn--viber {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
  background-size: 200% 200%;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  background-position: 100% 50%;
}

.social-btn:hover::before {
  opacity: 1;
}

.social-btn:hover i {
  transform: scale(1.15);
}

/* ==================== MEGA MENU ==================== */
.mega-menu-wrapper {
  background: linear-gradient(135deg, #0a2a4a 0%, var(--brand) 50%, var(--brand-deep) 100%);
  background-size: 200% 200%;
  box-shadow:
    0 4px 30px rgba(38, 140, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 99;
  overflow: visible;
}

.mega-menu-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 20% 50%, rgba(94, 179, 255, 0.15), transparent),
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.mega-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.mega-item {
  position: static;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.mega-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.mega-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #5eb3ff, transparent);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.mega-link i {
  font-size: 18px;
  opacity: 0.85;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.mega-link span {
  position: relative;
  z-index: 1;
}

.mega-item > .mega-link:focus-visible::before,
.mega-item.is-open .mega-link::before {
  opacity: 1;
}

.mega-item > .mega-link:focus-visible::after,
.mega-item.is-open .mega-link::after {
  transform: translateX(-50%) scaleX(1);
}

.mega-item > .mega-link:focus-visible i,
.mega-item.is-open .mega-link i {
  transform: scale(1.2) rotate(-8deg);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

/* Mega Panel */
.mega-panel {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,252,255,0.98) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow:
    0 25px 80px rgba(15, 23, 42, 0.15),
    0 10px 30px rgba(38, 140, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px) scale(0.98);
  padding: 50px 0;
  border-top: 2px solid rgba(38, 140, 246, 0.1);
  transition:
    opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
}

@media (max-width: 1280px) {
  .mega-panel {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-item > .mega-link:focus-visible + .mega-panel,
.mega-item.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

@media (hover: hover) {
  .mega-item:hover .mega-link::before {
    opacity: 1;
  }

  .mega-item:hover .mega-link::after {
    transform: translateX(-50%) scaleX(1);
  }

  .mega-item:hover .mega-link i {
    transform: scale(1.2) rotate(-8deg);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
  }

  .mega-item:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.panel-column-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand);
  margin-bottom: 25px;
  display: block;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panel-list li {
  margin-bottom: 12px;
}

.panel-list a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 14px;
  margin: 0 -14px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.panel-list a::before {
  content: '→';
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--brand);
  transform: translateX(-5px);
}

.panel-list a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--brand), #5eb3ff);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.panel-list a:hover {
  color: var(--brand);
  gap: 10px;
  background: rgba(38, 140, 246, 0.06);
}

.panel-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.panel-list a:hover::after {
  height: 60%;
}

.featured-box {
  background: var(--brand-light);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(36, 142, 245, 0.1);
}

.featured-box .panel-column-title {
  color: var(--text-primary);
}

.featured-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}

.featured-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.featured-link:hover {
  text-decoration: underline;
}

.tech-icons {
  display: flex;
  gap: 14px;
  font-size: 20px;
  color: var(--brand);
  opacity: 0.55;
  margin-top: 14px;
  align-items: center;
}

/* ==================== HERO SECTION ==================== */
.hero-light {
  position: relative;
  background:
    radial-gradient(800px 420px at 14% 20%, rgba(29,155,240,.10), transparent 60%),
    radial-gradient(700px 380px at 86% 78%, rgba(47,124,255,.10), transparent 62%),
    linear-gradient(180deg, var(--hero-bg), var(--hero-bg2));
  padding: clamp(28px, 4vw, 56px) 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  max-height: 720px;
}

.hero-honey {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.honey-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-shell { 
  position: relative; 
  z-index: 2;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.2vw, 26px);
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 3;
}

.hero-panel {
  position: relative;
  max-width: 760px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 22px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 60px rgba(15,23,42,.08);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.32));
  pointer-events: none;
}

.hero-panel > * { 
  position: relative; 
  z-index: 1; 
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(15,23,42,.75);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(38, 140, 246, 0.15);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(250,252,255,0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 15px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-weight: 600;
  animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero-h1 {
  margin: 14px 0 10px;
  font-weight: 800;
  letter-spacing: -0.9px;
  line-height: 1.06;
  color: var(--hero-text);
  font-size: clamp(36px, 4.6vw, 58px);
}

.hero-h1-accent {
  display: inline-block;
  background: linear-gradient(90deg, var(--hero-blue), var(--hero-blue2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 18px;
  color: var(--hero-muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.6;
  max-width: 64ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--hero-blue) 0%, #4da3f7 50%, var(--hero-blue2) 100%);
  background-size: 200% 200%;
  border-color: rgba(29,155,240,.25);
  box-shadow:
    0 12px 35px rgba(29,155,240,.25),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.hero-btn--primary:hover {
  transform: translateY(-4px);
  background-position: 100% 50%;
  box-shadow:
    0 18px 50px rgba(29,155,240,.32),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.hero-btn--primary:hover::before {
  left: 100%;
}

.hero-btn--ghost {
  color: rgba(15,23,42,.9);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.hero-btn--ghost::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-btn--ghost:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.95);
  border-color: rgba(38, 140, 246, 0.2);
  box-shadow: 0 8px 25px rgba(38, 140, 246, 0.1);
}

.hero-btn--ghost:hover::after {
  transform: translateX(4px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 14px 0 8px;
  color: rgba(15,23,42,.75);
  font-size: 14px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,0.06);
  transition: all 0.3s ease;
  font-weight: 600;
}

.hero-point:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15,23,42,0.08);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-badge {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(38,140,246,.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(250,252,255,0.75));
  color: rgba(15,23,42,.8);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(15,23,42,0.04);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  border-color: rgba(38,140,246,.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(38,140,246,0.1);
}

/* Hero Page Variant (без canvas) */
.hero-light--page {
  min-height: 480px;
  max-height: none;
  padding: clamp(40px, 5vw, 80px) 0;
}

/* Hero Price */
.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 20px 0;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--brand);
  border-radius: 12px;
  width: fit-content;
}

.hero-price-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-price-value {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--brand);
}

/* Hero Features List */
.hero-features {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-features li {
  position: relative;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
}

.hero-features li strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-features li span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Hero Image Frame */
.hero-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--hero-shadow);
  width: min(1400px, 100%);
  max-width: 1400px;
}

.hero-image {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ==================== MEDIA FRAME (VIDEO) ==================== */
.media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--hero-shadow);
  width: 100%;
  aspect-ratio: 2 / 1;
  isolation: isolate;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: -64px;
  border-radius: 34px;
  background:
    conic-gradient(
      from 180deg,
      rgba(120, 70, 255, .55),
      rgba(29, 155, 240, .55),
      rgba(0, 217, 255, .42),
      rgba(165, 80, 255, .52),
      rgba(120, 70, 255, .55)
    );
  filter: blur(46px);
  opacity: .22;
  pointer-events: none;
  z-index: 0;
  animation: neonSpin 14s linear infinite;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(120,70,255,.70), rgba(29,155,240,.55), rgba(0,217,255,.35), rgba(255,255,255,0));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .32;
  pointer-events: none;
  z-index: 4;
}

@keyframes neonSpin {
  0%{ transform: rotate(0deg); filter: blur(28px) hue-rotate(0deg); }
  50%{ transform: rotate(180deg); filter: blur(30px) hue-rotate(18deg); }
  100%{ transform: rotate(360deg); filter: blur(28px) hue-rotate(0deg); }
}

.media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
  z-index: 1;
  opacity: 0;
  transition: opacity .28s ease;
  will-change: opacity;
}

.media-video.is-active { 
  opacity: 1; 
  z-index: 2; 
}

.media-glow {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(55% 45% at 70% 30%, rgba(29,155,240,.20), transparent 60%),
    radial-gradient(60% 55% at 25% 70%, rgba(47,124,255,.14), transparent 62%);
}

/* Clear Canvas Button */
.clear-canvas-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 5;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #a8c232;
  background: #C0DE3D;
  color: #1a2e05;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .2s ease;
  box-shadow: 0 4px 20px rgba(192, 222, 61, 0.35);
}

.clear-canvas-btn:hover {
  background: #b3d22f;
  box-shadow: 0 6px 25px rgba(192, 222, 61, 0.5);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: linear-gradient(180deg, #fafcff 0%, #ffffff 50%, #f8fafc 100%);
  padding: 90px 0 30px;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #5eb3ff 25%, var(--brand-deep) 50%, #5eb3ff 75%, var(--brand) 100%);
  background-size: 200% 100%;
  animation: gradient-flow 4s linear infinite;
}

@keyframes gradient-flow {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background:
    radial-gradient(ellipse 800px 400px at 10% 90%, rgba(38, 140, 246, 0.04), transparent),
    radial-gradient(ellipse 600px 300px at 90% 20%, rgba(94, 179, 255, 0.03), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.footer-brand-web {
  background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand-digital {
  color: var(--text-primary);
}

.footer-description {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 380px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, #4da3f7 50%, var(--brand-deep) 100%);
  background-size: 200% 200%;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 30px;
  border-radius: 14px;
  box-shadow:
    0 10px 30px rgba(38, 140, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.footer-cta::after {
  content: "→";
  transition: transform 0.3s ease;
}

.footer-cta:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow:
    0 16px 40px rgba(38, 140, 246, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.footer-cta:hover::before {
  left: 100%;
}

.footer-cta:hover::after {
  transform: translateX(4px);
}

.footer-column-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 14px;
  letter-spacing: -0.3px;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #5eb3ff);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 14px 0;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 4px 0;
}

.footer-links a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: var(--brand);
}

.footer-links a:hover {
  color: var(--brand);
  gap: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.contact-row i {
  color: var(--brand);
  font-size: 18px;
  margin-top: 3px;
  opacity: 0.95;
}

.contact-row a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-row a:hover {
  color: var(--brand);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social-pill {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 2px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--brand), #5eb3ff, var(--brand-deep)) border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.social-pill i {
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-pill:hover {
  background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 100%);
  transform: translateY(-4px) scale(1.05);
  color: white;
  box-shadow: 0 10px 25px rgba(38, 140, 246, 0.3);
}

.social-pill:hover i {
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom-right {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .main-nav {
    gap: 15px;
  }

  .nav-list {
    gap: 15px;
  }

  .nav-link {
    font-size: 13px;
    padding: 6px;
  }

  .mega-menu {
    gap: 20px;
  }

  .mega-link {
    padding: 20px 15px;
    font-size: 15px;
  }
}

/* ==================== MOBILE (≤1024px) ==================== */
@media (max-width: 1024px) {
  .burger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }

  body.nav-open .burger {
    opacity: 0;
    pointer-events: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    box-shadow:
      -20px 0 60px rgba(15, 23, 42, 0.15),
      -5px 0 20px rgba(38, 140, 246, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s ease;
    z-index: 999;
    gap: 0;
    border-left: none;
    border-radius: 28px 0 0 28px;
    overflow: hidden;
    transform: translateX(110%);
    visibility: hidden;
  }

  .main-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand) 0%, #5eb3ff 50%, var(--brand-deep) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .main-nav.active {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav.active::before {
    opacity: 1;
  }

  .mobile-nav-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: linear-gradient(135deg, rgba(38, 140, 246, 0.05), rgba(94, 179, 255, 0.03));
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(38, 140, 246, 0.1);
  }

  .mobile-logo {
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    line-height: 1;
  }

  .mobile-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 8px;
    text-decoration: none;
    color: var(--brand);
    font-weight: 700;
    font-size: clamp(10px, 3.0vw, 15px);
    text-align: center;
  }

  .mobile-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, rgba(38, 140, 246, 0.1), rgba(94, 179, 255, 0.08));
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
  }

  .mobile-close:hover {
    background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 100%);
    color: white;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(38, 140, 246, 0.3);
  }

  .nav-list {
    display: none;
  }

  .nav-accordion {
    display: block;
    width: 100%;
    padding: 8px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .accordion-group {
    border-radius: 14px;
    margin-bottom: 8px;
    background: linear-gradient(165deg, #ffffff 0%, #fafcff 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  }

  .accordion-group:hover {
    border-color: rgba(38, 140, 246, 0.15);
    box-shadow: 0 4px 15px rgba(38, 140, 246, 0.08);
  }

  .accordion-trigger {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    gap: 12px;
  }

  .accordion-trigger:hover {
    background: linear-gradient(135deg, rgba(38, 140, 246, 0.06), rgba(94, 179, 255, 0.04));
  }

  .accordion-trigger.active {
    background: linear-gradient(135deg, rgba(38, 140, 246, 0.08), rgba(94, 179, 255, 0.05));
  }

  .accordion-trigger.active .accordion-text {
    color: var(--brand);
    font-weight: 700;
  }

  .accordion-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 100%);
    color: white;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(38, 140, 246, 0.25);
  }

  .accordion-trigger:hover .accordion-icon {
    transform: scale(1.05) rotate(-3deg);
  }

  .accordion-trigger.active .accordion-icon {
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  }

  .accordion-text {
    flex: 1;
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .accordion-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(38, 140, 246, 0.08);
    color: var(--brand);
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .accordion-trigger.active .accordion-arrow {
    transform: rotate(90deg);
    background: var(--brand);
    color: white;
  }

  .accordion-content {
    display: none;
    background: linear-gradient(180deg, rgba(38, 140, 246, 0.03), transparent);
    padding: 0 8px 8px;
  }

  .accordion-content.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .accordion-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 12px 58px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    position: relative;
  }

  .accordion-content a::before {
    content: "";
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(38, 140, 246, 0.3);
    transition: all 0.3s ease;
  }

  .accordion-content a:hover {
    background: rgba(38, 140, 246, 0.08);
    color: var(--brand);
    padding-left: 62px;
  }

  .accordion-content a:hover::before {
    background: var(--brand);
    transform: translateY(-50%) scale(1.3);
  }

  .accordion-content .accordion-arrow {
    width: 22px;
    height: 22px;
    font-size: 10px;
    background: transparent;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .accordion-content a:hover .accordion-arrow {
    opacity: 1;
    transform: translateX(4px);
  }

  .contact-info {
    display: none;
  }

  .header-container {
    gap: 12px;
  }

  .header-contact {
    margin-left: auto;
    min-width: 0;
    gap: 8px;
  }

  .header-actions {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .social-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .btn-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    min-height: 44px;
    font-size: 12px;
    line-height: 1;
  }

  .mega-menu-wrapper {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding: 50px 0 20px;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: center;
  }

  .media-frame {
    aspect-ratio: 16 / 9;
  }

  .hero-light {
    min-height: 480px;
    max-height: none;
  }

  .hero-light--page {
    padding: clamp(32px, 4vw, 60px) 0;
  }

  .hero-image-frame {
    width: min(1400px, 100%);
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-price {
    margin: 16px 0;
    padding: 14px 18px;
  }

  .hero-features {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .header-container {
    gap: 10px;
  }

  .header-contact {
    gap: 6px;
  }

  .logo {
    font-size: 26px;
  }

  .info-content {
    font-size: 12px;
    text-align: center;
  }

  .info-badge {
    font-size: 10px;
    padding: 3px 10px;
  }

  .site-header {
    padding: 15px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }

  .mega-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }

  .nav-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 23, 42, 0.7);
  }

  .social-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
  }

  .social-btn i {
    font-size: 15px;
  }

  .footer-brand {
    font-size: 28px;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .hero-shell { 
    width: min(1400px, calc(100% - 28px)); 
  }
  
  .media-frame { 
    aspect-ratio: 4 / 3; 
  }
  
  .hero-light {
    min-height: 440px;
    max-height: none;
    padding: 24px 0;
  }
  
  .clear-canvas-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-panel {
    max-width: 100%;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.55);
  }

  .hero-points,
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-points {
    padding: 12px 0 8px;
  }

  .hero-point,
  .hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    text-align: center;
    white-space: nowrap;
  }

  .hero-points .hero-point:nth-child(3),
  .hero-badges .hero-badge:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header-container {
    gap: 6px;
  }

  .header-contact {
    gap: 6px;
  }

  .header-actions {
    gap: 6px;
    align-items: center;
  }

  .btn-consultation {
    padding: 7px 10px;
    height: 44px;
    min-height: 44px;
    font-size: 12px;
    border-radius: 12px;
    white-space: nowrap;
  }

  .social-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 11px;
  }

  .social-btn i {
    font-size: 14px;
  }

  .logo {
    font-size: 20px;
    letter-spacing: -1px;
  }

  .burger {
    padding: 7px;
    gap: 4px;
    min-width: 44px;
    min-height: 44px;
  }

  .burger-line {
    width: 21px;
    height: 2.5px;
  }

  .main-nav {
    width: min(280px, 85vw);
  }
}

@media (max-width: 390px) {
  .hero-points,
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-point,
  .hero-badge {
    white-space: normal;
  }

  .hero-points .hero-point:nth-child(3),
  .hero-badges .hero-badge:nth-child(3) {
    grid-column: auto;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .media-frame::before { 
    animation: none; 
  }
  
  .media-video { 
    transition: none; 
  }
}

@media (hover: none) {
  .btn-consultation:hover,
  .social-btn:hover {
    transform: none;
    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    filter: none;
  }

  .social-btn:hover i {
    transform: none;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  position: relative;
  padding: 0 0 70px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow-x: clip;
  overflow-y: visible;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.services-header {
  position: relative;
  padding: 60px 0;
  margin: 0 calc(-50vw + 50%) 60px;
  background: linear-gradient(180deg, #0a2a4a 0%, #237FE2 100%);
  overflow: hidden;
}

.waves-canvas,
#waves-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.services-header-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  padding: 0 var(--spacing-md);
  margin: 0 auto;
}

.services-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.services-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-align: left;
}

.services-description {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.7;
  text-align: left;
}

.services-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-meta-item:hover {
  background: rgba(255,255,255,0.16);
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.35);
}

.services-meta-item i {
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.04),
    0 1px 3px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  color: var(--text-primary);
  isolation: isolate;
  height: 100%;
}

/* Декоративный градиент на фоне */
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(38, 140, 246, 0.08) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

/* Цветная полоса сверху */
.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #5eb3ff 50%, var(--brand-deep) 100%);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transform: scaleX(0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 140, 246, 0.15);
  box-shadow:
    0 20px 50px rgba(38, 140, 246, 0.12),
    0 8px 25px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(38, 140, 246, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-list {
  margin: 12px 0 8px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(38, 140, 246, 0.04) 0%, rgba(94, 179, 255, 0.02) 100%);
  border-radius: 12px;
  border: 1px solid rgba(38, 140, 246, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover .service-list {
  background: linear-gradient(135deg, rgba(38, 140, 246, 0.06) 0%, rgba(94, 179, 255, 0.04) 100%);
  border-color: rgba(38, 140, 246, 0.12);
}

.service-list-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--brand);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-list-title::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
}

.service-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list-items li {
  position: relative;
  padding-left: 26px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  transition: all 0.25s ease;
}

.service-list-items li:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

.service-list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-list-items li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 5px;
  color: white;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}

.service-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
  align-items: start;
}

.service-card-top .service-title {
  margin-top: 2px;
  grid-column: 2;
}

.service-card-top .service-description {
  margin-top: 0;
  grid-column: 1 / -1;
}

.service-card-top-text {
  display: contents;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 50%, var(--brand-deep) 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow:
    0 8px 24px rgba(38, 140, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(38, 140, 246, 0.3), rgba(94, 179, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover .service-icon {
  background-position: 100% 50%;
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 12px 32px rgba(38, 140, 246, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.7em;
}

.service-card:hover .service-title {
  color: var(--brand-deep);
}

.service-description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 5.1em;
}

.service-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.service-price {
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
}

.service-term {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 12px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-term::before {
  content: "⏱";
  font-size: 12px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f5f3ff;
  color: #5b46a6;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #e4ddff;
  transition: all 0.3s ease;
}

.service-card:hover .service-tag {
  background: #ede8ff;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, #4da3f7 50%, var(--brand-deep) 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 14px;
  box-shadow:
    0 8px 24px rgba(38, 140, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.service-cta:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow:
    0 14px 36px rgba(38, 140, 246, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-cta:hover::before {
  left: 100%;
}

.service-cta::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.service-cta:hover::after {
  transform: translateX(4px);
}

.services-note {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: var(--border-radius-lg);
  border: 1px dashed rgba(38, 140, 246, 0.35);
  background: rgba(230, 243, 254, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.services-note p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.services-asterisk {
  color: var(--brand);
  font-weight: 800;
  margin-right: 6px;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: var(--border-radius);
  box-shadow: 0 14px 32px rgba(38, 140, 246, 0.28);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.services-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--brand-deep) 0%, #155bb1 100%);
  box-shadow: 0 16px 36px rgba(38, 140, 246, 0.34);
}

.services-group {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-group:first-of-type {
  margin-top: 0;
}

.services-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.services-group-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.services-group-title::before {
  content: "";
  width: 5px;
  height: 28px;
  background: linear-gradient(180deg, var(--brand) 0%, #5eb3ff 100%);
  border-radius: 3px;
  flex-shrink: 0;
}

.services-group-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(38,140,246,0.2), transparent);
  margin-left: 20px;
  min-width: 100px;
}

/* Unified Services Block (обгортка для секції) */
.services-unified-block {
  background: linear-gradient(135deg, #f6f9fe 0%, #eef5fd 50%, #f8fbff 100%);
  border-radius: 24px;
  border: 1px solid rgba(38, 140, 246, 0.1);
  padding: 36px 36px 28px;
  box-shadow: 0 4px 24px rgba(38, 140, 246, 0.06);
}

.services-unified-block .services-info-block {
  margin-bottom: 28px;
}

.services-unified-block .services-grid {
  margin-top: 0;
}

.services-unified-block .category-cta-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(38, 140, 246, 0.08);
}

/* Services Info Block */
.services-info-block {
  margin-bottom: 20px;
}

/* Collapsible service list (гармошка) */
.service-list--collapsible {
  padding: 10px 12px;
  background: #e9f2ff;
  border: 1px solid #d6e6ff;
  border-radius: 12px;
  margin: 10px 0 6px;
}

.service-list--collapsible.is-open {
  padding: 16px;
}

.service-list-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.service-list--collapsible.is-open .service-list-toggle {
  padding: 0 0 10px;
}

.service-list-toggle:hover {
  background: transparent;
  border-color: transparent;
}

.service-list-toggle .service-list-title {
  margin: 0;
  padding: 0;
}

.service-list-toggle .service-list-title::before {
  display: none;
}

.service-list-arrow {
  font-size: 11px;
  color: var(--brand);
  transition: transform 0.3s ease;
}

.service-list--collapsible.is-open .service-list-arrow {
  transform: rotate(180deg);
}

.service-list-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 0;
}

.service-list--collapsible.is-open .service-list-body {
  max-height: 400px;
  padding-top: 10px;
}

.service-list-body .service-list-items {
  padding-top: 0;
}

.services-info-title {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 24px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.services-info-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 28px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(38, 140, 246, 0.1);
}

.services-info-layout--design {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.9fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: stretch;
  margin-bottom: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(38, 140, 246, 0.1);
}

.services-info-content--design {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.services-info-content--design .services-info-title {
  margin: 0 0 20px;
}

.services-info-layout--design .services-info-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  flex: 1;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  align-content: space-between;
}

.services-info-layout--design .info-feature {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(38, 140, 246, 0.12);
  background: rgba(255, 255, 255, 0.34);
}

.services-info-layout--design-compact {
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.75fr);
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: 12px;
  padding-bottom: 18px;
}

.services-info-layout--design-compact .services-info-title {
  margin-bottom: 30px;
}

.services-info-layout--design .services-info-features.services-info-features--compact {
  gap: 10px 14px;
  align-content: start;
  flex: 0 0 auto;
  grid-auto-rows: minmax(64px, auto);
}

.services-info-features--compact .info-feature {
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
  min-height: 64px;
}

.services-info-features--compact .info-feature-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 0;
}

.services-info-features--compact .info-feature-icon i {
  font-size: 10px;
}

.services-info-media-highlight {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(38, 140, 246, 0.16);
  background:
    radial-gradient(circle at 16% 16%, rgba(38, 140, 246, 0.18), transparent 45%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.76) 0%, rgba(237, 245, 255, 0.95) 100%);
  box-shadow: 0 10px 30px rgba(38, 140, 246, 0.12);
  overflow: hidden;
  padding: 16px;
}

.services-info-media-highlight::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(38, 140, 246, 0.1);
  pointer-events: none;
}

.services-info-media-highlight img {
  width: min(100%, 213px);
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 22px rgba(14, 59, 114, 0.2));
}

.services-info-media-highlight--cover {
  align-items: stretch;
  padding: 0;
}

.services-info-media-highlight--cover::after {
  display: none;
}

.services-info-media-highlight--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.services-info-media-highlight.services-info-media-highlight--no-frame {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  min-height: 0;
}

.services-info-media-highlight.services-info-media-highlight--no-frame::after {
  display: none;
}

.services-info-media-highlight.services-info-media-highlight--no-frame img {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(14, 59, 114, 0.18));
}

.services-info-media-highlight.services-info-media-highlight--design-compact img {
  width: min(100%, 272px);
}

.services-info-media-highlight.services-info-media-highlight--marketing-compact img {
  width: min(100%, 340px);
}

.info-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.45;
}

.info-feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4e94c 0%, #b8d935 100%);
  border-radius: 50%;
  margin-top: 1px;
}

.info-feature-icon i {
  color: #1a2e05;
  font-size: 12px;
  font-weight: 900;
}

.services-info-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.info-benefit {
  padding: 16px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.info-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.info-benefit:hover {
  transform: translateY(-2px);
}

.benefit-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.benefit-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

@media (max-width: 1600px) and (min-width: 1025px) {
  .services-group {
    margin-top: 10px;
    gap: 4px;
  }

  .services-unified-block {
    padding: 9px 14px 0;
    border-radius: 14px;
  }

  .services-unified-block .services-info-block {
    margin-bottom: 4px;
  }

  .services-unified-block .category-cta-wrap {
    margin-top: -2px;
    padding-top: 0;
    border-top: 0;
  }

  .services-info-layout--design-compact {
    gap: 6px;
    margin-bottom: 1px;
    padding-bottom: 2px;
  }

  .services-info-layout--design .services-info-features.services-info-features--compact {
    gap: 4px 6px;
    grid-auto-rows: minmax(42px, auto);
  }

  .services-info-features--compact .info-feature {
    min-height: 42px;
    padding: 5px 7px;
    font-size: 10.5px;
    line-height: 1.15;
  }

  .services-info-features--compact .info-feature-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .services-info-features--compact .info-feature-icon i {
    font-size: 7px;
  }

  .services-info-media-highlight.services-info-media-highlight--design-compact img {
    width: min(100%, 176px);
  }

  .info-benefit {
    padding: 3px 5px;
  }

  .benefit-title {
    font-size: clamp(13px, 1.15vw, 16px);
    margin-bottom: 1px;
  }

  .benefit-desc {
    font-size: 10px;
    line-height: 1.15;
  }

  .services-grid {
    margin-top: 1px;
    gap: 4px;
  }

  .service-card {
    padding: 8px 8px 4px;
    border-radius: 12px;
    gap: 3px;
  }

  .service-card::after {
    left: 12px;
    right: 12px;
  }

  .service-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 13px;
  }

  .service-title {
    font-size: 13px;
    min-height: 2em;
  }

  .service-description {
    font-size: 11px;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    min-height: 2.2em;
  }

  .service-list--collapsible {
    padding: 3px 6px;
    margin: 1px 0 0;
  }

  .service-list--collapsible.is-open {
    padding: 9px;
  }

  .service-list-title {
    font-size: 10px;
    margin-bottom: 1px;
  }

  .service-list-items {
    gap: 4px;
  }

  .service-list-items li {
    font-size: 10px;
    line-height: 1.2;
    padding-left: 18px;
  }

  .service-list-items li::before {
    width: 10px;
    height: 10px;
    top: 3px;
    border-radius: 3px;
  }

  .service-list-items li::after {
    left: 2px;
    top: 2px;
    font-size: 7px;
  }

  .service-footer {
    padding-top: 2px;
    gap: 2px;
  }

  .service-meta {
    gap: 4px;
  }

  .service-price {
    font-size: 14px;
  }

  .service-term {
    font-size: 10px;
    padding: 2px 6px;
  }

  .service-tag {
    font-size: 10px;
    padding: 3px 7px;
  }

  .service-cta {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 9px;
  }

  .category-cta {
    margin-top: -4px;
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 12px;
  }
}

@media (min-width: 1025px) {
  .services-section .services-group:first-of-type {
    margin-top: 4px;
    gap: 1px;
  }

  .services-section .services-group:first-of-type .services-unified-block {
    padding: 6px 10px 0 !important;
  }

  .services-section .services-group:first-of-type .services-info-block {
    margin-bottom: 1px !important;
  }

  .services-section .services-group:first-of-type .services-info-title {
    margin-bottom: 8px !important;
    font-size: clamp(24px, 2.2vw, 32px) !important;
  }

  .services-section .services-group:first-of-type .services-info-layout--design-compact {
    gap: 4px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .services-section .services-group:first-of-type .services-info-layout--design .services-info-features.services-info-features--compact {
    gap: 3px 5px !important;
    grid-auto-rows: minmax(34px, auto) !important;
  }

  .services-section .services-group:first-of-type .services-info-features--compact .info-feature {
    min-height: 34px !important;
    padding: 3px 6px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  .services-section .services-group:first-of-type .services-info-media-highlight.services-info-media-highlight--design-compact img {
    width: min(100%, 158px) !important;
  }

  .services-section .services-group:first-of-type .info-benefit {
    padding: 2px 4px !important;
  }

  .services-section .services-group:first-of-type .benefit-title {
    font-size: clamp(12px, 1vw, 15px) !important;
    margin-bottom: 0 !important;
  }

  .services-section .services-group:first-of-type .benefit-desc {
    font-size: 9.5px !important;
    line-height: 1.1 !important;
  }

  .services-section .services-group:first-of-type .services-grid {
    margin-top: 0 !important;
    gap: 2px !important;
  }

  .services-section .services-group:first-of-type .service-card {
    padding: 6px 7px 3px !important;
    gap: 2px !important;
    border-radius: 10px !important;
  }

  .services-section .services-group:first-of-type .service-card-top {
    column-gap: 10px !important;
    row-gap: 2px !important;
  }

  .services-section .services-group:first-of-type .service-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
  }

  .services-section .services-group:first-of-type .service-title {
    font-size: 11.5px !important;
    min-height: 1.8em !important;
  }

  .services-section .services-group:first-of-type .service-description {
    font-size: 10px !important;
    line-height: 1.2 !important;
    min-height: 2.05em !important;
    margin-bottom: 0 !important;
  }

  .services-section .services-group:first-of-type .service-list--collapsible {
    margin: 0 !important;
    padding: 2px 5px !important;
  }

  .services-section .services-group:first-of-type .service-footer {
    padding-top: 1px !important;
    gap: 1px !important;
  }

  .services-section .services-group:first-of-type .service-meta {
    gap: 3px !important;
  }

  .services-section .services-group:first-of-type .service-price {
    font-size: 13px !important;
  }

  .services-section .services-group:first-of-type .service-term {
    font-size: 9px !important;
    padding: 1px 5px !important;
  }

  .services-section .services-group:first-of-type .service-tag {
    font-size: 9px !important;
    padding: 2px 6px !important;
  }

  .services-section .services-group:first-of-type .service-cta {
    font-size: 9px !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }

  .services-section .services-group:first-of-type .category-cta-wrap {
    margin-top: -18px !important;
  }

  .services-section .services-group:first-of-type .category-cta {
    margin-top: -8px !important;
    padding: 5px 12px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
  }
}

@media (max-height: 900px) and (min-width: 1025px) {
  .services-section {
    padding: 0 0 36px;
  }

  .services-header {
    padding: 26px 0;
    margin-bottom: 12px;
  }

  .services-header-grid {
    gap: 14px;
  }

  .services-title {
    font-size: clamp(30px, 3.1vw, 44px);
  }

  .services-description {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 10px;
  }
}

@media (max-width: 1024px) {
  .services-info-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
  }

  .services-info-layout--design {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-info-layout--design-compact {
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 14px;
  }

  .services-info-layout--design .services-info-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    align-content: start;
  }

  .services-info-layout--design .services-info-features.services-info-features--compact {
    gap: 10px 12px;
    grid-auto-rows: minmax(62px, auto);
  }

  .services-info-content--design .services-info-title {
    margin-bottom: 16px;
  }

  .services-info-media-highlight {
    min-height: 220px;
    align-items: center;
    padding: 14px;
  }

  .services-info-media-highlight img {
    width: min(100%, 280px);
  }

  .services-info-media-highlight.services-info-media-highlight--design-compact img {
    width: min(100%, 248px);
  }

  .services-info-media-highlight.services-info-media-highlight--marketing-compact img {
    width: min(100%, 310px);
  }

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

  .info-benefit:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .services-unified-block {
    padding: 24px 16px 20px;
    border-radius: 18px;
  }

  .services-info-title {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .services-info-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .services-info-layout--design {
    margin-bottom: 14px;
    padding-bottom: 18px;
    gap: 12px;
  }

  .services-info-layout--design .services-info-features {
    grid-template-columns: 1fr;
    gap: 10px;
    align-content: start;
  }

  .services-info-layout--design .services-info-features.services-info-features--compact {
    gap: 8px;
    grid-auto-rows: minmax(58px, auto);
  }

  .services-info-content--design .services-info-title {
    margin-bottom: 14px;
  }

  .services-info-layout--design .info-feature {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .services-info-features--compact .info-feature {
    padding: 9px 11px;
    gap: 8px;
    font-size: 12.5px;
  }

  .services-info-media-highlight {
    min-height: 170px;
    border-radius: 16px;
  }

  .services-info-media-highlight img {
    width: min(100%, 220px);
  }

  .services-info-media-highlight.services-info-media-highlight--design-compact img {
    width: min(100%, 206px);
  }

  .services-info-media-highlight.services-info-media-highlight--marketing-compact img {
    width: min(100%, 258px);
  }

  .info-feature {
    font-size: 13px;
  }

  .info-feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .info-feature-icon i {
    font-size: 10px;
  }

  .services-info-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .info-benefit {
    padding: 12px 14px;
  }

  .benefit-title {
    font-size: 16px;
  }

  .benefit-desc {
    font-size: 12px;
  }
}

.category-cta-wrap {
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
}

.category-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 14px;
  border: 2px solid #b0ce34;
  background: #c2df3c;
  color: #1b2a12;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(194, 223, 60, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.category-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b3d22f;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.category-cta::after {
  content: "→";
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.category-cta span,
.category-cta {
  position: relative;
  z-index: 2;
}

.category-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(194, 223, 60, 0.45);
  color: #1b2a12;
}

.category-cta:hover::before {
  opacity: 1;
}

.category-cta:hover::after {
  transform: translateX(4px);
}

/* ==================== CTA OFFER ==================== */
.cta-offer {
  position: relative;
  padding: 24px 0 32px;
  background: linear-gradient(180deg, #0a2a4a 0%, #237fe2 100%);
  overflow: hidden;
}

.cta-offer .container {
  max-width: var(--max-width);
  position: relative;
  z-index: 1;
}

.cta-offer-inner {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 24px;
  padding: 0;
  display: flex;
  width: 100%;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: flex-start;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-offer-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 720px;
  max-width: 100%;
}

.cta-offer-title {
  margin: 0 0 6px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.cta-offer-text {
  margin: 0 0 15px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.5;
  max-width: none;
  white-space: normal;
  font-weight: 400;
}

.cta-offer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(165deg, #ffffff 0%, #fafcff 100%);
  padding: 18px 20px 16px;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.18),
    0 8px 25px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
  max-width: none;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-offer-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #5eb3ff 50%, var(--brand-deep) 100%);
}

.cta-form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.cta-form-row--inline {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1.6fr 1.4fr;
  gap: 10px;
  margin-bottom: 8px;
}

.cta-offer-form input[type="text"],
.cta-offer-form input[type="tel"],
.cta-offer-form input[type="url"] {
  padding: 12px 16px;
  border-radius: 14px;
  border: 2px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-size: 14px;
  color: #2b2b2b;
  font-weight: 500;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.03);
  width: 100%;
}

.cta-offer-form input::placeholder {
  color: rgba(43, 43, 43, 0.45);
  font-weight: 400;
}

.cta-offer-form input:hover {
  border-color: rgba(38, 140, 246, 0.25);
  background: linear-gradient(135deg, #fafcff 0%, #f5f8fc 100%);
}

.cta-offer-form input:focus {
  border-color: var(--brand);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(38, 140, 246, 0.1),
    inset 0 2px 4px rgba(38, 140, 246, 0.03);
  transform: translateY(-1px);
}

.cta-offer-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 64px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.cta-offer-form textarea::placeholder {
  color: rgba(15, 23, 42, 0.4);
  font-weight: 400;
}

.cta-offer-form textarea:hover {
  border-color: rgba(38, 140, 246, 0.3);
  background: rgba(255,255,255,1);
}

.cta-offer-form textarea:focus {
  border-color: var(--brand);
  box-shadow:
    0 0 0 3px rgba(38, 140, 246, 0.1),
    0 4px 12px rgba(38, 140, 246, 0.15);
}

.cta-offer-form input:focus-visible,
.cta-offer-form textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.cta-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cta-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #ff4757 0%, #ff6b6b 50%, #ff8e53 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow:
    0 12px 35px rgba(255, 71, 87, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}

.cta-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.cta-submit::after {
  content: "🚀";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-submit:hover {
  transform: translateY(-4px);
  background-position: 100% 50%;
  box-shadow:
    0 18px 45px rgba(255, 71, 87, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-submit:hover::before {
  left: 100%;
}

.cta-submit:hover::after {
  transform: translateX(4px) rotate(15deg);
}

.cta-submit:active {
  transform: translateY(-2px);
}

.cta-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(43, 43, 43, 0.62);
  line-height: 1.5;
}

.cta-checkbox input {
  width: 19px;
  height: 19px;
  accent-color: #268cf6;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}

.cta-checkbox span {
  flex: 1;
}

.cta-checkbox span a {
  color: #268cf6;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cta-checkbox span a:hover {
  color: #1a6fd4;
}

.cta-offer-form .cta-checkbox + .cta-checkbox {
  margin-top: 4px;
}

.cta-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 14px;
  max-width: 360px;
}

.cta-features li {
  position: relative;
  padding-left: 28px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.cta-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d3d6e;
  font-weight: 900;
  font-size: 12px;
  background: linear-gradient(135deg, #5fd8f7 0%, #38c4f5 100%);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(95, 216, 247, 0.45);
}

.cta-submit--hot {
  background: linear-gradient(135deg, #ff3939 0%, #ff5544 48%, #ff6644 100%);
  box-shadow:
    0 10px 28px rgba(255, 57, 57, 0.38),
    0 3px 10px rgba(0,0,0,0.14);
}

.cta-submit--hot:hover {
  box-shadow:
    0 14px 36px rgba(255, 57, 57, 0.48),
    0 5px 14px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, #ff4545 0%, #ff6550 48%, #ff7550 100%);
}

.cta-offer-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  max-width: 260px;
  flex: 0 0 260px;
}

.cta-offer-circle {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 1;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  overflow: visible;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.cta-offer-circle::after {
  content: "✦";
  position: absolute;
  right: -20px;
  bottom: 32%;
  font-size: 44px;
  color: rgba(255,255,255,0.55);
  animation: twinkle 2.8s ease-in-out infinite;
  text-shadow: 0 0 24px rgba(255,255,255,0.35);
  z-index: 1;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.75; transform: scale(1.18) rotate(18deg); }
}

.cta-offer-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.cta-quote {
  background: #ffffff;
  border: 3px solid #f5c142;
  border-radius: 18px;
  padding: 18px 20px 16px;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.20),
    0 5px 16px rgba(0,0,0,0.14);
  max-width: 270px;
  width: 100%;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  z-index: 3;
  margin-top: -55px;
}

.cta-quote p {
  margin: 0;
  color: #2b2b2b;
}

.cta-quote strong {
  color: #14548f;
  font-weight: 700;
}

.cta-quote-name {
  margin-top: 10px;
  font-weight: 700;
  color: #14548f;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .cta-offer {
    padding: 40px 0;
  }

  .cta-offer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .cta-offer-content {
    flex: 1 1 auto;
    width: 100%;
  }

  .cta-offer-figure {
    flex: 0 0 auto;
    order: -1;
    align-items: center;
    max-width: 100%;
  }

  .cta-offer-circle {
    max-width: 260px;
    margin: 0 auto;
  }

  .cta-quote {
    margin-top: -55px;
    max-width: 240px;
  }

  .cta-offer-form {
    max-width: 100%;
    padding: 28px 24px;
  }

  .cta-offer-text {
    white-space: normal;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .cta-offer {
    padding: 32px 0;
  }

  .cta-offer-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .cta-offer-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .cta-offer-circle {
    max-width: 220px;
    border-width: 8px;
  }

  .cta-offer-circle::after {
    font-size: 34px;
    right: -14px;
  }

  .cta-quote {
    max-width: 220px;
    padding: 14px 16px 12px;
    margin-top: -45px;
    font-size: 13px;
  }

  .cta-quote-name {
    font-size: 12px;
    margin-top: 8px;
  }

  .cta-offer-form {
    padding: 22px 18px;
  }

  .cta-form-row--inline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-submit {
    padding: 13px 28px;
    font-size: 14px;
  }

  .cta-features li {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .services-section {
    padding: 0 0 60px;
  }

  .services-header {
    padding: 50px 0;
    margin: 0 calc(-50vw + 50%) 40px;
  }

  .services-header-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .services-header-left {
    align-items: center;
  }

  .services-title {
    text-align: center;
  }

  .services-description {
    text-align: center;
  }

  .services-header-right {
    justify-content: center;
  }

  .services-meta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .services-meta-item {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .services-title {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 14px;
  }

  .service-title {
    font-size: 17px;
  }

  .service-title,
  .service-description {
    display: block;
    -webkit-line-clamp: unset;
    min-height: 0;
    overflow: visible;
  }

  .service-list {
    padding: 14px;
    margin: 10px 0 6px;
  }

  .service-list-items li {
    font-size: 13px;
    padding-left: 24px;
  }

  .service-list-items li::before {
    width: 16px;
    height: 16px;
    top: 5px;
    border-radius: 5px;
  }

  .service-list-items li::after {
    font-size: 10px;
    left: 3px;
  }

  .service-price {
    font-size: 18px;
  }

  .service-cta {
    padding: 13px 28px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .services-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 0 0 50px;
  }

  .services-header {
    padding: 40px 0;
    margin: 0 -15px 32px;
  }

  .services-header-grid {
    padding: 0 15px;
  }

  .services-meta {
    flex-direction: column;
    align-items: center;
  }

  .services-meta-item {
    padding: 12px 16px;
    font-size: 13px;
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
  }

  .services-meta-item i {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 8px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .service-card::after {
    left: 18px;
    right: 18px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 12px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-description {
    font-size: 14px;
  }

  .service-list {
    padding: 12px;
    border-radius: 10px;
  }

  .service-list-title {
    font-size: 12px;
  }

  .service-footer {
    gap: 14px;
    padding-top: 14px;
  }

  .service-price {
    font-size: 17px;
  }

  .service-term {
    font-size: 12px;
    padding: 4px 10px;
  }

  .service-cta {
    padding: 12px 24px;
    font-size: 13px;
    border-radius: 12px;
  }
}

/* ==================== STAGES SECTION ==================== */
.stages-section {
  background: linear-gradient(180deg, #ffffff, #f9fbff 50%, #ffffff);
  padding: 80px 0;
  position: relative;
}

.stages-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 60px;
  align-items: stretch;
}

.stages-head {
  margin: 0 0 24px;
}

.stages-content {
  display: flex;
  flex-direction: column;
}

/* Title & Description */
.stages-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.stages-title b {
  background: linear-gradient(135deg, var(--brand) 0%, #5eb3ff 50%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.stages-title b::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(38, 140, 246, 0.15), rgba(94, 179, 255, 0.1));
  border-radius: 4px;
  z-index: -1;
}

.stages-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 65ch;
  font-weight: 500;
}

/* Accordion */
.stages-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stage-item {
  background: linear-gradient(165deg, #ffffff 0%, #fafcff 100%);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(15, 23, 42, 0.04),
    0 1px 3px rgba(15, 23, 42, 0.03);
  position: relative;
}

.stage-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), #5eb3ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stage-header {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.stage-header[aria-expanded="true"] {
  background: var(--brand-light);
}

.stage-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C2DF3C 0%, #d4e94c 50%, #b3d22f 100%);
  background-size: 200% 200%;
  color: #1a2e05;
  border-radius: 14px;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 6px 18px rgba(194, 223, 60, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}

.stage-icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(194, 223, 60, 0.4), rgba(212, 233, 76, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

@media (hover: hover) {
  .stage-item:hover {
    border-color: rgba(38, 140, 246, 0.15);
    box-shadow:
      0 12px 35px rgba(38, 140, 246, 0.12),
      0 4px 15px rgba(15, 23, 42, 0.05);
    transform: translateY(-3px);
  }

  .stage-item:hover::before {
    opacity: 1;
  }

  .stage-header:hover {
    background: rgba(38,140,246,0.03);
  }

  .stage-header:hover .stage-icon {
    transform: scale(1.1) rotate(-5deg);
    background-position: 100% 50%;
    box-shadow:
      0 10px 25px rgba(194, 223, 60, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .stage-header:hover .stage-icon::after {
    opacity: 1;
  }
}

.stage-title-wrap {
  flex: 1;
}

.stage-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.stage-header[aria-expanded="true"] .stage-title {
  color: var(--brand);
  font-weight: 800;
}

.stage-arrow {
  color: var(--brand);
  font-size: 14px;
  transition: var(--transition);
  opacity: 0.6;
}

.stage-header[aria-expanded="true"] .stage-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.stage-content {
  display: none;
  padding: 0 20px 20px 84px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.stage-content.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stage-content p {
  margin: 0 0 12px;
}

.stage-content p:last-of-type {
  margin-bottom: 0;
}

.stage-content p strong {
  color: var(--brand);
  font-weight: 700;
}

.stage-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.stage-content li {
  margin: 6px 0;
  color: var(--text-secondary);
}

.stage-content li::marker {
  color: var(--brand);
}

/* Image */
.stages-image-wrap {
  position: relative;
  top: 0;
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f4f8fe;
}

.stages-image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

/* ==================== STAGES RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .stages-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stages-head {
    margin-bottom: 20px;
  }

  .stages-image-wrap {
    position: relative;
    top: 0;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
  }

  .stages-image {
    height: auto;
  }

  .stage-content {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .stages-section {
    padding: 60px 0;
  }

  .stages-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .stages-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .stage-header {
    grid-template-columns: 40px 1fr 20px;
    gap: 12px;
    padding: 14px 16px;
  }

  .stage-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 8px;
  }

  .stage-title {
    font-size: 15px;
  }

  .stage-content {
    padding: 0 16px 20px 68px;
    font-size: 14px;
  }

  .stages-accordion {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .stages-section {
    padding: 40px 0;
  }

  .stage-header {
    grid-template-columns: 36px 1fr 18px;
    gap: 10px;
    padding: 12px 14px;
  }

  .stage-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .stage-title {
    font-size: 14px;
  }

  .stage-content {
    padding: 0 14px 16px 60px;
    font-size: 13px;
  }
}


/* ==================== Page Specific Styles ==================== */

/* ==================== About Page ==================== */
/* Файл: pages/company/about/about.css */

:root {
  --about-max-width: 1400px;
  --about-blue: #268cf6;
  --about-blue-dark: #1a6fc4;
  --about-blue-deep: #0a2a4a;
  --about-accent: #c0de3d;
  --about-text: #0f172a;
  --about-text-secondary: #475569;
  --about-border: rgba(15, 23, 42, 0.08);
  --about-card-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  --about-radius: 22px;

  /* ── Spacing scale (8px grid) ── */
  --s1: 8px;   /* micro   */
  --s2: 16px;  /* small   */
  --s3: 24px;  /* medium  */
  --s4: 32px;  /* large   */
  --s5: 40px;  /* xl      */
  --s6: 48px;  /* xxl     */
}

.page-about {
  background:
    radial-gradient(circle at 85% 0%, rgba(38, 140, 246, 0.12), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 40%);
  color: var(--about-text);
}

.about-container {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.about-page {
  padding: 40px 0;
}

.about-hero {
  padding: 28px 0;
}

.about-hero .about-container {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  padding: 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--s3);
  align-items: stretch;
}

.about-hero-left {
  background: #fff;
  border: 1px solid var(--about-border);
  border-radius: var(--about-radius);
  box-shadow: var(--about-card-shadow);
  padding: var(--s4);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(192, 222, 61, 0.24), rgba(192, 222, 61, 0.12));
  border: 1px solid rgba(192, 222, 61, 0.42);
  color: #5f7414;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--about-blue-deep);
  white-space: nowrap;
}

.about-lead {
  margin: 18px 0 0;
  color: var(--about-text-secondary);
  font-size: 18px;
  line-height: 1.7;
  max-width: 64ch;
}

.about-bullets {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 12px;
}

.about-bullets li {
  min-width: 0;
  position: relative;
  padding: 0 0 0 28px;
  color: #1e293b;
  line-height: 1.5;
  font-size: 15px;
}

.about-bullets li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--about-accent);
  font-size: 14px;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.about-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--about-blue-deep) 0%, var(--about-blue) 58%, var(--about-blue-dark) 100%);
  box-shadow:
    0 12px 30px rgba(38, 140, 246, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about-btn-primary:hover {
  box-shadow:
    0 18px 36px rgba(38, 140, 246, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.about-btn-ghost {
  color: var(--about-blue-deep);
  border: 1px solid rgba(38, 140, 246, 0.35);
  background: #fff;
}

.about-btn-ghost:hover {
  border-color: rgba(38, 140, 246, 0.55);
}

.about-trust-mini {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.about-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 auto;
  background: var(--about-blue);
  box-shadow: 0 0 0 5px rgba(38, 140, 246, 0.15);
}

.about-hero-right {
  position: relative;
}

.about-illustration-card {
  border-radius: var(--about-radius);
  height: 100%;
  position: relative;
  padding: 24px;
  background: linear-gradient(160deg, #f8fbff 0%, #eef4fd 100%);
  border: 1px solid var(--about-border);
  box-shadow: var(--about-card-shadow);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transform: translateY(-10%);
}

.about-img-note {
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--about-border);
  color: #334155;
  font-size: 14px;
  line-height: 1.4;
}

.about-integrator-card {
  border-radius: 18px;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.07) 100%),
    linear-gradient(135deg, var(--about-blue-deep) 0%, var(--about-blue-dark) 48%, var(--about-blue) 100%);
  box-shadow:
    0 14px 36px rgba(26, 111, 196, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #f8fbff;
}

.about-integrator-card--overlap {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  max-width: 408px;
}

.about-integrator-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-integrator-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
}

.about-integrator-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.about-integrator-list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  line-height: 1.4;
}

.about-integrator-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--about-accent);
  box-shadow: 0 0 0 3px rgba(192, 222, 61, 0.2);
}

.about-integrator-stats {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-integrator-stat {
  min-width: 0;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.about-integrator-stat strong {
  display: block;
  margin: 0;
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.about-integrator-stat span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.about-facts {
  padding: 28px 0;
}

.about-facts .about-container {
  position: relative;
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 42px 34px;
  border-radius: var(--about-radius);
  background: linear-gradient(135deg, #0a2a4a 0%, #1a5490 50%, #237fe2 100%);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.16);
}

.about-facts .waves-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.38;
}

.about-facts-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.about-facts-title {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.about-facts-text {
  margin: 0 0 2px;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.4;
  text-align: right;
}

.about-facts-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.about-facts-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.about-facts-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 18px;
}

.about-facts-card strong {
  margin: 0;
  flex-shrink: 0;
  min-width: 0;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.about-facts-card span {
  display: block;
  margin-top: 0;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.94);
}

.page-about #history.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.page-about #history.bg-white {
  background-color: #ffffff;
}

.page-about #history.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
}

.page-about #history.border-slate-100 {
  border-color: rgb(241 245 249);
}

.page-about #history .max-w-7xl {
  max-width: 80rem;
}

.page-about #history .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.page-about #history .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.page-about #history .grid {
  display: grid;
}

.page-about #history .gap-16 {
  gap: 4rem;
}

.page-about #history .items-center {
  align-items: center;
}

.page-about #history .text-brand-600 {
  color: var(--about-blue-dark);
}

.page-about #history .font-bold {
  font-weight: 700;
}

.page-about #history .tracking-wider {
  letter-spacing: 0.05em;
}

.page-about #history .uppercase {
  text-transform: uppercase;
}

.page-about #history .text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.page-about #history .mb-2 {
  margin-bottom: 0.5rem;
}

.page-about #history .block {
  display: block;
}

.page-about #history .text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.page-about #history .text-slate-900 {
  color: rgb(15 23 42);
}

.page-about #history .mb-6 {
  margin-bottom: 1.5rem;
}

.page-about #history .leading-tight {
  line-height: 1.25;
}

.page-about #history .text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.page-about #history .text-slate-600 {
  color: rgb(71 85 105);
}

.page-about #history .mb-8 {
  margin-bottom: 2rem;
}

.page-about #history .bg-slate-50 {
  background-color: rgb(248 250 252);
}

.page-about #history .bg-slate-50.border {
  border-width: 0;
  border-color: transparent;
}

.page-about #history .rounded-2xl {
  border-radius: 1rem;
}

.page-about #history .p-8 {
  padding: 2rem;
}

.page-about #history .border {
  border-width: 1px;
  border-style: solid;
}

.page-about #history .text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.page-about #history .mb-4 {
  margin-bottom: 1rem;
}

.page-about #history .flex {
  display: flex;
}

.page-about #history .gap-3 {
  gap: 0.75rem;
}

.page-about #history .space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}

.page-about #history .font-medium {
  font-weight: 500;
}

.page-about #history .text-slate-700 {
  color: rgb(51 65 85);
}

.page-about #history .text-brand-500 {
  color: var(--about-blue);
}

.page-about #history .rounded-3xl {
  border-radius: 1.5rem;
}

.page-about #history .shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(15, 23, 42, 0.12),
    0 8px 10px -6px rgba(15, 23, 42, 0.1);
}

.page-about #history .w-full {
  width: 100%;
}

.page-about #history .object-cover {
  object-fit: cover;
}

@media (min-width: 640px) {
  .page-about #history .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .page-about #history .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-about #history .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .page-about #history .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-history {
  padding: 64px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.about-history .about-container {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  padding: 0;
}

.about-history-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--about-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.about-history-content {
  min-width: 0;
}

.about-history-story-title {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--about-blue-deep);
}

.about-history-lead {
  margin: 0 0 32px;
  color: var(--about-text-secondary);
  font-size: 18px;
  line-height: 1.55;
}

.about-history-approach-card {
  border-radius: 22px;
  padding: clamp(20px, 3.2vw, 32px);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.about-history-subtitle {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.about-history-subtitle i {
  font-size: 20px;
  color: var(--about-blue);
}

.about-history-approach {
  margin: 0 0 24px;
  color: var(--about-text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.about-history-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-history-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}

.about-history-points li i {
  color: var(--about-blue);
  font-size: 18px;
  line-height: 1;
}

.about-history-stats {
  margin-top: var(--s3);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s2);
}

.about-history-stat {
  border-radius: 14px;
  border: 1px solid rgba(38, 140, 246, 0.16);
  background: linear-gradient(140deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: var(--s2);
  text-align: center;
}

.about-history-stat strong {
  display: block;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--about-blue);
}

.about-history-stat span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.3;
  color: #64748b;
}

.about-history-media {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.about-history-image {
  width: min(100%, 560px);
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.about-history-note {
  background: #ffffff;
  border: 1px solid var(--about-border);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  padding: var(--s2);
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
}

.page-about .section.section-blue {
  padding: 28px 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(38, 140, 246, 0.08), transparent 45%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
}

.page-about .section.section-blue .container {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.page-about .section.section-blue .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(38, 140, 246, 0.1);
  border: 1px solid rgba(38, 140, 246, 0.24);
  color: var(--about-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-about .section.section-blue h2 {
  margin: var(--s2) 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--about-blue-deep);
}

.page-about .section.section-blue h2 span {
  color: var(--about-blue);
}

.page-about .section.section-blue .section-desc {
  max-width: 70ch;
  color: var(--about-text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.page-about .team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 368px));
  gap: var(--s3);
  justify-content: center;
}

.page-about .team-card {
  background: #ffffff;
  border: 1px solid var(--about-border);
  border-radius: 20px;
  box-shadow: var(--about-card-shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.page-about .team-photo {
  overflow: hidden;
  padding: 14px var(--s3) 0;
}

.page-about .team-photo-img {
  width: 100%;
  height: clamp(300px, 31vw, 360px);
  display: block;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 18px;
}

.page-about .team-photo-img--anna {
  object-position: center 14%;
}

.page-about .team-photo-img--nikita {
  object-position: center 8%;
}

.page-about .team-info {
  padding: var(--s3);
}

.page-about .team-name {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--about-blue-deep);
}

.page-about .team-role {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--about-blue);
  font-weight: 700;
}

.page-about .team-bio {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #334155;
}

.page-about .team-certs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-about .team-certs--single-line {
  flex-wrap: nowrap;
}

.page-about .team-certs--single-line .cert-tag {
  white-space: nowrap;
}

.page-about .cert-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 1;
  color: var(--about-blue-dark);
  background: rgba(38, 140, 246, 0.1);
  border: 1px solid rgba(38, 140, 246, 0.2);
}

.page-about .team-links {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.page-about .team-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--about-blue-deep), var(--about-blue));
}

.page-about .team-link:hover {
  opacity: 0.9;
}

.page-about .about-tools-proof {
  margin-top: var(--s4);
  padding: clamp(18px, 2.1vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(38, 140, 246, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.page-about .about-tools-proof-head {
  max-width: 74ch;
  margin: 0 auto;
  text-align: center;
}

.page-about .about-tools-proof-head h3 {
  margin: 0;
  color: var(--about-blue-deep);
  font-size: clamp(26px, 2.9vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-about .about-tools-proof-head p {
  margin: 10px auto 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.5;
}

.page-about .about-tools-grid {
  margin-top: var(--s3);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.page-about .about-tool-category {
  position: relative;
  min-height: 150px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  padding: 16px 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-about .about-tool-category::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(135deg, #1660d9, #35a0ff);
}

.page-about .about-tool-category:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 140, 246, 0.22);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.page-about .about-tool-category-title {
  margin: 0;
  color: var(--about-blue-deep);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.page-about .about-tool-list {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.page-about .about-tool-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.page-about .about-tool-li-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: inline-block;
}

.page-about .about-tool-li-fa {
  width: 30px;
  height: 30px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-about .section.section-alt {
  padding: 28px 0;
}

.page-about .section.section-alt .container {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.page-about .section.section-alt .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(38, 140, 246, 0.1);
  border: 1px solid rgba(38, 140, 246, 0.24);
  color: var(--about-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-about .section.section-alt h2 {
  margin: var(--s2) 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--about-blue-deep);
}

.page-about .section.section-alt h2 span {
  color: var(--about-blue);
}

.page-about .timeline {
  position: relative;
  display: grid;
  gap: 10px;
}

.page-about .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #22a7ff 0%, #1b87e5 100%);
}

.page-about .tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 82px;
}

.page-about .tl-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0f8fe8;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 143, 232, 0.25);
  z-index: 2;
}

.page-about .tl-card {
  width: min(100%, 460px);
  background: #ffffff;
  border: 1px solid var(--about-border);
  border-radius: 16px;
  box-shadow: var(--about-card-shadow);
  padding: 14px;
}

.page-about .tl-item:nth-child(odd) .tl-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 8px;
}

.page-about .tl-item:nth-child(even) .tl-card {
  grid-column: 2;
  justify-self: start;
  margin-left: 8px;
}

.page-about .tl-year {
  color: var(--about-blue);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-about .tl-title {
  margin-top: 4px;
  color: var(--about-blue-deep);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-about .tl-text {
  margin-top: 6px;
  color: #334155;
  font-size: 15px;
  line-height: 1.35;
}

/* ================================================================
   UNIFIED SECTION HEADER  (.about-sec-head / -label / -title / -desc)
   Used by: Cases, Why, Trust sections
   ================================================================ */

.page-about .about-sec-head {
  text-align: center;
  margin-bottom: var(--s4);
}

.page-about .about-sec-label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(29, 109, 255, 0.1);
  color: #1660d9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}

.page-about .about-sec-title {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--about-blue-deep);
}

.page-about .about-sec-desc {
  margin: 12px auto 0;
  max-width: 52ch;
  text-align: center;
  color: #64748b;
  font-size: 18px;
  line-height: 1.45;
}

/* ================================================================
   CASES SECTION
   ================================================================ */

.page-about .about-cases-block {
  padding: 28px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
}

.page-about .about-cases-block .about-container {
  width: min(80rem, calc(100% - 40px));
}

.page-about .about-cases-list {
  margin-top: 0;
  display: flex;
  gap: var(--s3);
  transition: transform 0.4s ease;
  will-change: transform;
}

.page-about .about-cases-slider {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "prev img next"
    ". pg .";
  align-items: center;
  gap: 0;
  margin-top: 32px;
}

.page-about .about-cases-controls {
  display: contents;
  margin: 0;
}

.page-about .about-cases-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(10, 42, 74, 0.18);
  background: #ffffff;
  color: var(--about-blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.page-about .about-cases-arrow:hover {
  background: var(--about-blue);
  border-color: var(--about-blue);
  color: #ffffff;
}

.page-about .about-cases-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-about .about-cases-viewport {
  grid-area: img;
  margin-top: 0;
  overflow: hidden;
}

.page-about .about-cases-pagination {
  grid-area: pg;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-about [data-cases-prev] {
  grid-area: prev;
  justify-self: center;
}

.page-about [data-cases-next] {
  grid-area: next;
  justify-self: center;
}

.page-about .about-cases-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(10, 42, 74, 0.24);
  transition: width 0.2s ease, background 0.2s ease;
}

.page-about .about-cases-dot.is-active {
  width: 30px;
  background: var(--about-blue);
}

.page-about .about-case-card {
  flex: 0 0 calc((100% - var(--s3)) / 2);
  background: #ffffff;
  border: 1px solid var(--about-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--about-card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about .about-case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.page-about .about-case-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--about-border);
  text-decoration: none;
}

.page-about .about-case-media img {
  display: block;
  width: 100%;
  height: 248px;
  object-fit: cover;
}

.page-about .about-case-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 23, 42, 0.34) 100%);
  pointer-events: none;
}

.page-about .about-case-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(10, 42, 74, 0.78);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-about .about-case-body {
  padding: var(--s3);
}

.page-about .about-case-body h3 {
  margin: 0;
  color: var(--about-blue-deep);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.page-about .about-case-body p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.page-about .about-case-metrics {
  margin-top: var(--s2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-about .about-case-metrics span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(29, 109, 255, 0.1);
  color: #145fd1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.page-about .about-case-actions {
  margin-top: var(--s2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-about .about-case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 10px;
  padding: 0 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-about .about-case-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1660d9 0%, #1d6dff 100%);
  box-shadow: 0 10px 22px rgba(29, 109, 255, 0.3);
}

.page-about .about-case-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(29, 109, 255, 0.36);
}

.page-about .about-case-btn-ghost {
  color: var(--about-blue-deep);
  border: 1px solid rgba(29, 109, 255, 0.34);
  background: #ffffff;
}

.page-about .about-case-btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 109, 255, 0.55);
}

/* (dead Tailwind-class rules removed — replaced by .about-sec-head system above) */

/* ================================================================
   WHY US SECTION  (.about-why-block)
   ================================================================ */

.page-about .about-why-block {
  padding: 28px 0;
  background: #ffffff;
}

/* 2-col grid: items (left) + visual (right) */
.page-about .about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s5);
  align-items: start;
}

/* Stack of 4 reason cards */
.page-about .about-why-items {
  display: grid;
  gap: var(--s3);
}

/* Individual reason card */
.page-about .about-why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: 20px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(38, 140, 246, 0.14);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-about .about-why-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 109, 255, 0.1);
}

/* Big ordinal number */
.page-about .about-why-num {
  flex-shrink: 0;
  min-width: 58px;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: rgba(38, 140, 246, 0.25);
}

/* Text block inside card */
.page-about .about-why-text h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--about-blue-deep);
}

.page-about .about-why-text p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #475569;
}

/* Right column: photo + overlay card (same style direction as hero) */
.page-about .about-why-visual {
  position: relative;
  width: min(100%, 620px);
  justify-self: end;
}

.page-about .about-illustration-card--why {
  min-height: auto;
  padding: 14px;
  align-items: stretch;
}

.page-about .about-why-illustration {
  width: 100%;
  height: auto;
  display: block;
  margin-left: 0;
  border-radius: 16px;
  border: 1px solid var(--about-border);
}

.page-about .about-integrator-card--why {
  left: auto;
  right: 0;
  bottom: 0;
  max-width: min(86%, 430px);
}

.page-about #about-trust {
  padding: 28px 0;
}

.page-about #about-trust .about-container {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  padding: 0;
}

/* Trust section uses global .about-sec-head (centered) — no override needed */

.page-about #about-trust .about-logos {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.page-about #about-trust .about-logo {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px dashed rgba(38, 140, 246, 0.45);
  background: linear-gradient(140deg, #ffffff 0%, #f4f9ff 100%);
  color: #1e293b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.page-about #about-trust .about-docs-mini {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-about #about-trust .about-doc-mini {
  border-radius: 14px;
  border: 1px solid var(--about-border);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  padding: 14px;
}

.page-about #about-trust .about-doc-mini-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #0f172a;
}

.page-about #about-trust .about-doc-mini-sub {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: #64748b;
}

.page-about .about-security {
  padding: 28px 0;
}

.page-about .about-security .about-container {
  position: relative;
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  padding: 36px 34px;
  border-radius: var(--about-radius);
  background: linear-gradient(135deg, #0a2a4a 0%, #1a5490 50%, #237fe2 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.page-about .about-security .about-security-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.38;
}

.page-about .about-security-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 34px;
  align-items: center;
}

.page-about .about-security-icon-col {
  display: flex;
  justify-content: center;
}

.page-about .about-security-icon-shell {
  width: 302px;
  height: 302px;
  border-radius: 50%;
  border: 1px solid rgba(99, 179, 255, 0.36);
  background: rgba(17, 58, 104, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-about .about-security-photo {
  width: 263px;
  height: 263px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 1;
}

.page-about .about-security-icon-shell i {
  font-size: 66px;
  color: #67b7ff;
}

.page-about .about-security-ping {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid rgba(103, 183, 255, 0.32);
  animation: about-security-ping 3s infinite;
  z-index: 2;
  pointer-events: none;
}

.page-about .about-security-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-about .about-security-sub {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.5;
}

.page-about .about-security-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-about .about-security-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.page-about .about-security-list-icon {
  width: 26px;
  height: 26px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #67b7ff;
  font-size: 17px;
}

.page-about .about-security-list strong {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.page-about .about-security-list span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

@keyframes about-security-ping {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70% {
    transform: scale(1.33);
    opacity: 0;
  }
  100% {
    transform: scale(1.33);
    opacity: 0;
  }
}

.page-about .about-legal-block {
  padding: 28px 0;
}

.page-about .about-legal-block > .max-w-7xl {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.page-about .about-legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.page-about .about-legal-title {
  margin: 0;
  color: var(--about-blue-deep);
  font-size: clamp(32px, 3.3vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-about .about-legal-lead {
  margin: 14px 0 0;
  max-width: 34ch;
  color: #475569;
  font-size: 20px;
  line-height: 1.45;
}

.page-about .about-legal-entity-card {
  margin-top: 22px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 22px;
  background: #f8fafc;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 18px 18px;
  font-family: "SFMono-Regular", ui-monospace, "Cascadia Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.page-about .about-legal-entity-grid {
  display: grid;
  gap: 6px;
}

.page-about .about-legal-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.page-about .about-legal-label {
  color: #64748b;
  font-size: 15px;
  line-height: 1.4;
}

.page-about .about-legal-value {
  text-align: right;
  color: #334155;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.page-about .about-legal-address {
  font-weight: 500;
}

.page-about .about-legal-block .placeholder-var {
  color: #1d6dff;
  font-weight: 800;
}

.page-about .about-legal-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.page-about .about-legal-cert-card {
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 22px;
  background: #f8fafc;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.page-about .about-legal-cert-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.page-about .about-legal-cert-card i {
  color: #94a3b8;
  font-size: 58px;
  line-height: 1;
}

.page-about .about-legal-cert-title {
  margin-top: 14px;
  color: #334155;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.page-about .about-legal-cert-link {
  margin-top: 4px;
  color: #1d6dff;
  font-size: 16px;
  line-height: 1.2;
}

.page-about .about-legal-cert-sub {
  margin-top: 6px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.3;
}

.page-about .about-legal-cert-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.page-about .about-legal-cert-card-wide i {
  font-size: 42px;
}

.about-map {
  padding: 18px 0 10px;
}

.about-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: linear-gradient(140deg, #f6f9ff 0%, #f2f8ff 100%);
  border: 1px solid var(--about-border);
  border-radius: var(--about-radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 28px;
}

.about-map-col h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--about-blue);
}

.about-map-links {
  margin-top: 18px;
  display: grid;
}

.about-nav-link {
  display: block;
  text-decoration: none;
  color: #0f172a;
  font-size: clamp(27px, 2.9vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: color 0.2s ease, transform 0.2s ease;
}

.about-nav-link:hover,
.about-nav-link.is-active {
  color: var(--about-blue);
  transform: translateX(4px);
}

.about-sections {
  padding: 26px 0 6px;
}

.about-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-section-card {
  background: #fff;
  border: 1px solid var(--about-border);
  border-radius: 20px;
  box-shadow: var(--about-card-shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.about-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.about-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--about-blue-dark);
  background: rgba(38, 140, 246, 0.14);
}

.about-section-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--about-blue-deep);
}

.about-section-card p {
  margin: 0;
  color: var(--about-text-secondary);
  line-height: 1.62;
  font-size: 15px;
}

.about-section-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.5;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.about-link-btn {
  margin-top: 18px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--about-blue-deep), var(--about-blue));
  box-shadow: 0 10px 24px rgba(38, 140, 246, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(38, 140, 246, 0.36);
}

.anchor-target {
  position: relative;
  top: -90px;
  visibility: hidden;
}

.about-contact-form {
  padding: 28px 0;
}

.about-contact-form .about-container {
  width: min(var(--about-max-width), calc(100% - 40px));
  max-width: none;
  padding: 0;
}

.about-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  background: #ffffff;
}

.about-contact-main {
  padding: 40px 38px;
  background: #ffffff;
}

.about-contact-title {
  margin: 0;
  color: var(--about-blue-deep);
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.about-contact-lead {
  margin: 14px 0 0;
  color: #475569;
  font-size: 19px;
  line-height: 1.45;
  max-width: 46ch;
}

.about-contact-main .placeholder-var {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(29, 109, 255, 0.12);
  color: #1d6dff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.about-contact-fields {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.about-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-contact-field {
  display: grid;
  gap: 8px;
}

.about-contact-field label {
  margin: 0;
  color: #334155;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.about-contact-field input,
.about-contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-contact-field input {
  min-height: 64px;
  padding: 0 18px;
}

.about-contact-field textarea {
  min-height: 168px;
  resize: vertical;
  padding: 14px 18px;
}

.about-contact-field input::placeholder,
.about-contact-field textarea::placeholder {
  color: #94a3b8;
}

.about-contact-field input:focus,
.about-contact-field textarea:focus {
  border-color: rgba(38, 140, 246, 0.85);
  box-shadow: 0 0 0 3px rgba(38, 140, 246, 0.18);
}

.about-contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.48;
}

.about-contact-privacy input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--about-blue);
  flex: 0 0 auto;
}

.about-contact-privacy span {
  min-width: 0;
}

.about-contact-privacy i {
  color: #9ca3af;
  margin-right: 6px;
}

.about-contact-privacy a {
  color: #1d6dff;
  text-decoration: none;
}

.about-contact-privacy a:hover {
  text-decoration: underline;
}

.about-contact-submit {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  width: 100%;
  max-width: 390px;
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  background: linear-gradient(135deg, #1660d9 0%, #1d6dff 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(29, 109, 255, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.about-contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(29, 109, 255, 0.4);
}

.about-contact-submit i {
  font-size: 16px;
}

.about-contact-side {
  position: relative;
  padding: 42px 36px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a2a4a 0%, #1a5490 50%, #237fe2 100%);
  overflow: hidden;
}

.about-contact-side .about-contact-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.38;
}

.about-contact-side-glow {
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(29, 109, 255, 0.36);
  filter: blur(84px);
  pointer-events: none;
}

.about-contact-side h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(32px, 2.8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-contact-direct-list {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.about-contact-direct-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.about-contact-direct-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  font-size: 22px;
}

.about-contact-direct-item p {
  margin: 0;
}

.about-contact-direct-item p:first-child {
  color: rgba(226, 232, 240, 0.82);
  font-size: 15px;
  line-height: 1.2;
}

.about-contact-direct-item p:last-child {
  margin-top: 4px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 700;
}

.about-contact-side .placeholder-var {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.36);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ================================================================
   REVIEWS SECTION  (.about-reviews-block)
   ================================================================ */

.page-about .about-reviews-block {
  padding: 40px 0;
  background: #ffffff;
  position: relative;
}

/* Make reviews section visuals identical to index page tokens */
.page-about #reviews-block {
  --about-blue: #268cf6;
  --about-blue-dark: #1a6fc4;
  --about-blue-deep: #0a2a4a;
  --about-accent: #c0de3d;
  --about-text: #0f172a;
  --about-text-secondary: #475569;
  --about-border: rgba(38, 140, 246, 0.12);
  --about-card-shadow: 0 4px 20px rgba(10, 42, 74, 0.04), 0 1px 3px rgba(10, 42, 74, 0.02);
  --about-card-shadow-hover: 0 16px 40px rgba(10, 42, 74, 0.08), 0 4px 12px rgba(38, 140, 246, 0.06);
  --about-radius: 24px;
  --about-radius-sm: 12px;
  --s5: 48px;
}

/* Match reviews section heading styling to main page */
.page-about #reviews-block .about-sec-head {
  margin-bottom: var(--s5);
  position: relative;
}

.page-about #reviews-block .about-sec-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(192, 222, 61, 0.2);
  color: #4a5c0d;
  border: 1px solid rgba(192, 222, 61, 0.4);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}

.page-about #reviews-block .about-sec-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-about #reviews-block .about-sec-desc {
  margin: 16px auto 0;
  max-width: 56ch;
  color: var(--about-text-secondary);
  font-size: 18px;
  line-height: 1.6;
}

.page-about .about-reviews-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, rgba(38, 140, 246, 0.03) 100%);
  pointer-events: none;
}

.page-about .about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s4);
  position: relative;
  z-index: 1;
}

.page-about .about-review-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--about-border);
  border-radius: var(--about-radius);
  box-shadow: var(--about-card-shadow);
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.page-about .about-review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--about-blue) 0%, var(--about-accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-about .about-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--about-card-shadow-hover);
}

.page-about .about-review-card:hover::before {
  opacity: 1;
}

.page-about .about-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.page-about .about-review-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 16px;
}

.page-about .about-review-source {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(38, 140, 246, 0.1);
  color: var(--about-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-about .about-review-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 64px;
  color: rgba(192, 222, 61, 0.15);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.page-about .about-review-quote {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--about-text);
}

.page-about .about-review-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.page-about .about-review-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--about-blue-deep) 0%, var(--about-blue) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(38, 140, 246, 0.2);
}

.page-about .about-review-author {
  flex: 1;
  min-width: 0;
}

.page-about .about-review-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--about-blue-deep);
  line-height: 1.2;
}

.page-about .about-review-role {
  margin-top: 4px;
  font-size: 14px;
  color: var(--about-text-secondary);
  line-height: 1.3;
}

.page-about .about-review-date {
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 12px;
  color: #94a3b8;
  white-space: nowrap;
  background: #ffffff;
  padding-left: 10px;
}

/* Reviews Sliders (as on index page) */
.page-about .rv-slider-wrap {
  position: relative;
  padding-bottom: 36px;
}

.page-about .rv-slider-viewport {
  overflow: hidden;
  border-radius: var(--about-radius, 12px);
}

.page-about .rv-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.page-about .rv-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-about .rv-slider-wrap--photo {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-about .rv-slider-wrap--photo .rv-slider-track {
  gap: 16px;
}

.page-about .rv-slider-wrap--photo .rv-slide {
  flex: 0 0 calc((100% - 32px) / 3);
}

.page-about .rv-photo-slide {
  background: #f8fafc;
  border-radius: var(--about-radius, 12px);
  overflow: hidden;
}

.page-about .rv-photo-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.page-about .about-reviews-real > div[style*="text-align:center"] {
  max-width: 920px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-about .rv-slider-wrap--video {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-about .rv-slider-wrap--video .rv-slider-track {
  gap: 16px;
}

.page-about .rv-slider-wrap--video .rv-slide {
  flex: 0 0 calc((100% - 32px) / 3);
}

.page-about .rv-arrow {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--about-blue, #268cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  z-index: 2;
  padding: 0;
}

.page-about .rv-arrow:hover {
  background: var(--about-blue, #268cf6);
  color: #fff;
  border-color: var(--about-blue, #268cf6);
}

.page-about .rv-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.page-about .rv-arrow--prev {
  left: -22px;
}

.page-about .rv-arrow--next {
  right: -22px;
}

.page-about .rv-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-about .rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(38, 140, 246, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
  flex-shrink: 0;
}

.page-about .rv-dot.is-active {
  background: var(--about-blue, #268cf6);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .page-about .rv-slider-wrap--text .rv-slider-track {
    gap: 0;
  }

  .page-about .rv-slider-wrap--text .rv-slide {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .page-about .rv-arrow--prev {
    left: -10px;
  }

  .page-about .rv-arrow--next {
    right: -10px;
  }

  .page-about .rv-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .page-about .rv-slider-wrap--photo .rv-slider-track,
  .page-about .rv-slider-wrap--video .rv-slider-track {
    gap: 0;
  }

  .page-about .rv-slider-wrap--photo .rv-slide,
  .page-about .rv-slider-wrap--video .rv-slide {
    flex: 0 0 100%;
  }
}

/* ================================================================
   MISSION & VALUES SECTION  (.about-mission-block)
   ================================================================ */

.page-about .about-mission-block {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(47, 154, 255, 0.18), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(90, 219, 198, 0.12), transparent 34%),
    linear-gradient(120deg, #022747 0%, #03395f 56%, #045e8a 100%);
}

.page-about .about-mission-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(7, 35, 62, 0.16), rgba(11, 111, 174, 0.04)),
    radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px) 0 0 / 180px 180px;
}

.page-about .about-mission-block .about-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "head values"
    "mission values";
  gap: 18px 22px;
  align-items: start;
}

.page-about .about-mission-block .about-sec-head {
  grid-area: head;
  text-align: left;
  margin: 0;
}

.page-about .about-mission-block .about-sec-label {
  background: rgba(192, 222, 61, 0.12);
  border: 1px solid rgba(192, 222, 61, 0.42);
  color: #b7de3b;
}

.page-about .about-mission-block .about-sec-title {
  color: #eef6ff;
  font-size: clamp(30px, 3.2vw, 44px);
}

/* Full-width mission statement card */
.page-about .about-mission-card {
  grid-area: mission;
  position: relative;
  margin: 0;
  padding: 18px 20px 20px;
  background: rgba(8, 50, 88, 0.42);
  border: 1px solid rgba(153, 201, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(2, 22, 43, 0.24);
}

/* Giant decorative background quote mark */
.page-about .about-mission-quote-icon {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 34px;
  line-height: 1;
  color: rgba(166, 212, 255, 0.22);
  pointer-events: none;
}

/* Mission statement text */
.page-about .about-mission-text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 30px;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.42;
  font-weight: 500;
  color: #d8e8f8;
  max-width: 34ch;
  text-wrap: pretty;
}

/* CEO attribution row */
.page-about .about-mission-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(175, 205, 236, 0.26);
}

.page-about .about-mission-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1472d5 0%, #2bb2ff 100%);
  border: 1px solid rgba(202, 229, 255, 0.42);
  box-shadow: 0 8px 18px rgba(2, 22, 44, 0.28);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.page-about .about-mission-author-name {
  font-size: 17px;
  font-weight: 700;
  color: #f5fbff;
  line-height: 1.2;
}

.page-about .about-mission-author-role {
  margin-top: 3px;
  font-size: 12px;
  color: #8eb7dd;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.page-about .about-values-grid {
  grid-area: values;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Single value card */
.page-about .about-value-card {
  background: linear-gradient(140deg, rgba(8, 50, 88, 0.84), rgba(10, 70, 113, 0.74));
  border: 1px solid rgba(153, 201, 255, 0.22);
  border-radius: 16px;
  padding: 16px;
  min-height: 0;
  box-shadow: 0 14px 30px rgba(2, 22, 43, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about .about-value-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(2, 22, 43, 0.28);
}

/* Icon shell */
.page-about .about-value-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 219, 255, 0.14);
  border: 1px solid rgba(183, 219, 255, 0.26);
  color: #ebf6ff;
  font-size: 16px;
  margin-bottom: 10px;
}

.page-about .about-value-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #f3f9ff;
  line-height: 1.22;
}

.page-about .about-value-desc {
  margin: 0;
  font-size: 14px;
  color: #9dc2e2;
  line-height: 1.4;
}

.page-about .about-value-card:last-child {
  grid-column: 1 / -1;
}

/* ══════════════════════════════════════════
   MEDIA / SPEAKING BLOCK — Виступи та ЗМІ
   ══════════════════════════════════════════ */

.page-about .about-media-block {
  padding: 28px 0;
  background: #ffffff;
}

.page-about .about-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s4);
  align-items: start;
}

.page-about .about-media-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.page-about .about-media-photo-wrap {
  aspect-ratio: 1 / 1;
  border-radius: var(--about-radius);
  border: 1px solid var(--about-border);
  background: #f8fbff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about .about-media-photo-placeholder {
  text-align: center;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  font-size: 14px;
  padding: var(--s4);
}

.page-about .about-media-placeholder-icon {
  font-size: 52px;
  color: rgba(29, 109, 255, 0.22);
}

.page-about .about-media-video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--about-radius);
  background: linear-gradient(135deg, #0a1628 0%, #0f2a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-about .about-media-video-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: var(--s4);
}

.page-about .about-media-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 4px;
  padding-left: 4px; /* optical centering of play triangle */
}

.page-about .about-media-video-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 400;
}

.page-about .about-media-caption {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 4px;
}

.page-about .about-media-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
  justify-content: center;
}

.page-about .about-media-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid var(--about-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--about-blue-deep);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.page-about .about-media-badge i {
  color: #1660d9;
  font-size: 15px;
}

/* ══════════════════════════════════════
   FAQ BLOCK — Питання та відповіді
   ══════════════════════════════════════ */

.page-about .about-faq-block {
  padding: 28px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
}

.page-about .about-faq-list {
  columns: 2;
  column-gap: var(--s3);
}

.page-about .about-faq-item {
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: var(--s2);
  background: #ffffff;
  border: 1px solid var(--about-border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.page-about .about-faq-item[open] {
  box-shadow: var(--about-card-shadow);
}

.page-about .about-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--about-blue-deep);
  user-select: none;
  -webkit-user-select: none;
  line-height: 1.35;
}

.page-about .about-faq-q::-webkit-details-marker {
  display: none;
}

.page-about .about-faq-q::marker {
  display: none;
}

.page-about .about-faq-q span {
  flex: 1;
}

.page-about .about-faq-chevron {
  color: #1660d9;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.page-about .about-faq-item[open] .about-faq-chevron {
  transform: rotate(180deg);
}

.page-about .about-faq-a {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.page-about .about-faq-a p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .about-page {
    padding: 24px 0 72px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-illustration-card {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }

  .about-illustration {
    transform: none;
  }

  .about-integrator-card--overlap {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    max-width: none;
    margin-top: 16px;
  }

  .page-about .about-mission-block .about-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "mission"
      "values";
    gap: 18px;
  }

  .page-about .about-mission-text {
    max-width: 32ch;
  }

  /* Values: 2 columns on large tablet */
  .page-about .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  /* Reviews: stack to 1 column */
  .page-about .about-reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Values: 2 columns */
  .page-about .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Media: stack to 1 column */
  .page-about .about-media-grid {
    grid-template-columns: 1fr;
  }

  /* Mission text scale */
  .page-about .about-mission-text {
    font-size: clamp(17px, 3.3vw, 22px);
    padding-left: 24px;
    max-width: none;
  }

  .about-facts .about-container {
    padding: 32px 24px;
  }

  .about-facts-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-facts-text {
    text-align: left;
    max-width: none;
  }

  .about-facts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .about-history-grid {
    grid-template-columns: 1fr;
  }

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

  .about-history-story-title {
    font-size: clamp(26px, 6vw, 38px);
  }

  .about-history-subtitle {
    font-size: clamp(19px, 4.8vw, 22px);
  }

  .about-map-grid,
  .about-sections-grid {
    grid-template-columns: 1fr;
  }

  .page-about .team-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-about .section.section-alt h2 {
    font-size: clamp(30px, 6vw, 44px);
  }

  .page-about .timeline::before {
    left: 14px;
    transform: none;
  }

  .page-about .tl-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-about .tl-dot {
    left: 14px;
    top: 20px;
    transform: translate(-50%, 0);
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .page-about .tl-card {
    width: 100%;
    margin: 0 !important;
    padding: 12px;
  }

  .page-about .tl-item:nth-child(odd) .tl-card,
  .page-about .tl-item:nth-child(even) .tl-card {
    grid-column: 1;
    justify-self: stretch;
    margin-left: 18px !important;
  }

  .page-about .tl-title {
    font-size: 20px;
  }

  .page-about .tl-text {
    font-size: 15px;
  }

  .page-about .about-cases-list {
    grid-template-columns: 1fr;
  }

  .page-about .about-case-card {
    flex-basis: 100%;
  }

  .page-about .about-why-grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .page-about .about-integrator-card--why {
    max-width: none;
  }

  .page-about .about-why-illustration {
    width: 100%;
  }

  .page-about .about-sec-title {
    font-size: clamp(28px, 5.5vw, 40px);
  }

  .page-about #about-trust .about-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-about #about-trust .about-docs-mini {
    grid-template-columns: 1fr;
  }

  .page-about .about-security-grid {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .page-about .about-security-icon-shell {
    width: 263px;
    height: 263px;
  }

  .page-about .about-security-photo {
    width: 229px;
    height: 229px;
  }

  .page-about .about-security-icon-shell i {
    font-size: 58px;
  }

  .page-about .about-legal-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-about .about-legal-lead {
    max-width: none;
  }

  .page-about .about-legal-cert-grid {
    height: auto;
    grid-template-rows: none;
  }

  .page-about .about-legal-cert-card {
    height: auto;
    min-height: 148px;
  }

  .about-contact-shell {
    grid-template-columns: 1fr;
  }

  .about-nav-link {
    font-size: clamp(24px, 7vw, 38px);
    padding: 14px 0;
  }
}

@media (max-width: 640px) {
  /* Reviews: compact padding on mobile */
  .page-about .about-review-card {
    padding: 24px;
  }

  .page-about .about-review-icon {
    top: 20px;
    right: 20px;
    font-size: 48px;
  }

  /* Values: single column on mobile */
  .page-about .about-values-grid {
    grid-template-columns: 1fr;
  }

  /* Media block: compact photo size */
  .page-about .about-media-photo-wrap {
    min-height: 260px;
    aspect-ratio: auto;
  }

  .page-about .about-media-badges {
    gap: var(--s1);
  }

  .page-about .about-media-badge {
    padding: 9px 16px;
    font-size: 13px;
  }

  /* FAQ: single column on mobile */
  .page-about .about-faq-list {
    columns: 1;
  }

  .page-about .about-faq-q {
    font-size: 14px;
    padding: 14px 16px;
  }

  .page-about .about-faq-a {
    padding: 0 16px 14px;
  }

  /* Mission card: compact padding */
  .page-about .about-mission-card {
    padding: 14px;
  }

  .page-about .about-mission-author-name {
    font-size: 16px;
  }

  .page-about .about-mission-author-role {
    font-size: 12px;
  }

  .page-about .about-mission-block {
    padding: 24px 0;
  }

  .page-about .about-value-card {
    min-height: auto;
  }

  .page-about .about-value-card:last-child {
    grid-column: auto;
  }

  .about-hero .about-container {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .about-facts .about-container {
    width: min(var(--about-max-width), calc(100% - 28px));
    padding: 24px 18px;
  }

  .about-history .about-container {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .page-about .section.section-blue .container {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .page-about .section.section-alt .container {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .page-about .about-cases-block .about-container,
  .page-about .about-why-block .about-container {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .page-about #about-trust .about-container {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .page-about .about-security .about-container {
    width: min(var(--about-max-width), calc(100% - 28px));
    padding: 24px 18px;
  }

  .page-about .about-legal-block > .max-w-7xl {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .about-contact-form .about-container {
    width: min(var(--about-max-width), calc(100% - 28px));
  }

  .about-container {
    padding: 0 16px;
  }

  .about-page {
    padding: 18px 0 56px;
  }

  .about-bullets {
    grid-template-columns: 1fr;
  }

  .about-map-grid,
  .about-sections-grid {
    grid-template-columns: 1fr;
  }

  .about-history-stats {
    grid-template-columns: 1fr;
  }

  .about-hero-left,
  .about-history-approach-card,
  .about-history-note,
  .about-map-grid,
  .about-section-card {
    border-radius: 16px;
    padding: 18px;
  }

  .about-contact-main,
  .about-contact-side {
    padding: 24px 18px;
  }

  .about-history-image {
    border-radius: 16px;
  }

  .about-integrator-card {
    border-radius: 14px;
    padding: 16px;
  }

  .about-illustration-card {
    padding: 14px;
  }

  .about-integrator-card--overlap {
    bottom: 0;
    left: 0;
  }

  .about-integrator-title {
    font-size: 24px;
  }

  .about-h1 {
    font-size: clamp(22px, 6.5vw, 36px);
    white-space: normal;
  }

  .about-lead {
    font-size: 16px;
  }

  .about-cta-row {
    flex-direction: column;
  }

  .about-btn {
    width: 100%;
  }

  .about-section-card h2 {
    font-size: 28px;
  }

  .about-facts-card {
    padding: 14px;
  }

  .about-facts-card strong {
    font-size: 28px;
  }

  .about-facts-card span {
    font-size: 17px;
  }

  .about-facts-list {
    grid-template-columns: 1fr;
  }

  .about-facts-text {
    font-size: 16px;
  }

  .about-history-lead {
    font-size: 16px;
  }

  .page-about .section.section-blue h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .page-about .section.section-blue .section-desc {
    font-size: 16px;
  }

  .page-about .team-photo {
    min-height: auto;
    padding: 14px 14px 0;
  }

  .page-about .team-info {
    padding: 14px;
  }

  .page-about .team-name {
    font-size: 20px;
  }

  .page-about .about-tools-proof {
    margin-top: var(--s3);
    padding: 18px 14px;
  }

  .page-about .about-tools-proof-head h3 {
    font-size: clamp(24px, 7.3vw, 34px);
  }

  .page-about .about-tools-proof-head p {
    font-size: 15px;
  }

  .page-about .about-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page-about .about-tool-category {
    min-height: 104px;
    padding: 12px 10px;
  }

  .page-about .about-tool-category-title {
    font-size: 16px;
  }

  .page-about .about-tool-list {
    margin-top: 8px;
    gap: 4px;
  }

  .page-about .about-tool-list li {
    font-size: 13px;
  }

  .page-about .tl-year {
    font-size: 26px;
  }

  .page-about .tl-title {
    font-size: 19px;
  }

  .page-about .tl-text {
    font-size: 14px;
    line-height: 1.35;
  }

  .page-about .about-sec-desc {
    font-size: 16px;
  }

  .page-about .about-case-media img {
    height: 210px;
  }

  .page-about .about-case-body h3 {
    font-size: 22px;
  }

  .page-about .about-case-body p {
    font-size: 14px;
  }

  .page-about .about-case-actions {
    flex-direction: column;
  }

  .page-about .about-case-btn {
    width: 100%;
  }

  .page-about .about-cases-slider {
    grid-template-columns: 44px 1fr 44px;
  }

  .page-about .about-cases-arrow {
    width: 36px;
    height: 36px;
  }

  .page-about .about-why-num {
    font-size: 40px;
    min-width: 48px;
  }

  .page-about .about-why-text h3 {
    font-size: 18px;
  }

  .page-about .about-why-text p {
    font-size: 14px;
  }

  .page-about #about-trust .about-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-security-title {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .page-about .about-security-sub {
    font-size: 16px;
  }

  .page-about .about-security-list strong {
    font-size: 17px;
  }

  .page-about .about-security-list span {
    font-size: 14px;
  }

  .page-about .about-legal-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .page-about .about-legal-lead {
    font-size: 17px;
  }

  .page-about .about-legal-row {
    flex-direction: column;
    gap: 6px;
  }

  .page-about .about-legal-value {
    text-align: left;
  }

  .page-about .about-legal-cert-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-legal-cert-card {
    min-height: 132px;
  }

  .page-about .about-legal-cert-card i {
    font-size: 50px;
  }

  .about-contact-title {
    font-size: clamp(32px, 10vw, 44px);
  }

  .about-contact-lead {
    font-size: 17px;
  }

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

  .about-contact-field input,
  .about-contact-field textarea {
    font-size: 16px;
  }

  .about-contact-submit {
    width: 100%;
    max-width: none;
  }

  .about-contact-side h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .about-contact-direct-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .about-contact-direct-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .about-history-approach {
    font-size: 16px;
  }

  .about-history-points li {
    font-size: 15px;
    padding-left: 0;
  }

  .about-history-points li i {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .about-integrator-stats {
    grid-template-columns: 1fr;
  }

  .page-about .about-tools-grid {
    grid-template-columns: 1fr;
  }
}
