/* ==================== 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 ==================== */

/* ==================== Marketing Audit Page Styles ==================== */
/* Файл: pages/marketing-audit/marketing-audit.css */
/* Незалежні стилі для consulting-audit.html */

/* ==================== CSS Variables ==================== */
/* Згідно з design.md: синій #268CF6, зелений #C0DE3D, фіолетовий #E4DDFF/#F5F3FF/#5B46A6 */
:root {
  --landing-max-width: 1400px;

  /* Фони — чергування */
  --landing-bg: #ffffff;
  --landing-bg-alt: #f8fafc;
  --landing-bg-blue: linear-gradient(135deg, #0a2a4a 0%, #1a5490 50%, #237FE2 100%);
  --landing-bg-violet: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);

  /* Первинний — Синій */
  --brand: #268CF6;
  --brand-dark: #1a6fc4;
  --brand-deep: #0d4a8a;
  --brand-light: rgba(38, 140, 246, 0.1);
  --brand-gradient: linear-gradient(135deg, #268CF6 0%, #1a6fc4 100%);

  /* Акцентний — Зелений */
  --landing-accent: #C0DE3D;
  --landing-accent-dark: #9fb82e;
  --landing-accent-light: rgba(192, 222, 61, 0.15);
  --accent-gradient: linear-gradient(135deg, #C0DE3D 0%, #9fb82e 100%);

  /* Фіолетовий акцент */
  --violet-border: #E4DDFF;
  --violet-bg: #F5F3FF;
  --violet-text: #5B46A6;
  --violet-gradient: linear-gradient(135deg, #5B46A6 0%, #7C3AED 100%);

  /* Текст */
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-light: #94a3b8;

  /* Картки — преміум стиль */
  --landing-card-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --landing-card-hover-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  --landing-radius: 20px;
  --landing-radius-sm: 12px;
  --landing-radius-lg: 28px;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: blur(20px);

  /* Уніфікований збільшений розмір ілюстрацій */
  --landing-art-medium-width: clamp(260px, 23vw, 340px);
  --landing-art-medium-height: clamp(190px, 17vw, 260px);
}

/* Візуально відокремлюємо аудит від сторінки комплексного ведення */
.page-marketing-audit {
  --brand: #0f766e;
  --brand-dark: #0b5d57;
  --brand-deep: #083f3d;
  --brand-light: rgba(15, 118, 110, 0.12);
  --brand-gradient: linear-gradient(135deg, #0f766e 0%, #0b5d57 100%);
  /* Перевизначаємо глобальний heading gradient (чорний→синій) на чорний→зелений */
  --heading-gradient-black-blue: linear-gradient(90deg, #0f172a 0%, #0f5d57 55%, #0f766e 100%);
  --landing-accent: #f59e0b;
  --landing-accent-dark: #b45309;
  --landing-accent-light: rgba(245, 158, 11, 0.18);
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* ==================== Page Background ==================== */
.page-landing {
  background: var(--landing-bg);
}

@supports (content-visibility: auto) {
  .page-landing .landing-calc-v3,
  .page-landing .landing-faq,
  .page-landing .landing-cta-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

/* ==================== Landing Container ==================== */
.landing-container {
  max-width: var(--landing-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== Section Base ==================== */
.landing-section {
  padding: 80px 0;
  background: var(--landing-bg);
}

.landing-section--alt {
  background: var(--landing-bg-alt);
}

.landing-section__inner {
  max-width: var(--landing-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Єдиний вертикальний ритм між основними секціями сторінки */
.page-marketing-audit #website-development-benefits,
.page-marketing-audit .landing-services-block,
.page-marketing-audit .researcher-section,
.page-marketing-audit #landing-types-packages,
.page-marketing-audit #contact,
.page-marketing-audit #cta-offer,
.page-marketing-audit #landing-process,
.page-marketing-audit #faq,
.page-marketing-audit .landing-cta-section {
  margin-top: 56px;
}

/* Відступ між FAQ та footer на сторінці marketing-audit (через FAQ, щоб зберегти його фон) */
.page-marketing-audit .landing-faq {
  padding-bottom: 84px;
}

@media (max-width: 980px) {
  .page-marketing-audit #website-development-benefits,
  .page-marketing-audit .landing-services-block,
  .page-marketing-audit .researcher-section,
  .page-marketing-audit #landing-types-packages,
  .page-marketing-audit #contact,
  .page-marketing-audit #cta-offer,
  .page-marketing-audit #landing-process,
  .page-marketing-audit #faq,
  .page-marketing-audit .landing-cta-section {
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .page-marketing-audit #website-development-benefits,
  .page-marketing-audit .landing-services-block,
  .page-marketing-audit .researcher-section,
  .page-marketing-audit #landing-types-packages,
  .page-marketing-audit #contact,
  .page-marketing-audit #cta-offer,
  .page-marketing-audit #landing-process,
  .page-marketing-audit #faq,
  .page-marketing-audit .landing-cta-section {
    margin-top: 28px;
  }
}

/* Фіксуємо container проти Tailwind і тримаємо єдину ширину 1400px */
.page-marketing-audit .container {
  width: 100%;
  max-width: var(--landing-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Зменшуємо відступ низу у Hero на consulting (успадковує page-landing: 80px) */
.page-marketing-audit .hero-light--page {
  padding-bottom: 48px;
}

@media (max-width: 768px) {
  .page-marketing-audit .hero-image-frame {
    /* Ще +15% до поточної висоти блоку зображення на мобільних */
    aspect-ratio: 1400 / 1242;
  }

  .page-marketing-audit .hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* ==================== Section Header ==================== */
.landing-head {
  max-width: 800px;
  margin-bottom: 48px;
}

.landing-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(192, 222, 61, 0.2), rgba(192, 222, 61, 0.1));
  color: var(--landing-accent-dark);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(192, 222, 61, 0.3);
}

.landing-kicker i {
  font-size: 14px;
}

.landing-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.landing-title span {
  color: var(--brand);
}

.landing-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==================== Hero Section (Landing) ==================== */
.page-landing .hero-light--page {
  min-height: auto;
  padding: 48px 0 48px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(38, 140, 246, 0.08), transparent),
    var(--landing-bg);
}

.page-landing .hero-shell {
  max-width: var(--landing-max-width);
}

.page-landing .hero-price {
  background: linear-gradient(135deg, rgba(192, 222, 61, 0.15), rgba(192, 222, 61, 0.05));
  border: 2px solid var(--landing-accent);
  border-radius: 16px;
}

.page-landing .hero-price-value {
  color: var(--landing-accent-dark);
  font-weight: 800;
}

/* ==================== Blue Header Section ==================== */
.landing-blue-header {
  position: relative;
  padding: 10px 0;
  background: linear-gradient(135deg, #0a2a4a 0%, #0f766e 50%, #083f3d 100%);
  overflow: hidden;
}

.landing-blue-header .waves-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

.landing-blue-header__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.landing-blue-header__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.landing-blue-header__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 600px;
}

.landing-blue-header__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-blue-header__meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.landing-blue-header__meta-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.landing-blue-header__meta-item i {
  font-size: 18px;
  color: var(--landing-accent);
  width: 24px;
  text-align: center;
}

@media (max-width: 900px) {
  .landing-blue-header__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .landing-blue-header__meta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .landing-blue-header__meta-item {
    flex: 1 1 auto;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .landing-blue-header {
    padding: 10px 0;
  }

  .landing-blue-header__text {
    padding: 0 5px;
  }

  .landing-blue-header__meta-item {
    min-width: 100%;
  }
}

/* ==================== Services Cards Grid — CREATIVE COMPACT ==================== */
.landing-services-block {
  padding: 24px 0 64px;
  background: #f8fafc;
  position: relative;
}

.landing-services-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../../images/marketing/landing-types-background.webp") center / cover no-repeat;
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

.landing-services-block .wrap {
  position: relative;
  z-index: 1;
}

.landing-services-block .wrap {
  max-width: var(--landing-max-width);
  padding: 0 20px;
  margin: 0 auto;
}

.landing-services-block .headline {
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.landing-services-block .headline-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  column-gap: clamp(8px, 1vw, 14px);
}

.landing-services-block .headline h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.16;
  grid-column: 1;
  justify-self: center;
  max-width: none;
  margin: 0;
  text-align: center;
}

.landing-services-block .headline-art {
  width: calc(var(--landing-art-medium-width) * 1.19 * 0.7225);
  height: calc(var(--landing-art-medium-height) * 1.19 * 0.7225);
  grid-column: 2;
  justify-self: end;
  margin: 0;
  flex-shrink: 0;
  object-fit: contain;
}

.landing-services-block .headline p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 440px;
  color: var(--text-secondary);
  text-align: right;
}

/* BENTO GRID — Asymmetric Creative Layout */
.landing-services-block .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  isolation: isolate;
}

.landing-services-block .grid::before {
  content: none;
}

.landing-services-block .grid > * {
  position: relative;
  z-index: 1;
}

/* Card Base — Glassmorphism Style */
.landing-services-block .card {
  position: relative;
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.landing-services-block .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-services-block .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.landing-services-block .card:hover::before {
  opacity: 1;
}

/* Card 1 — Wide Hero Card */
.landing-services-block .card--tech {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #f8fafd 0%, #fff 100%);
  border-left: 4px solid var(--brand);
}

/* Combined Card Layout */
.landing-services-block .card--tech-combined__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
}

.landing-services-block .card--tech-combined__main {
  min-width: 0;
}

.landing-services-block .card--tech-combined__process {
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(192, 222, 61, 0.1) 0%, #fff 60%);
  border: 1px solid rgba(192, 222, 61, 0.18);
}

.landing-services-block .card--process .card__top {
  margin-bottom: 16px;
}

/* Process Flow — Horizontal Steps */
.landing-services-block .process-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.landing-services-block .process-flow::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.landing-services-block .process-step {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.landing-services-block .process-step:hover {
  background: rgba(38, 140, 246, 0.08);
  border-color: rgba(38, 140, 246, 0.2);
}

.landing-services-block .process-step--final {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-dark));
  border-color: var(--landing-accent);
  color: #1a2e05;
  font-weight: 700;
}

.landing-services-block .process-arrow {
  margin-left: 10px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  opacity: 0.6;
  transform: rotate(90deg);
}

/* Marketing audit: keep stages in one row inside the right process card */
.page-marketing-audit .landing-services-block .card--tech-combined__process .process-flow {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  margin-top: 10px;
}

.page-marketing-audit .landing-services-block .card--tech-combined__process .process-step {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 8px 10px;
  font-size: 13px;
}

.page-marketing-audit .landing-services-block .card--tech-combined__process .process-arrow {
  flex: 0 0 auto;
  margin: 0;
  font-size: 16px;
  transform: none;
}

/* Results Card — Hidden on Desktop, show on mobile */
.landing-services-block .card--results {
  display: none;
}

/* Third block inside combined grid — full width row */
.landing-services-block .card--tech-combined__after {
  grid-column: 1 / -1;
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(38, 140, 246, 0.06) 0%, #fff 60%);
  border: 1px solid rgba(38, 140, 246, 0.12);
}

/* Card Variants */
.landing-services-block .card--blue {
  background: linear-gradient(145deg, rgba(38, 140, 246, 0.06) 0%, #fff 60%);
}

.landing-services-block .card--accent {
  background: linear-gradient(145deg, rgba(192, 222, 61, 0.1) 0%, #fff 60%);
  border-color: rgba(192, 222, 61, 0.15);
}

/* Card 2 — title + badge in one row, subtitle on full width */
.landing-services-block .card--accent .card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: start;
}

.landing-services-block .card--accent .card__top > div {
  display: contents;
}

.landing-services-block .card--accent .title {
  grid-column: 1;
  margin: 0;
}

.landing-services-block .card--accent .badge {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.landing-services-block .card--accent .sub {
  grid-column: 1 / -1;
  margin-top: 0;
  max-width: none;
}

/* Card Top — Compact Header */
.landing-services-block .card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 16px;
}

/* Title — Compact */
.landing-services-block .title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.16;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

/* Icon — Mini */
.landing-services-block .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, rgba(38, 140, 246, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-services-block .icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Sub — Minimal */
.landing-services-block .sub {
  font-size: 16px;
  line-height: 1.55;
  margin-top: 12px;
  color: var(--text-secondary);
  max-width: none;
}

.landing-services-block .card--process .sub {
  margin-top: 8px;
}

/* Badge — Micro Pill */
.landing-services-block .badge {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-dark));
  color: #1a2e05;
  border: none;
  font-weight: 700;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 8px;
  white-space: nowrap;
}

/* Pills — Compact Tags */
.landing-services-block .pills {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 10px;
}

.landing-services-block .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.landing-services-block .pill:hover {
  background: rgba(38, 140, 246, 0.08);
  border-color: rgba(38, 140, 246, 0.2);
  transform: translateY(-1px);
}

/* Dot — Micro Indicator */
.landing-services-block .pill .dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-services-block .pill .dot svg {
  width: 12px;
  height: 12px;
  fill: #1a2e05;
}

/* CTA — Compact */
.landing-services-block .cta {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-services-block .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(38, 140, 246, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.landing-services-block .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(38, 140, 246, 0.35);
}

.landing-services-block .btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.landing-services-block .hint {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Illustrations — Hidden for Compact */
.landing-services-block .illu {
  display: none;
}

/* ==================== Benefits Section — Світла тема з синіми акцентами ==================== */
.landing-benefits {
  padding: 10px 0;
  background: #f8fafc;
  position: relative;
}

.landing-benefits .container {
  max-width: var(--landing-max-width);
}

.preimslick__head {
  margin-bottom: 40px;
}

.preimslick__head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.preimslick__head p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
}

/* ===== Header з навігацією ===== */
.preimslick__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.preimslick__head h2 {
  margin: 0;
}

.preimslick__head p {
  margin: 8px 0 0;
  color: var(--text-secondary);
}

.preimslick__nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.preimslick__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.preimslick__slider-col {
  min-width: 0;
}

.preimslick__photo {
  width: 100%;
  margin: 0;
  min-height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.preimslick__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.preimslick__arrow {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 16px;
  transition: all 0.3s ease;
}

.preimslick__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.preimslick__arrow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.preimslick__arrow:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.preimslick__arrow:disabled:hover {
  background: #fff;
  color: var(--brand);
  border-color: rgba(15, 23, 42, 0.12);
}

/* ===== Slider Wrapper ===== */
.landing-benefits .container {
  overflow: visible;
}

.preimslick__viewport {
  width: 100%;
  overflow: hidden;
}

/* ===== Slider Container ===== */
.preimslick {
  --benefits-gap: 20px;
  display: flex;
  gap: var(--benefits-gap);
  width: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* ===== Dots Pagination ===== */
.preimslick__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.preimslick__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.preimslick__dot:hover {
  background: rgba(91, 70, 166, 0.4);
}

.preimslick__dot.active {
  background: var(--violet-text);
  width: 28px;
  border-radius: 5px;
}

.preimslick_item_in {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 24px 70px 24px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  min-height: 180px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  flex: 0 0 calc((100% - var(--benefits-gap)) / 2);
  width: calc((100% - var(--benefits-gap)) / 2);
  box-sizing: border-box;
}

.preimslick_item_in:hover {
  border-color: rgba(38, 140, 246, 0.3);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

/* Іконка + Заголовок разом зверху */
.preimslick_item_in > .preimslick_item_icon {
  position: absolute;
  top: 24px;
  left: 24px;
}

.preimslick_item_icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 140, 246, 0.1);
  border: none;
  color: var(--brand);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.preimslick_item_in:hover .preimslick_item_icon {
  background: var(--brand);
  color: #fff;
}

.preimslick_item_icon i {
  font-size: 18px;
}

.preimslick_item_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 56px;
}

.preimslick_item_name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 44px;
  text-align: left;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.preimslick_item_in:hover .preimslick_item_name {
  color: var(--brand);
}

.preimslick_item_text {
  margin: 0;
  padding-left: 0;
  margin-left: -52px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
}

.preimslick_item_num {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(91, 70, 166, 0.18);
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.preimslick_item_in:hover .preimslick_item_num {
  color: rgba(91, 70, 166, 0.3);
}

/* ===== Структурне чергування: Ліва колонка — СИНІЙ, Права — ЗЕЛЕНИЙ ===== */

/* ЛІВА КОЛОНКА (1, 3, 5, 7, 9) — Синій акцент */
.preimslick_item_in:nth-child(odd) .preimslick_item_icon {
  background: rgba(38, 140, 246, 0.1);
  color: #268CF6;
}
.preimslick_item_in:nth-child(odd) .preimslick_item_num {
  color: rgba(91, 70, 166, 0.18);
}
.preimslick_item_in:nth-child(odd):hover {
  border-color: rgba(38, 140, 246, 0.25);
}
.preimslick_item_in:nth-child(odd):hover .preimslick_item_icon {
  background: #268CF6;
  color: #fff;
}
.preimslick_item_in:nth-child(odd):hover .preimslick_item_name {
  color: #268CF6;
}

/* ПРАВА КОЛОНКА (2, 4, 6, 8, 10) — Зелений акцент */
.preimslick_item_in:nth-child(even) .preimslick_item_icon {
  background: rgba(192, 222, 61, 0.12);
  color: #8aad2a;
}
.preimslick_item_in:nth-child(even) .preimslick_item_num {
  color: rgba(91, 70, 166, 0.18);
}
.preimslick_item_in:nth-child(even):hover {
  border-color: rgba(192, 222, 61, 0.4);
}
.preimslick_item_in:nth-child(even):hover .preimslick_item_icon {
  background: #C0DE3D;
  color: #2a3d0a;
}
.preimslick_item_in:nth-child(even):hover .preimslick_item_name {
  color: #8aad2a;
}

/* ===== Benefits Static Layout (6 cards on one screen) ===== */
.landing-benefits--static {
  padding: 10px 0;
}

.landing-benefits--static .preimslick__head {
  display: block;
  margin-bottom: 20px;
}

.landing-benefits--static .preimslick__nav,
.landing-benefits--static .preimslick__dots {
  display: none !important;
}

.landing-benefits--static .preimslick__layout--static {
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.landing-benefits--static .preimslick__viewport {
  overflow: visible !important;
}

.landing-benefits--static .preimslick {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  transform: none !important;
}

.landing-benefits--static .preimslick_item_in {
  flex: initial !important;
  width: auto !important;
  max-width: none !important;
  min-height: 150px;
  padding: 12px 14px;
}

.landing-benefits--static .preimslick_item_in > .preimslick_item_icon {
  position: static;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.landing-benefits--static .preimslick_item_icon i {
  font-size: 14px;
}

.landing-benefits--static .preimslick_item_content {
  padding-left: 0;
  gap: 6px;
}

.landing-benefits--static .preimslick_item_name {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 0;
}

.landing-benefits--static .preimslick_item_text {
  margin-left: 0;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-benefits--static .preimslick_item_num {
  top: 10px;
  right: 10px;
  font-size: 26px;
}

.landing-benefits--static .preimslick__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  padding: 12px;
}

.landing-benefits--static .preimslick__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Fallback for older markup: enforce the same non-slider 6-card layout */
.landing-benefits .preimslick__nav,
.landing-benefits .preimslick__dots {
  display: none !important;
}

.landing-benefits .preimslick__layout {
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr) !important;
  align-items: stretch;
  gap: 18px;
}

.landing-benefits .preimslick__viewport {
  overflow: visible !important;
}

.landing-benefits .preimslick {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  transform: none !important;
}

.landing-benefits .preimslick_item_in {
  flex: initial !important;
  width: auto !important;
  max-width: none !important;
  min-height: 150px;
  padding: 12px 14px;
}

.landing-benefits .preimslick_item_in:nth-child(n+7) {
  display: none !important;
}

.landing-benefits .preimslick_item_in > .preimslick_item_icon {
  position: static;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.landing-benefits .preimslick_item_icon i {
  font-size: 14px;
}

.landing-benefits .preimslick_item_content {
  padding-left: 0;
  gap: 6px;
}

.landing-benefits .preimslick_item_name {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 0;
}

.landing-benefits .preimslick_item_text {
  margin-left: 0;
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-benefits .preimslick_item_num {
  top: 10px;
  right: 10px;
  font-size: 26px;
}

.landing-benefits .preimslick__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  padding: 12px;
}

.landing-benefits .preimslick__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==================== Landing Packages (After Pricing) ==================== */
.landing-types-packages {
  padding: 12px 0 88px;
  background:
    radial-gradient(circle at 8% 10%, rgba(38, 140, 246, 0.08), transparent 40%),
    radial-gradient(circle at 88% 85%, rgba(132, 184, 46, 0.08), transparent 44%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 46%, #f7f9fc 100%);
  position: relative;
  overflow: hidden;
}

.landing-types-packages .container {
  max-width: var(--landing-max-width);
}

.landing-types-packages__head {
  position: relative;
  max-width: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.landing-types-packages__head-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-types-packages__head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.landing-types-packages__head p {
  margin: 0;
  max-width: 100%;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.landing-pricing__head-photo {
  --pricing-head-photo-width: clamp(250px, 22vw, 340px);
  grid-area: photo;
  position: relative;
  display: block;
  width: 100%;
  max-width: var(--pricing-head-photo-width);
  height: auto;
  aspect-ratio: 3 / 2;
  pointer-events: none;
  user-select: none;
  justify-self: start;
}

.landing-pricing__head-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

/* LANDING PACKAGES: зменшуємо фото Counter.webp на 15% */
.landing-types-packages__head .landing-pricing__head-photo {
  max-width: calc(var(--pricing-head-photo-width) * 0.7225);
}

.landing-types-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.landing-types-packages__card {
  --pack-accent: #0a82d8;
  --pack-text: #123f67;
  --pack-border: rgba(38, 140, 246, 0.38);
  --pack-divider: rgba(17, 132, 231, 0.34);
  --pack-item-line: rgba(17, 132, 231, 0.26);
  --pack-sheet-top: #f8fcff;
  --pack-sheet-bottom: #edf7ff;
  --pack-bg-start: #eaf6ff;
  --pack-bg-end: #d9ecff;
  --pack-footer-start: #0a7bd0;
  --pack-footer-end: #0958a4;
  --pack-btn-start: #2aa1ff;
  --pack-btn-end: #0a63bd;
  --pack-button-shadow: rgba(10, 130, 216, 0.35);
  background: linear-gradient(170deg, var(--pack-bg-start) 0%, var(--pack-bg-end) 100%);
  border: 1px solid var(--pack-border);
  border-radius: 36px;
  padding: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 42px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-types-packages__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 7%, rgba(255, 255, 255, 0.84) 0 2.1px, transparent 2.2px),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.64) 0 1.7px, transparent 1.8px),
    radial-gradient(circle at 80% 13%, rgba(255, 255, 255, 0.72) 0 2px, transparent 2px),
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.44) 0 1.4px, transparent 1.5px);
  opacity: 0.52;
  pointer-events: none;
}

.landing-types-packages__card::after {
  content: "";
  position: absolute;
  inset: 56% -24% -24% 36%;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)),
    linear-gradient(148deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.landing-types-packages__card > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .landing-types-packages__card:hover {
    transform: translateY(-6px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 28px 50px rgba(15, 23, 42, 0.2);
    border-color: var(--pack-border);
  }
}

.landing-types-packages__card--start {
  --pack-accent: #0a82d8;
  --pack-text: #0b3f66;
  --pack-border: rgba(36, 141, 239, 0.4);
  --pack-divider: rgba(17, 132, 231, 0.34);
  --pack-item-line: rgba(17, 132, 231, 0.22);
  --pack-sheet-top: #f8fcff;
  --pack-sheet-bottom: #eaf6ff;
  --pack-button-shadow: rgba(10, 130, 216, 0.28);
  --pack-bg-start: #ebf7ff;
  --pack-bg-end: #d7edff;
  --pack-footer-start: #0a7bd0;
  --pack-footer-end: #0958a4;
  --pack-btn-start: #2aa1ff;
  --pack-btn-end: #0a63bd;
}

.landing-types-packages__card--growth {
  --pack-accent: #5f2dbc;
  --pack-text: #47217a;
  --pack-border: rgba(109, 68, 190, 0.38);
  --pack-divider: rgba(109, 68, 190, 0.34);
  --pack-item-line: rgba(109, 68, 190, 0.22);
  --pack-sheet-top: #fbf8ff;
  --pack-sheet-bottom: #f2e8ff;
  --pack-button-shadow: rgba(95, 45, 188, 0.28);
  --pack-bg-start: #f6ebff;
  --pack-bg-end: #ecd8ff;
  --pack-footer-start: #6730c6;
  --pack-footer-end: #4d21a1;
  --pack-btn-start: #8c4dff;
  --pack-btn-end: #5826ba;
  outline: 3px solid rgba(109, 68, 190, 0.5);
  outline-offset: 0px;
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 28px 56px rgba(95, 45, 188, 0.22);
}

.landing-types-packages__card--business {
  --pack-accent: #3f8f0a;
  --pack-text: #305b16;
  --pack-border: rgba(127, 176, 43, 0.42);
  --pack-divider: rgba(127, 176, 43, 0.42);
  --pack-item-line: rgba(127, 176, 43, 0.24);
  --pack-sheet-top: #fcfff4;
  --pack-sheet-bottom: #f1f9df;
  --pack-button-shadow: rgba(63, 143, 10, 0.28);
  --pack-bg-start: #eff8d2;
  --pack-bg-end: #deedb0;
  --pack-footer-start: #4f8e12;
  --pack-footer-end: #386d0d;
  --pack-btn-start: #82c915;
  --pack-btn-end: #4d8d0f;
}

.landing-types-packages__media {
  position: relative;
  height: clamp(170px, 17vw, 235px);
  overflow: hidden;
}

.landing-types-packages__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.landing-types-packages__media::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -64px;
  height: 148px;
  background: radial-gradient(92% 84% at 50% 0%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0.9) 56%, #ffffff 76%);
  pointer-events: none;
}

.landing-types-packages__card--growth::after {
  inset: 60% -22% -18% 40%;
  background:
    linear-gradient(145deg, rgba(181, 130, 245, 0.26), rgba(181, 130, 245, 0)),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.landing-types-packages__card--business::after {
  inset: 60% -24% -18% 38%;
  background:
    repeating-linear-gradient(
      132deg,
      rgba(136, 191, 37, 0.22) 0 2px,
      rgba(136, 191, 37, 0) 2px 8px
    ),
    radial-gradient(circle at 22% 10%, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

.landing-types-packages__card-head {
  display: grid;
  gap: 8px;
  text-align: center;
  margin: -40px 12px 0;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--pack-divider);
  border-radius: 40px 40px 16px 16px;
  background: linear-gradient(180deg, var(--pack-sheet-top) 0%, var(--pack-sheet-bottom) 100%);
  position: relative;
}

.landing-types-packages__card-head::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--pack-divider) 24%, var(--pack-divider) 76%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.landing-types-packages__card h3 {
  margin: 0;
  color: var(--pack-accent);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: none;
}

.landing-types-packages__card-head p {
  margin: 0;
  color: var(--pack-text);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: pretty;
}

.landing-types-packages__meta {
  margin: 18px 28px 12px;
  color: var(--pack-accent);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.landing-types-packages__lead {
  margin: 0 28px 10px;
  color: var(--pack-text);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.landing-types-packages__label {
  margin: 0 28px 8px;
  color: var(--pack-accent);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.landing-types-packages__list {
  margin: 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  flex: 1 1 auto;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  backdrop-filter: blur(1px);
}

.landing-types-packages__list li {
  position: relative;
  margin: 0;
  padding: 12px 16px 12px 38px;
  color: var(--pack-text);
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid var(--pack-item-line);
  font-weight: 500;
}

.landing-types-packages__list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--pack-accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
}

.landing-types-packages__list li:last-child {
  border-bottom: 0;
}

.landing-types-packages__best {
  margin: 12px 28px 0;
  color: var(--pack-text);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.landing-types-packages__footer {
  margin-top: 18px;
  padding: 18px 24px 22px;
  border-top: 1px solid var(--pack-divider);
  background: linear-gradient(180deg, var(--pack-footer-start) 0%, var(--pack-footer-end) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 16px 32px rgba(255, 255, 255, 0.08);
}

.landing-types-packages__price-note {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}

.landing-types-packages__badge {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pack-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
}

.landing-types-packages__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  min-height: 58px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.44);
  background: linear-gradient(180deg, var(--pack-btn-start) 0%, var(--pack-btn-end) 100%);
  color: #ffffff;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.34),
    0 10px 20px var(--pack-button-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.landing-types-packages__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.34),
    0 14px 28px var(--pack-button-shadow);
  filter: brightness(1.05);
}

@media (max-width: 1120px) {
  .landing-types-packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .landing-types-packages__card--business {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .landing-types-packages {
    padding: 8px 0 64px;
  }

  .landing-types-packages__head {
    margin-bottom: 10px;
    flex-direction: column;
    text-align: center;
  }

  .landing-types-packages__head .landing-pricing__head-photo {
    max-width: 200px;
    margin: 0 auto;
    transform: translateY(-12px);
  }

  .landing-types-packages__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .landing-types-packages__card--business {
    grid-column: auto;
  }

  .landing-types-packages__card--growth {
    transform: none;
    outline: none;
  }

  .landing-types-packages__card {
    border-radius: 28px;
  }

  .landing-types-packages__media {
    height: clamp(158px, 46vw, 220px);
  }

  .landing-types-packages__media::after {
    bottom: -54px;
    height: 126px;
  }

  .landing-types-packages__card-head {
    margin: -32px 10px 0;
    padding: 14px 14px 14px;
    border-radius: 30px 30px 14px 14px;
  }

  .landing-types-packages__card h3 {
    font-size: 22px;
  }

  .landing-types-packages__card-head p {
    font-size: 14px;
  }

  .landing-types-packages__meta {
    margin: 14px 16px 10px;
    font-size: 17px;
  }

  .landing-types-packages__lead {
    margin: 0 16px 8px;
    font-size: 14px;
  }

  .landing-types-packages__label {
    margin: 0 16px 8px;
    font-size: 14px;
  }

  .landing-types-packages__list {
    margin: 0 16px;
    border-radius: 14px;
  }

  .landing-types-packages__list li {
    font-size: 15px;
    padding: 10px 8px 10px 32px;
  }

  .landing-types-packages__list li::before {
    top: 10px;
    font-size: 20px;
  }

  .landing-types-packages__best {
    margin: 10px 16px 0;
    font-size: 13px;
  }

  .landing-types-packages__footer {
    margin-top: 14px;
    padding: 14px 16px 16px;
  }

  .landing-types-packages__btn {
    font-size: 15px;
    min-height: 50px;
    border-radius: 12px;
  }
}

/* ==================== Process Section (Gantt) ==================== */
.landing-process-wide {
  padding: 80px 0;
  background: var(--landing-bg);
}

.landing-process-wide .container {
  max-width: var(--landing-max-width);
  position: relative;
}

.landing-process-wide__head {
  max-width: 700px;
  margin-bottom: 48px;
}

.landing-process-wide__art {
  position: absolute;
  top: clamp(56px, 6vw, 96px);
  right: clamp(24px, 4vw, 72px);
  width: var(--landing-art-medium-width);
  height: var(--landing-art-medium-height);
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.landing-process-wide__head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.landing-process-wide__head p {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
}

.landing-gantt-board {
  --gantt-row-height: 56px;
  --gantt-row-gap: 8px;
  --gantt-left-offset: 54px;
  --gantt-col-gap: 10px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.landing-gantt-board__left {
  align-self: stretch;
}

.landing-gantt-board__legend {
  list-style: none;
  margin: 0;
  padding: var(--gantt-left-offset) 0 0;
  display: grid;
  gap: var(--gantt-row-gap);
}

.landing-gantt-board__legend li {
  min-height: var(--gantt-row-height);
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.landing-gantt-board__legend span {
  display: none;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.landing-gantt-board__legend strong {
  display: block;
  font-size: 14px;
  line-height: 1.28;
  color: var(--text-primary);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-gantt-board__right {
  position: relative;
}

.landing-gantt-board__weeks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gantt-col-gap);
  margin-bottom: 8px;
}

.landing-gantt-board__weeks span {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #eef3f9;
  padding: 9px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.landing-gantt-board__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: var(--gantt-row-height);
  gap: var(--gantt-row-gap) var(--gantt-col-gap);
  padding: 8px 0 4px;
}

.landing-gantt-board__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 24.8%,
      rgba(15, 23, 42, 0.08) 24.8%,
      rgba(15, 23, 42, 0.08) 25.2%,
      transparent 25.2%,
      transparent 49.8%,
      rgba(15, 23, 42, 0.08) 49.8%,
      rgba(15, 23, 42, 0.08) 50.2%,
      transparent 50.2%,
      transparent 74.8%,
      rgba(15, 23, 42, 0.08) 74.8%,
      rgba(15, 23, 42, 0.08) 75.2%,
      transparent 75.2%);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.landing-gantt-board__item {
  --gantt-color: var(--brand);
  --gantt-soft: rgba(38, 140, 246, 0.14);
  --gantt-panel-border: rgba(38, 140, 246, 0.28);
  grid-column: var(--gantt-start) / span var(--gantt-span);
  grid-row: var(--gantt-row);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

/* Item 1 — Аналітика (синій) — 1 тиждень */
.landing-gantt-board__item--1 {
  --gantt-color: #268CF6;
  --gantt-soft: rgba(38, 140, 246, 0.14);
  --gantt-panel-border: rgba(38, 140, 246, 0.32);
  z-index: 6;
}

/* Item 2 — Розробка дизайну (темно-синій) — 1-2 тиждень */
.landing-gantt-board__item--2 {
  --gantt-color: #1a6fc4;
  --gantt-soft: rgba(26, 111, 196, 0.14);
  --gantt-panel-border: rgba(26, 111, 196, 0.3);
  z-index: 5;
}

/* Item 3 — Мобільний адаптив (фіолетовий) — 2-3 тиждень */
.landing-gantt-board__item--3 {
  --gantt-color: #5B46A6;
  --gantt-soft: rgba(91, 70, 166, 0.14);
  --gantt-panel-border: rgba(91, 70, 166, 0.28);
  z-index: 4;
}

/* Item 4 — Тестування (зелений) — 3 тиждень */
.landing-gantt-board__item--4 {
  --gantt-color: #9fb82e;
  --gantt-soft: rgba(192, 222, 61, 0.24);
  --gantt-panel-border: rgba(159, 184, 46, 0.4);
  z-index: 3;
}

/* Item 5 — SEO (глибокий синій) — 4 тиждень */
.landing-gantt-board__item--5 {
  --gantt-color: #0d4a8a;
  --gantt-soft: rgba(13, 74, 138, 0.14);
  --gantt-panel-border: rgba(13, 74, 138, 0.28);
  z-index: 2;
}

/* Item 6 — Аналітика (лавандовий) — 4 тиждень */
.landing-gantt-board__item--6 {
  --gantt-color: #6f5ed0;
  --gantt-soft: rgba(111, 94, 208, 0.16);
  --gantt-panel-border: rgba(111, 94, 208, 0.28);
  z-index: 1;
}

.landing-gantt-board__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: var(--gantt-row-height);
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  border: 1px dashed var(--gantt-color);
  background: linear-gradient(var(--gantt-soft), var(--gantt-soft)), #fff;
  color: var(--gantt-color);
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 2;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-gantt-board__bar > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-gantt-board__bar:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.landing-gantt-board__bar::-webkit-details-marker {
  display: none;
}

.landing-gantt-board__toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.86);
  color: var(--gantt-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-gantt-board__toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.landing-gantt-board__item[open] .landing-gantt-board__toggle i {
  transform: rotate(180deg);
}

/* Open item gets highest z-index in its layer */
.landing-gantt-board__item[open] {
  z-index: 100;
}

/* Panel — opens under the bar, same left edge */
.landing-gantt-board__panel {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 14px;
  border: 1px solid var(--gantt-panel-border);
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  padding: calc(var(--gantt-row-height) + 14px) 16px 14px;
  z-index: 1;
  min-width: min(280px, 100%);
}

/*
  Panel widths — each panel stretches to cover extra columns
  for readable content without overlapping sibling bars.
  Formula: N columns = N * 100% of bar + (N-1) * gap
*/

/* Item 1 (col 1, span 1): panel wider — 1.5 columns right */
.landing-gantt-board__item--1 .landing-gantt-board__panel {
  width: calc(165% + var(--gantt-col-gap) / 2);
}

/* Item 2 (col 1-2, span 2): panel stays within its own 2 columns */
.landing-gantt-board__item--2 .landing-gantt-board__panel {
  width: 100%;
}

/* Item 3 (col 2-3, span 2): panel stays at bar width */
.landing-gantt-board__item--3 .landing-gantt-board__panel {
  width: 100%;
}

/* When Item 3 is open, nudge Item 4 bar to the right so it peeks out */
.landing-gantt-board__item--3[open] ~ .landing-gantt-board__item--4 .landing-gantt-board__bar {
  transform: translateX(40px);
  transition: transform 0.3s ease;
}

/* Item 4 (col 3, span 1): panel opens LEFT to cover 2 columns */
.landing-gantt-board__item--4 .landing-gantt-board__panel {
  left: auto;
  right: 0;
  width: calc(200% + var(--gantt-col-gap));
}

/* Items 5,6 (col 4, span 1): panel opens LEFT to cover 2 columns */
.landing-gantt-board__item--5 .landing-gantt-board__panel,
.landing-gantt-board__item--6 .landing-gantt-board__panel {
  left: auto;
  right: 0;
  width: calc(200% + var(--gantt-col-gap));
}

/* When SEO (Item 5) is open, nudge Аналітика (Item 6) bar to the right */
.landing-gantt-board__item--5[open] ~ .landing-gantt-board__item--6 .landing-gantt-board__bar {
  transform: translateX(40px);
  transition: transform 0.3s ease;
}

.landing-gantt-board__panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.landing-gantt-board__panel li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.landing-gantt-board__panel li::marker {
  color: var(--gantt-color);
}

/* Mobile panel — hidden on desktop */
.landing-gantt-board__mobile-panel {
  display: none;
}

/* Active bar highlight on mobile */
.landing-gantt-board__bar--active {
  box-shadow: 0 0 0 2px var(--gantt-color);
}

/* ==================== FAQ Section ==================== */
.landing-faq {
  padding: 36px 0 24px;
  background: #eef3f9 url("../../../images/marketing/faq-section-background.webp") center top / cover no-repeat;
  color: var(--text-primary);
  position: relative;
}

.landing-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 222, 61, 0.3), transparent);
}

.landing-faq .container {
  max-width: var(--landing-max-width);
}

.landing-faq__head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 238px);
  align-items: center;
  gap: 8px 18px;
  margin-bottom: 12px;
}

.landing-faq__head-copy {
  max-width: 680px;
  margin: 0;
  text-align: left;
  align-self: center;
}

.landing-faq__head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-faq__head p {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0;
}

.landing-faq__art {
  position: static;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 238px;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  justify-self: end;
  align-self: center;
  display: block;
}

.landing-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: start;
}

.landing-faq__item {
  border-radius: var(--landing-radius);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .landing-faq__item:hover {
    border-color: rgba(192, 222, 61, 0.3);
  }
}

.landing-faq__item[open] {
  border-color: var(--landing-accent);
  box-shadow: 0 15px 40px rgba(192, 222, 61, 0.15);
}

.landing-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  transition: background 0.3s ease;
}

@media (hover: hover) {
  .landing-faq__question:hover {
    background: rgba(192, 222, 61, 0.05);
  }
}

.landing-faq__question::-webkit-details-marker {
  display: none;
}

.landing-faq__question::marker {
  content: "";
}

.landing-faq__question::after {
  content: "";
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(192, 222, 61, 0.15), rgba(192, 222, 61, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.landing-faq__question::before {
  content: "+";
  position: absolute;
  right: 30px;
  font-size: 20px;
  font-weight: 400;
  color: var(--landing-accent-dark);
  transition: all 0.3s ease;
}

.landing-faq__item[open] .landing-faq__question::before {
  transform: rotate(45deg);
}

.landing-faq__item[open] .landing-faq__question::after {
  background: var(--accent-gradient);
}

.landing-faq__item[open] .landing-faq__question::before {
  color: #fff;
}

.landing-faq__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(192, 222, 61, 0.15), rgba(192, 222, 61, 0.05));
  border: none;
  color: var(--landing-accent-dark);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.landing-faq__item[open] .landing-faq__icon {
  background: var(--accent-gradient);
  color: #1a2e05;
}

.landing-faq__icon i {
  font-size: 16px;
}

.landing-faq__answer {
  padding: 0 20px 20px 20px;
}

.landing-faq__answer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* ==================== CTA Section ==================== */
.landing-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  position: relative;
}

.landing-cta-section .container {
  max-width: var(--landing-max-width);
}

.landing-cta-block {
  background: linear-gradient(135deg,
    #0a2a4a 0%,
    #0f766e 50%,
    #083f3d 100%);
  border-radius: var(--landing-radius-lg);
  padding: 80px 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 42, 74, 0.3);
}

.landing-cta-block::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 100%;
  height: 300%;
  background: radial-gradient(ellipse at center, rgba(192, 222, 61, 0.15), transparent 60%);
  transform: rotate(-30deg);
  pointer-events: none;
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; transform: rotate(-30deg) translateX(0); }
  50% { opacity: 1; transform: rotate(-30deg) translateX(10%); }
}

.landing-cta-block::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1), transparent 60%);
  pointer-events: none;
}

.landing-cta-block h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -0.02em;
}

.landing-cta-block p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 735px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.6;
}

.landing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--landing-accent) 0%, #d4ed6a 100%);
  color: #1a2e05;
  font-weight: 800;
  font-size: 17px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow:
    0 20px 50px rgba(192, 222, 61, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.landing-cta-btn::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;
}

.landing-cta-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(192, 222, 61, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.landing-cta-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.landing-cta-btn:hover i {
  transform: translateX(4px);
}

.landing-cta-block > p:first-of-type {
  margin-bottom: 24px;
}

.landing-cta-reels-slider {
  --reel-size: 132px;
  --reel-card-width: 188px;
  --reel-gap: 16px;
  --reels-visible: 3;
  position: relative;
  max-width: 760px;
  margin: 0 auto 12px;
  padding: 0 52px;
  z-index: 1;
}

.landing-cta-reels-viewport {
  width: min(100%, calc(var(--reel-card-width) * var(--reels-visible) + var(--reel-gap) * (var(--reels-visible) - 1)));
  margin: 0 auto;
  overflow: hidden;
}

.landing-cta-reels {
  display: flex;
  align-items: flex-start;
  gap: var(--reel-gap);
  transform: translateX(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.landing-cta-reel {
  flex: 0 0 var(--reel-card-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 4px 2px 8px;
}

.landing-cta-reel__circle {
  width: var(--reel-size);
  height: var(--reel-size);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #22d3ee 0%, #0ea5e9 58%, #2563eb 100%);
  border: 2px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 26px rgba(2, 12, 27, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
}

.landing-cta-reel__circle i {
  transform: translateX(2px);
}

.landing-cta-reel__title {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.landing-cta-reel__meta {
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

.landing-cta-reels__arrow {
  position: absolute;
  top: calc(var(--reel-size) / 2 - 18px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.landing-cta-reels__arrow:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}

.landing-cta-reels__arrow:disabled {
  opacity: 0.42;
  cursor: default;
}

.landing-cta-reels__arrow--prev {
  left: 0;
}

.landing-cta-reels__arrow--next {
  right: 0;
}

.landing-cta-reels__dots {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.landing-cta-reels__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.landing-cta-reels__dot.is-active {
  width: 24px;
  background: #fff;
}

.landing-cta-reels__hint {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 auto 30px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .landing-cta-reels-slider {
    --reel-size: 120px;
    --reel-card-width: 176px;
    --reel-gap: 14px;
    --reels-visible: 2;
    max-width: 560px;
    padding: 0 46px;
  }
}

@media (max-width: 640px) {
  .landing-cta-reels-slider {
    --reel-size: 112px;
    --reel-card-width: min(74vw, 220px);
    --reel-gap: 12px;
    --reels-visible: 1;
    max-width: 360px;
    padding: 0 38px;
  }

  .landing-cta-reels__arrow {
    width: 34px;
    height: 34px;
    top: calc(var(--reel-size) / 2 - 17px);
  }

  .landing-cta-reel__title {
    font-size: 14px;
  }

  .landing-cta-reel__meta {
    font-size: 12px;
  }

  .landing-cta-reels__hint {
    margin-bottom: 22px;
  }
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
  .landing-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preimslick {
    --benefits-gap: 18px;
  }

  .landing-steps__card {
    flex-basis: 320px;
  }

  .landing-pricing__arrow--prev {
    left: 4px;
  }

  .landing-pricing__arrow--next {
    right: 4px;
  }

  .landing-steps {
    padding-bottom: 40px;
  }
}

@media (min-width: 981px) {
  .landing-process-wide {
    padding: 34px 0;
  }

  .landing-process-wide__head {
    margin-bottom: 18px;
    max-width: 900px;
  }

  .landing-process-wide__head h2 {
    font-size: clamp(26px, 2.6vw, 34px);
    margin-bottom: 6px;
  }

  .landing-process-wide__head p {
    font-size: 14px;
  }

  .landing-process-wide__art {
    display: none;
  }

  .landing-gantt-board {
    --gantt-row-height: 46px;
    --gantt-row-gap: 6px;
    --gantt-col-gap: 8px;
    --gantt-left-offset: 46px;
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    gap: 16px;
  }

  .landing-gantt-board__legend {
    padding-top: var(--gantt-left-offset);
    gap: var(--gantt-row-gap);
  }

  .landing-gantt-board__legend li {
    min-height: var(--gantt-row-height);
    padding: 0;
  }

  .landing-gantt-board__legend strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .landing-gantt-board__weeks span {
    padding: 7px 4px;
    font-size: 12px;
    border-radius: 8px;
  }

  .landing-gantt-board__grid {
    grid-auto-rows: var(--gantt-row-height);
    gap: var(--gantt-row-gap) var(--gantt-col-gap);
  }

  .landing-gantt-board__bar {
    font-size: 13px;
    padding: 6px 6px 6px 12px;
  }

  .landing-gantt-board__toggle {
    width: 30px;
    height: 30px;
  }

  .landing-gantt-board__toggle i {
    font-size: 10px;
  }

  .landing-gantt-board__panel {
    padding: calc(var(--gantt-row-height) + 12px) 14px 12px;
  }

  .landing-gantt-board__panel li {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 980px) {
  .landing-types-packages__head {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .landing-steps__head h2 {
    white-space: normal;
  }

  /* Services — Stack on Tablet */
  .landing-services-block .headline {
    gap: 16px;
  }

  .landing-services-block .headline-main {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .landing-services-block .headline-art {
    width: calc(var(--landing-art-medium-width) * 1.25 * 0.7225);
    height: calc(var(--landing-art-medium-height) * 1.25 * 0.7225);
    margin: 0;
  }

  .landing-services-block .headline p {
    text-align: left;
    max-width: none;
  }

  .landing-services-block .grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .landing-services-block .card--tech {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .landing-services-block .card--tech-combined__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .landing-services-block .card--tech-combined__process {
    padding: 18px;
  }
  .landing-services-block .card--tech-combined__after {
    padding: 18px;
  }

  .landing-services-block .process-flow {
    margin-top: 12px;
  }

  .landing-services-block .card--results {
    display: block;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .preimslick {
    --benefits-gap: 16px;
  }

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

  .preimslick__slider-col {
    order: 2;
  }

  .preimslick__photo {
    order: 1;
    width: min(100%, 380px);
    margin: 0 auto;
    min-height: 0;
    border-radius: 18px;
  }

  .landing-benefits--static .preimslick__layout--static {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-benefits .preimslick__layout {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .landing-benefits--static .preimslick {
    grid-template-columns: 1fr;
  }

  .landing-benefits .preimslick {
    grid-template-columns: 1fr !important;
  }

  .landing-benefits--static .preimslick__photo {
    order: 2;
    width: min(100%, 420px);
    height: auto;
    min-height: 0;
  }

  .landing-benefits .preimslick__photo {
    order: 2;
    width: min(100%, 420px);
    height: auto;
    min-height: 0;
  }

  .landing-benefits--static .preimslick_item_text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
  }

  .landing-benefits .preimslick_item_text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
  }

  .landing-steps__card {
    flex-basis: 300px;
  }

  .preimslick_item_in {
    padding: 18px 60px 18px 18px;
    min-height: 120px;
    flex: 0 0 100%;
    width: 100%;
  }

  .preimslick_item_in > .preimslick_item_icon {
    top: 18px;
    left: 18px;
  }

  .preimslick_item_content {
    padding-left: 48px;
  }

  .preimslick_item_text {
    margin-left: -48px;
  }

  .preimslick_item_num {
    font-size: 40px;
    right: 14px;
    top: 14px;
  }
}

@media (max-width: 768px) {
  .landing-services-block .headline-main {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 12px;
  }

  .landing-services-block .headline-art {
    width: min(calc(397px * 0.7225), 100%);
    height: auto;
    grid-column: 1;
    justify-self: center;
    margin: 0;
  }

  .landing-services-block .grid {
    grid-template-columns: 1fr;
  }

  .landing-services-block .card--tech,
  .landing-services-block .card--results {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .landing-services-block .card--tech-combined__process {
    padding: 16px;
  }
  .landing-services-block .card--tech-combined__after {
    padding: 16px;
  }

  .page-marketing-audit .landing-services-block .card--tech-combined__main .card__top,
  .page-marketing-audit .landing-services-block .card--tech-combined__process .card__top,
  .page-marketing-audit .landing-services-block .card--tech-combined__after .card__top,
  .page-marketing-audit .landing-services-block .card--results .card__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      ". badge"
      "content content";
    gap: 10px 12px;
    margin-bottom: 12px;
  }

  .page-marketing-audit .landing-services-block .card--tech-combined__main .card__top > div,
  .page-marketing-audit .landing-services-block .card--tech-combined__process .card__top > div,
  .page-marketing-audit .landing-services-block .card--tech-combined__after .card__top > div,
  .page-marketing-audit .landing-services-block .card--results .card__top > div {
    display: block;
    grid-area: content;
    min-width: 0;
  }

  .page-marketing-audit .landing-services-block .card--tech-combined__main .card__top > .badge,
  .page-marketing-audit .landing-services-block .card--tech-combined__process .card__top > .badge,
  .page-marketing-audit .landing-services-block .card--tech-combined__after .card__top > .badge,
  .page-marketing-audit .landing-services-block .card--results .card__top > .badge {
    grid-area: badge;
    justify-self: end;
    align-self: start;
  }

  .preimslick {
    --benefits-gap: 14px;
  }

  .preimslick__layout {
    gap: 14px;
  }

  .preimslick__photo {
    width: min(100%, 260px);
    margin: 0 auto;
    min-height: 0;
    border-radius: 14px;
  }

  .landing-benefits--static {
    padding: 10px 0;
  }

  .landing-benefits {
    padding: 10px 0;
  }

  .landing-benefits--static .preimslick_item_in {
    min-height: 0;
  }

  .landing-benefits .preimslick_item_in {
    min-height: 0;
  }

  .preimslick__photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .landing-pricing {
    padding: 60px 0;
  }

  .landing-pricing--embedded {
    margin-top: 28px;
    padding-top: 36px;
  }

  .landing-pricing__head {
    text-align: left;
    margin-bottom: 32px;
  }

  .landing-pricing__card {
    flex-basis: min(88vw, 360px);
    max-width: min(88vw, 360px);
  }

  .landing-pricing__arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    position: static;
    top: auto;
    transform: none;
  }

  .landing-pricing__arrow:disabled {
    transform: scale(0.96);
  }

  .landing-pricing__arrow--prev {
    left: auto;
    justify-self: start;
  }

  .landing-pricing__arrow--next {
    right: auto;
    justify-self: end;
  }

  .landing-pricing__controls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
  }

  .landing-pricing__dots {
    margin-top: 0;
  }

  .landing-blue-header__meta-item,
  .landing-services-block .card,
  .landing-types-packages__list {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .landing-pricing__card-head {
    min-height: 104px;
    padding: 20px 20px 14px;
  }

  .landing-pricing__number {
    font-size: 102px;
  }

  .landing-pricing__title {
    font-size: 22px;
  }

  .landing-pricing__content {
    padding: 18px 20px 20px;
  }

  .landing-pricing__features li {
    font-size: 16px;
    padding-left: 28px;
  }

  .landing-pricing__price-value {
    font-size: 30px;
  }

  .landing-pricing__price-currency {
    font-size: 18px;
  }

  .landing-steps__card {
    min-height: auto;
    flex-basis: 85%;
  }

  .landing-steps__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .landing-steps {
    padding-top: 29px;
  }

  .preimslick_item_in {
    padding: 16px 55px 16px 16px;
    min-height: 110px;
    flex: 0 0 100%;
    width: 100%;
  }

  .preimslick_item_in > .preimslick_item_icon {
    top: 16px;
    left: 16px;
  }

  .preimslick_item_icon {
    width: 36px;
    height: 36px;
  }

  .preimslick_item_icon i {
    font-size: 16px;
  }

  .preimslick_item_content {
    padding-left: 44px;
    gap: 8px;
  }

  .preimslick_item_name {
    font-size: 14px;
  }

  .preimslick_item_text {
    margin-left: -44px;
    font-size: 12px;
  }

  .preimslick_item_num {
    font-size: 36px;
    right: 12px;
    top: 12px;
  }
}

@media (max-width: 1200px) {
  .landing-snake__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-snake__item {
    grid-column: auto;
    grid-row: auto;
  }

  .landing-snake__connector {
    display: none;
  }
}

@media (max-width: 1100px) {
  .landing-faq__head {
    grid-template-columns: minmax(0, 1fr) minmax(145px, 187px);
  }

  .landing-faq__art {
    width: auto;
    max-width: 100%;
    max-height: 187px;
    height: auto;
  }
}

@media (max-width: 980px) {
  .landing-faq__head {
    margin-bottom: 14px;
    grid-template-columns: 1fr;
  }

  .landing-faq__art {
    display: block;
    order: -1;
    max-height: 200px;
    width: auto;
    margin: 0 auto;
  }

  .landing-faq__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .landing-process-wide__art {
    display: none;
  }

  /* Benefits — 2 columns on tablet */
  .landing-snake__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .landing-snake__head p {
    text-align: left;
    max-width: none;
  }

  .landing-snake__item {
    grid-column: auto;
    grid-row: auto;
  }

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

  .landing-gantt-board {
    --gantt-row-height: 50px;
    --gantt-col-gap: 8px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-gantt-board__legend {
    padding-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-gantt-board__legend li {
    min-height: auto;
    padding: 8px 10px;
  }

  .landing-gantt-board__weeks {
    margin-bottom: 6px;
  }

  .landing-gantt-board__weeks span {
    font-size: 12px;
    padding: 7px 4px;
  }

  .landing-gantt-board__grid {
    grid-auto-rows: var(--gantt-row-height);
    gap: var(--gantt-row-gap) var(--gantt-col-gap);
  }

  .landing-gantt-board__right {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .landing-gantt-board__weeks,
  .landing-gantt-board__grid {
    min-width: 560px;
  }

  .landing-gantt-board__bar {
    font-size: 13px;
  }

  .landing-gantt-board__toggle {
    width: 32px;
    height: 32px;
  }

  /* Hide panels inside details on mobile — content shown below chart */
  .landing-gantt-board__panel {
    display: none !important;
  }

  /* Disable details open state on mobile (bars are just buttons) */
  .landing-gantt-board__item[open] {
    z-index: auto;
  }

  /* Hide toggle arrow on mobile */
  .landing-gantt-board__toggle {
    display: none;
  }

  /* Disable bar nudge on small screens */
  .landing-gantt-board__item--3[open] ~ .landing-gantt-board__item--4 .landing-gantt-board__bar,
  .landing-gantt-board__item--5[open] ~ .landing-gantt-board__item--6 .landing-gantt-board__bar {
    transform: none;
  }

  /* Mobile: no extra panel below chart */
  .landing-gantt-board__mobile-panel {
    display: none !important;
  }

}

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

  .landing-services-block,
  .landing-snake,
  .landing-advantages,
  .landing-process-wide,
  .landing-cta-section {
    padding: 48px 0;
  }

  .landing-head {
    margin-bottom: 32px;
  }

  /* Benefits — single column on mobile */
  .landing-snake__list {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .landing-snake__item {
    grid-column: auto;
    grid-row: auto;
  }

  .landing-snake__step {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: 10px;
    left: 10px;
  }

  .landing-snake__card {
    padding: 14px 14px 14px 48px;
  }

  .landing-advantages__grid {
    grid-template-columns: 1fr;
  }

  .landing-services-block .card {
    padding: 24px;
    min-height: auto;
  }

  .landing-cta-block {
    padding: 48px 24px;
  }

  .landing-faq {
    padding: 60px 0;
  }

  .page-marketing-audit .landing-faq {
    padding-bottom: 120px;
  }

  .landing-faq__question {
    padding: 16px;
    font-size: 15px;
  }

  .landing-faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .landing-faq__answer {
    padding: 0 16px 16px 16px;
  }

  .landing-gantt-board {
    --gantt-row-height: 46px;
    --gantt-col-gap: 6px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .landing-gantt-board__left {
    display: none;
  }

  .landing-gantt-board__legend {
    display: none;
  }

  .landing-gantt-board__right {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .landing-gantt-board__weeks,
  .landing-gantt-board__grid {
    min-width: 560px;
  }

  .landing-gantt-board__weeks {
    gap: var(--gantt-col-gap);
  }

  .landing-gantt-board__weeks span {
    padding: 7px 4px;
    font-size: 12px;
  }

  .landing-pricing__range {
    font-size: 14px;
  }

  .landing-gantt-board__grid {
    grid-auto-rows: var(--gantt-row-height);
    gap: 6px;
  }

  .landing-gantt-board__bar {
    font-size: 13px;
    gap: 0;
    padding: 6px 8px;
    justify-content: flex-start;
  }

  .landing-gantt-board__toggle {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-marketing-audit .container,
  .landing-section__inner,
  .landing-services-block .wrap,
  .landing-calc-v3__wrap,
  .researcher-container,
  .landing-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .landing-title {
    font-size: 28px;
  }

  .landing-services-block .headline h2,
  .preimslick__head h2,
  .landing-steps__head h2,
  .landing-snake__head h2,
  .landing-advantages__head h2,
  .landing-process-wide__head h2,
  .landing-faq__head h2 {
    font-size: 26px;
  }

  .landing-services-block .pill {
    padding: 10px 14px;
    font-size: 13px;
  }

  .landing-pricing__title {
    font-size: 20px;
  }

  .landing-pricing__number {
    font-size: 88px;
  }

  .landing-pricing__price-value {
    font-size: 28px;
  }

  .landing-pricing__btn {
    width: 100%;
    font-size: 15px;
  }

  .landing-snake__step {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .landing-cta-btn {
    padding: 16px 28px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    gap: 6px;
  }

  .contact-phone {
    font-size: 16px;
  }

  .landing-calc-v3 {
    padding: 0;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-h1 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .landing-pricing__grid {
    gap: 12px;
  }
}

@media (hover: none) {
  .landing-pricing__btn:hover,
  .landing-types-packages__btn:hover {
    transform: none;
    box-shadow: none;
    filter: none;
  }
}

/* Unified normal text size (not headings/subheadings) */
.page-landing .preimslick_item_text,
.page-landing .preimslick_item_list li,
.page-landing .landing-pricing__features li,
.page-landing .landing-gantt-board__legend strong,
.page-landing .landing-gantt-board__panel li {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

/* Hard override: benefits static (left photo + center 1/3/5 + right 2/4/6) */
#website-development-benefits .preimslick__nav,
#website-development-benefits .preimslick__dots {
  display: none !important;
}

#website-development-benefits .preimslick__layout,
#website-development-benefits .preimslick__layout--static {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 18px !important;
}

#website-development-benefits .preimslick__slider-col {
  min-width: 0;
  display: contents !important;
}

#website-development-benefits .preimslick__viewport {
  overflow: visible !important;
  display: contents !important;
}

#website-development-benefits .preimslick,
#website-development-benefits .preimslick--grid {
  display: contents !important;
  width: auto !important;
  transform: none !important;
}

#website-development-benefits .preimslick_item_in {
  flex: initial !important;
  width: auto !important;
  max-width: none !important;
  min-height: 150px !important;
  padding: 12px 14px !important;
}

#website-development-benefits .preimslick_item_in:nth-child(odd) {
  --benefit-accent: #268CF6;
  --benefit-accent-bg: rgba(38, 140, 246, 0.12);
  grid-column: 2 !important;
}

#website-development-benefits .preimslick_item_in:nth-child(even) {
  --benefit-accent: #8AAD2A;
  --benefit-accent-bg: rgba(138, 173, 42, 0.16);
  grid-column: 3 !important;
}

#website-development-benefits .preimslick_item_in:nth-child(n+7) {
  display: none !important;
}

#website-development-benefits .preimslick_item_in:nth-child(1),
#website-development-benefits .preimslick_item_in:nth-child(2) {
  grid-row: 1 !important;
}

#website-development-benefits .preimslick_item_in:nth-child(3),
#website-development-benefits .preimslick_item_in:nth-child(4) {
  grid-row: 2 !important;
}

#website-development-benefits .preimslick_item_in:nth-child(5),
#website-development-benefits .preimslick_item_in:nth-child(6) {
  grid-row: 3 !important;
}

#website-development-benefits .preimslick_item_in > .preimslick_item_icon {
  position: static !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  margin-bottom: 6px !important;
  color: var(--benefit-accent) !important;
  background: var(--benefit-accent-bg) !important;
}

#website-development-benefits .preimslick_item_icon i {
  font-size: 14px !important;
}

#website-development-benefits .preimslick_item_content {
  padding-left: 0 !important;
  gap: 6px !important;
}

#website-development-benefits .preimslick_item_name {
  margin-bottom: 0 !important;
  line-height: 1.3 !important;
  font-size: 16px !important;
  color: var(--benefit-accent) !important;
}

#website-development-benefits .preimslick_item_text {
  margin-left: 0 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

#website-development-benefits .preimslick_item_list {
  margin: 6px 0 0 !important;
  padding-left: 28px !important;
  list-style: disc !important;
  color: var(--text-secondary) !important;
  display: grid !important;
  gap: 2px !important;
}

#website-development-benefits .preimslick_item_list li {
  margin: 0 !important;
}

#website-development-benefits .preimslick_item_list li::marker {
  color: var(--benefit-accent) !important;
}

#website-development-benefits .preimslick_item_num {
  top: 10px !important;
  right: 10px !important;
  font-size: 26px !important;
  line-height: 1 !important;
  padding: 2px 10px !important;
  border-radius: 12px !important;
  color: var(--benefit-accent) !important;
  background: var(--benefit-accent-bg) !important;
}

#website-development-benefits .preimslick__photo {
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  grid-column: 1 !important;
  grid-row: 1 / span 3 !important;
  align-self: stretch !important;
  min-height: auto !important;
  height: 100% !important;
  padding: 0 !important;
}

#website-development-benefits .preimslick__photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
  transform-origin: center center !important;
}

@media (max-width: 1140px) {
  #website-development-benefits .preimslick__layout,
  #website-development-benefits .preimslick__layout--static {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  #website-development-benefits .preimslick__slider-col,
  #website-development-benefits .preimslick__viewport {
    display: block !important;
  }

  #website-development-benefits .preimslick,
  #website-development-benefits .preimslick--grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  #website-development-benefits .preimslick_item_in {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  #website-development-benefits .preimslick_item_in:nth-child(odd),
  #website-development-benefits .preimslick_item_in:nth-child(even) {
    grid-column: auto !important;
  }

  #website-development-benefits .preimslick_item_in:nth-child(n) {
    grid-row: auto !important;
  }

  #website-development-benefits .preimslick__photo {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
    height: auto !important;
    width: min(100%, 420px) !important;
    margin: 0 auto !important;
  }

  /* Портретне фото — скасовуємо landscape aspect-ratio */
  #website-development-benefits .preimslick__photo img {
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    object-position: center bottom !important;
  }

  #website-development-benefits .preimslick_item_text {
    display: block !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    overflow: visible !important;
  }
}

/* [old .landing-calc deleted, see .landing-calc-v3 below]
.landing-calc .landing-calc__card {
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow: 0 20px 60px rgba(20, 40, 80, .10);
  border:1px solid rgba(20,40,80,.06);
}

.landing-calc .landing-calc__head h2 { margin:0 0 6px; font-size:28px; }
.landing-calc .landing-calc__head p { margin:0; color:#4b5563; }

.landing-calc .landing-calc__topbar {
  margin-top:18px;
  display:flex; gap:16px;
  align-items:center; justify-content:space-between;
  flex-wrap:wrap;
  padding:14px 16px;
  background: #f7fafc;
  border:1px solid rgba(20,40,80,.06);
  border-radius:18px;
}

.landing-calc .landing-calc__progress { list-style:none; display:flex; gap:10px; margin:0; padding:0; }
.landing-calc .landing-calc__progress li {
  width:32px; height:32px; display:grid; place-items:center;
  border-radius:12px;
  border:1px solid rgba(20,40,80,.12);
  color:#64748b;
  font-weight:700;
  background:#fff;
}
.landing-calc .landing-calc__progress li.is-active {
  border-color: rgba(38,140,246,.35);
  box-shadow: 0 10px 24px rgba(38,140,246,.18);
  color:#0f172a;
}
.landing-calc .landing-calc__progress li.is-done {
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.25);
  color:#0f172a;
}

.landing-calc .landing-calc__mini-summary { display:flex; gap:10px; align-items:baseline; }
.landing-calc .landing-calc__mini-label { color:#64748b; }
.landing-calc .landing-calc__mini-price { font-size:18px; }
.landing-calc .landing-calc__mini-range { color:#64748b; font-size:13px; }

.landing-calc .landing-calc__step { display:none; margin-top:18px; }
.landing-calc .landing-calc__step.is-active { display:block; }
.landing-calc .landing-calc__step h3 { margin:0 0 8px; font-size:20px; }
.landing-calc .step-sub { margin:0 0 14px; color:#4b5563; }

.landing-calc .landing-calc__grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){ .landing-calc .landing-calc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .landing-calc .landing-calc__grid { grid-template-columns: 1fr; } }

.landing-calc .opt-card,
.landing-calc .feat-card {
  position:relative;
  border:1px solid rgba(20,40,80,.10);
  border-radius:18px;
  padding:14px;
  background:#fff;
  cursor:pointer;
  transition: .15s ease;
}
.landing-calc .opt-card input,
.landing-calc .feat-card input { position:absolute; opacity:0; pointer-events:none; }

.landing-calc .opt-card:hover,
.landing-calc .feat-card:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(15,23,42,.08); }

.landing-calc .opt-card__top { display:flex; gap:10px; align-items:center; margin-bottom:8px; }
.landing-calc .opt-title { font-weight:800; color:#0f172a; }
.landing-calc .opt-desc { color:#4b5563; font-size:14px; line-height:1.35; }

.landing-calc .opt-ico {
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:12px; border:1px solid rgba(20,40,80,.08);
}
.landing-calc .opt-ico.is-blue { background: rgba(38,140,246,.12); color:#268cf6; }
.landing-calc .opt-ico.is-lime { background: rgba(16,185,129,.12); color:#10b981; }
.landing-calc .opt-ico.is-violet { background: rgba(139,92,246,.12); color:#8b5cf6; }

.landing-calc .opt-card:has(input:checked),
.landing-calc .feat-card:has(input:checked) {
  border-color: rgba(38,140,246,.35);
  background: linear-gradient(180deg, rgba(38,140,246,.07), #fff 65%);
  box-shadow: 0 18px 40px rgba(38,140,246,.12);
}
.landing-calc .opt-card:has(input:checked)::after,
.landing-calc .feat-card:has(input:checked)::after {
  content:"✓";
  position:absolute; right:12px; top:12px;
  width:26px; height:26px; border-radius:10px;
  display:grid; place-items:center;
  background: rgba(16,185,129,.14);
  border:1px solid rgba(16,185,129,.25);
  color:#0f172a;
  font-weight:900;
}

.landing-calc .landing-calc__grid--features { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 640px){ .landing-calc .landing-calc__grid--features { grid-template-columns: 1fr; } }

.landing-calc .feat-top { display:flex; gap:10px; align-items:center; margin-bottom:6px; }
.landing-calc .feat-ico {
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:12px;
  background: rgba(38,140,246,.10);
  color:#268cf6;
}
.landing-calc .feat-title { font-weight:800; }
.landing-calc .feat-desc { color:#4b5563; font-size:14px; line-height:1.35; margin:0; }

.landing-calc .badge {
  position:absolute; right:12px; top:12px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(16,185,129,.12);
  border:1px solid rgba(16,185,129,.20);
  color:#0f172a;
  font-weight:700;
}

.landing-calc .group { margin-top:14px; }
.landing-calc .group-title { font-weight:800; margin-bottom:10px; }

.landing-calc .chip-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.landing-calc .chip-grid--multi { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px){ .landing-calc .chip-grid { grid-template-columns: 1fr; } .landing-calc .chip-grid--multi { grid-template-columns: 1fr; } }

.landing-calc .chip {
  border:1px solid rgba(20,40,80,.10);
  border-radius:16px;
  background:#fff;
  padding:12px 14px;
  cursor:pointer;
  transition:.15s ease;
}
.landing-calc .chip input { position:absolute; opacity:0; pointer-events:none; }
.landing-calc .chip em { font-style:normal; color:#64748b; margin-left:8px; }
.landing-calc .chip:has(input:checked) {
  border-color: rgba(38,140,246,.35);
  background: rgba(38,140,246,.07);
}

.landing-calc .fields {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:10px;
}
@media (max-width: 700px){ .landing-calc .fields { grid-template-columns: 1fr; } }

.landing-calc .field span { display:block; font-weight:700; margin-bottom:6px; color:#0f172a; }
.landing-calc .field input,
.landing-calc .field select,
.landing-calc .field textarea {
  width:100%;
  border:1px solid rgba(20,40,80,.12);
  border-radius:14px;
  padding:12px 12px;
  outline:none;
}
.landing-calc .field input:focus,
.landing-calc .field select:focus,
.landing-calc .field textarea:focus {
  border-color: rgba(38,140,246,.45);
  box-shadow: 0 10px 24px rgba(38,140,246,.12);
}

.landing-calc .field input:focus-visible,
.landing-calc .field select:focus-visible,
.landing-calc .field textarea:focus-visible,
.landing-calc-v3 input[type="text"]:focus-visible,
.landing-calc-v3 input[type="tel"]:focus-visible,
.landing-calc-v3 select:focus-visible,
.landing-calc-v3 textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(38, 140, 246, 0.15);
}
.landing-calc .field--full { margin-top:12px; display:block; }

.landing-calc .consent { display:flex; gap:10px; align-items:flex-start; margin-top:12px; color:#334155; }
.landing-calc .bonus { margin-top:12px; background: rgba(16,185,129,.10); border:1px solid rgba(16,185,129,.18); padding:12px 14px; border-radius:16px; }

.landing-calc .actions {
  display:flex; gap:10px; justify-content:flex-end;
  margin-top:16px;
}
.landing-calc .btn {
  border-radius:14px; padding:12px 14px;
  border:1px solid rgba(20,40,80,.12);
  background:#fff; cursor:pointer; font-weight:800;
}
.landing-calc .btn.ghost { background:#fff; color:#0f172a; }
.landing-calc .btn.primary { background:#268cf6; border-color:#268cf6; color:#fff; }
.landing-calc .btn.accent { background:#10b981; border-color:#10b981; color:#fff; }
.landing-calc .landing-calc__error { margin-top:10px; color:#b91c1c; }

/* ==================== Landing Calculator V3 (Tailwind Layout) ==================== */
.landing-calc-v3 {
  padding: 48px 0;
  background: #f4f7fb;
}

.landing-calc-v3__wrap {
  width: 100%;
  max-width: var(--landing-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.landing-calc-v3 .fade-enter {
  animation: calcFadeInV3 0.4s ease-out forwards;
}

@keyframes calcFadeInV3 {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-calc-v3 .sidebar-gradient {
  background: linear-gradient(135deg, #0a2a4a 0%, #0f766e 50%, #083f3d 100%);
  background-size: 200% 200%;
  box-shadow: 0 4px 30px rgba(15, 118, 110, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.landing-calc-v3 .sidebar-gradient .waves-canvas--calc {
  opacity: 0.34;
}

.landing-calc-v3 .custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.landing-calc-v3 .custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.landing-calc-v3 .custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.landing-calc-v3 .custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.landing-calc-v3 .custom-checkbox {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.landing-calc-v3 .custom-checkbox:checked {
  background-color: #268cf6;
  border-color: #268cf6;
}

.landing-calc-v3 .custom-checkbox:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.landing-calc-v3 #step-3 input[name="timeline"][value="standard"]:checked + div {
  border-color: #268cf6 !important;
  background-color: #eff6ff !important;
}

.landing-calc-v3 #step-3 input[name="timeline"][value="standard"]:checked + div .text-xs {
  color: #2563eb !important;
}

.landing-calc-v3 #step-3 input[type="checkbox"]:checked + span {
  border-color: #268cf6 !important;
  background-color: #268cf6 !important;
  color: #ffffff !important;
}

.landing-calc-v3 #step-3 input[type="checkbox"]:checked + span > span:first-child {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.landing-calc-v3 .card-radio:checked + div {
  border-color: rgba(38, 140, 246, 0.2);
  box-shadow: 0 10px 30px rgba(38, 140, 246, 0.08);
}

.landing-calc-v3 #nextBtn {
  background-color: #268cf6 !important;
  border: 1px solid #268cf6 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(38, 140, 246, 0.28);
}

.landing-calc-v3 #nextBtn span,
.landing-calc-v3 #nextBtn i {
  color: #ffffff !important;
}

.landing-calc-v3 #nextBtn:hover {
  background-color: #1f7cd8 !important;
  border-color: #1f7cd8 !important;
}

.landing-calc-v3 #submitBtn {
  background-color: #c0de3d !important;
  border: 1px solid #c0de3d !important;
  color: #0f172a !important;
  box-shadow: 0 10px 24px rgba(192, 222, 61, 0.32);
}

.landing-calc-v3 #submitBtn span,
.landing-calc-v3 #submitBtn i {
  color: #0f172a !important;
}

.landing-calc-v3 #submitBtn:hover {
  background-color: #b0cc32 !important;
  border-color: #b0cc32 !important;
}

.landing-calc-v3 #calcScrollArea {
  height: min(72vh, 760px);
  max-height: min(72vh, 760px);
  overflow-y: auto !important;
  overflow-x: hidden;
}

.landing-calc-v3 #step-1 .calc-step1-grid h4 {
  font-size: 1.0125rem;
}

/* Step 2 balanced layout: distribute rows across available height */
.landing-calc-v3 #step-2:not(.hidden) {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.landing-calc-v3 #step-2:not(.hidden) > h3 {
  margin-bottom: clamp(10px, 1.4vh, 16px) !important;
  flex: 0 0 auto;
  font-size: 1.2rem !important;
  line-height: 1.2;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 > label {
  padding: 9px 12px;
  border-radius: 16px;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 > label > div:first-child {
  gap: 12px;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 > label > div:last-child {
  gap: 0 !important;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 > label .w-12.h-12 {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 16px;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 > label h4 {
  margin-bottom: 1px;
  font-size: 1.0125rem;
  line-height: 1.2;
}

.landing-calc-v3 #step-2:not(.hidden) .space-y-4 > label p {
  font-size: 14px;
  line-height: 1.25;
}

.landing-calc-v3 #step-2:not(.hidden) .custom-checkbox {
  width: 20px;
  height: 20px;
}

.landing-calc-v3 #step-2:not(.hidden) .custom-checkbox:checked::after {
  font-size: 12px;
}

/* Step 3 typography sync */
.landing-calc-v3 #step-3 > .space-y-8 > div:first-child .grid > label > div > div:nth-child(2) {
  font-size: 1.0125rem !important;
  line-height: 1.2;
  font-weight: 700;
}

.landing-calc-v3 #step-3 > .space-y-8 > div:last-child .grid > label > span > span:last-child {
  font-size: 1.0125rem !important;
  line-height: 1.2;
  font-weight: 700;
}

.landing-calc-v3 .calc-step1-grid {
  position: relative;
}

.landing-calc-v3 .calc-step1-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: rgba(148, 163, 184, 0.14);
  pointer-events: none;
}

.landing-calc-v3 .calc-step1-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom,
      transparent calc(33.333% - 0.5px),
      rgba(148, 163, 184, 0.14) calc(33.333% - 0.5px),
      rgba(148, 163, 184, 0.14) calc(33.333% + 0.5px),
      transparent calc(33.333% + 0.5px)),
    linear-gradient(to bottom,
      transparent calc(66.666% - 0.5px),
      rgba(148, 163, 184, 0.14) calc(66.666% - 0.5px),
      rgba(148, 163, 184, 0.14) calc(66.666% + 0.5px),
      transparent calc(66.666% + 0.5px));
  pointer-events: none;
}

.landing-calc-v3 .calc-step1-grid > label {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .landing-calc-v3 {
    padding: 40px 0;
  }

  .landing-calc-v3 #calcScrollArea {
    height: min(70vh, 680px);
    max-height: min(70vh, 680px);
  }

  .landing-calc-v3 .w-1\/3 {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .landing-calc-v3 {
    display: none !important;
  }

  .landing-calc-v3 {
    padding: 32px 10px;
  }

  .landing-calc-v3 .calc-step1-grid::before,
  .landing-calc-v3 .calc-step1-grid::after {
    display: none;
  }

  .landing-calc-v3 .w-1\/3 {
    width: 42%;
  }
}

/* ==================== Researcher Section ==================== */
.researcher-section {
  padding: 96px 0;
  background: var(--landing-bg);
}
.researcher-container {
  max-width: var(--landing-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow */
.researcher-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.researcher-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: researcher-pulse 2s infinite;
}
@keyframes researcher-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* Heading */
.researcher-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 560px;
  margin: 0 0 14px;
}
.researcher-heading span {
  color: var(--brand);
}

.researcher-intro {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 34px;
}

/* Main Grid */
.researcher-grid {
  display: grid;
  grid-template-columns: minmax(303px, 0.69fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.researcher-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-column: 1;
  grid-row: 1 / span 3;
}

/* Photo Card */
.researcher-photo-card {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--landing-radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #EFF6FF 0%, var(--violet-bg) 100%);
  border: 1px solid #E0EAFF;
}
.researcher-photo-card__avatar {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dbeafe 0%, #ede9fe 100%);
  font-size: 96px;
  color: #93c5fd;
}
.researcher-photo-card__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: linear-gradient(160deg, #d4e8fd 0%, #c8bef0 100%);
}
.researcher-photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72) 0%, transparent 55%);
}
.researcher-photo-card__name-block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: #fff;
}
.researcher-photo-card__name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}
.researcher-photo-card__role {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.researcher-photo-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(38, 140, 246, 0.18);
}
.researcher-photo-card__badge-num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.researcher-photo-card__badge-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
  line-height: 1.3;
}

/* Right Column */
.researcher-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column: 2;
  grid-row: 1;
}

/* Bio Card */
.researcher-bio {
  background: var(--landing-bg-alt);
  border: 1px solid #E2E8F0;
  border-radius: var(--landing-radius);
  padding: 28px 32px;
}
.researcher-bio__text {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}
.researcher-bio__text strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Stats Row */
.researcher-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.researcher-stat {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 20px 18px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.researcher-stat:hover {
  box-shadow: 0 12px 40px rgba(38, 140, 246, 0.12);
  border-color: #BFDBFE;
  transform: translateY(-2px);
}
.researcher-stat__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.researcher-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Knowledge Grid: Certificates + Expertise */
.researcher-knowledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  grid-column: 2;
  grid-row: 2;
}

.researcher-certificates,
.researcher-expertise {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: var(--landing-radius);
  padding: 24px 26px;
}

.researcher-certificates__title,
.researcher-expertise__title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  color: #8FA1B6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.researcher-expertise__title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.researcher-expertise__title i {
  color: #64748B;
  font-size: 13px;
}

.researcher-expertise__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.researcher-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EDF5FF;
  border: 1px solid #BFDBFE;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  max-width: 100%;
  white-space: normal;
  transition: background 0.15s, border-color 0.15s;
}

.researcher-tag:hover {
  background: #E0EEFF;
  border-color: #93C5FD;
}

.researcher-tag i {
  display: none;
}

/* Work Principles */
.researcher-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-column: 2;
  grid-row: 3;
}
.researcher-principle {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.researcher-principle:hover {
  box-shadow: 0 8px 24px rgba(38, 140, 246, 0.10);
  border-color: #BFDBFE;
}
.researcher-principle__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--landing-radius-sm);
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 16px;
  flex-shrink: 0;
}
.researcher-principle__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.researcher-principle__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA Row */
.researcher-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
  flex-wrap: nowrap;
}

.researcher-cta-row--under-photo {
  width: 100%;
  padding-top: 0;
  margin-top: 10px;
  gap: 12px;
  flex-wrap: nowrap;
}

.researcher-cta-row--under-photo .researcher-cta-btn {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 52px;
  padding: 14px 20px;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  justify-content: center;
}

.researcher-cta-row--under-photo .researcher-social-links {
  gap: 10px;
}

.researcher-cta-row--under-photo .researcher-social-link {
  width: 52px;
  height: 52px;
  border-width: 1.5px;
  font-size: 21px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
}

.researcher-cta-row--under-photo .researcher-social-link:hover {
  transform: translateY(-2px) scale(1.03);
}
.researcher-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--landing-accent) 0%, #d4ed6a 100%);
  color: #1a2e05;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  white-space: nowrap;
  flex: 0 1 auto;
}
.researcher-cta-btn:hover {
  background: linear-gradient(135deg, #d4ed6a 0%, var(--landing-accent) 100%);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
}
.researcher-social-links {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.researcher-social-link {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  border: 1.5px solid #229ED9;
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 8px 22px rgba(34, 158, 217, 0.28);
}
.researcher-social-link:hover {
  color: #fff;
  box-shadow: 0 12px 28px rgba(34, 158, 217, 0.36);
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.04);
}

.researcher-social-link--telegram {
  border-color: #229ED9;
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
}

.researcher-social-link--instagram {
  border-color: #d62976;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.researcher-social-link--facebook {
  border-color: #1877f2;
  background: linear-gradient(135deg, #2d88ff 0%, #1877f2 100%);
}

.researcher-social-link--telegram:hover {
  border-color: #1d8fc6;
  background: linear-gradient(135deg, #33b5f6 0%, #229ED9 100%);
}

.researcher-social-link--instagram:hover {
  border-color: #c2256a;
  background: linear-gradient(135deg, #f9a03b 0%, #e13082 46%, #8a3ab9 76%, #5a67dd 100%);
}

.researcher-social-link--facebook:hover {
  border-color: #1568d7;
  background: linear-gradient(135deg, #3b95ff 0%, #1877f2 100%);
}

.researcher-cert-links {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.researcher-cert-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  min-height: 58px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 0.15s;
}

.researcher-cert-link i {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
}

.researcher-cert-link span {
  min-width: 0;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
}

.researcher-cert-link small {
  display: block;
  margin-top: 3px;
  color: #64748B;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.researcher-cert-link:hover {
  transform: translateY(-1px);
}

.researcher-cert-link:nth-child(1) i {
  background: #FCEEEE;
  color: #FF3B45;
}

.researcher-cert-link:nth-child(2) i {
  background: #E9F1FF;
  color: #1473E6;
}

.researcher-cert-link:nth-child(3) i {
  background: #DDF8EA;
  color: #16A34A;
}

.researcher-cert-link:nth-child(4) i {
  background: #F3E8FF;
  color: #7C3AED;
}

.researcher-cert-link--accent span {
  color: #0B79EE;
}

@media (max-width: 1180px) {
  .researcher-knowledge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .researcher-cta-row {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
  }
  .researcher-cta-btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    line-height: 1.25;
  }
  .researcher-cta-row--under-photo {
    flex-wrap: nowrap;
    gap: 6px;
  }
  .researcher-cta-row--under-photo .researcher-cta-btn {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
  }
  .researcher-cta-row--under-photo .researcher-social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .researcher-knowledge-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .researcher-certificates,
  .researcher-expertise {
    padding: 18px;
  }
  .researcher-cert-links {
    grid-template-columns: 1fr;
  }
  .researcher-cert-link {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 64px;
    padding: 0;
  }
  .researcher-cert-link i {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .researcher-tag {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Quote */
.researcher-quote {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #EFF6FF 0%, var(--violet-bg) 100%);
  border: 1px solid #DBEAFE;
  border-left: 4px solid var(--brand);
  border-radius: 0 16px 16px 0;
  padding: 20px 28px;
  font-size: 15px;
  font-style: italic;
  color: #334155;
  line-height: 1.65;
  margin-top: 8px;
  position: relative;
}
.researcher-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 56px;
  font-weight: 800;
  color: #BFDBFE;
  font-style: normal;
  line-height: 1;
}
.researcher-quote__text {
  padding-left: 32px;
}
.researcher-quote__author {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  color: var(--brand);
  padding-left: 32px;
}

/* Researcher Responsive */
@media (max-width: 860px) {
  .researcher-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .researcher-left,
  .researcher-right,
  .researcher-knowledge-grid,
  .researcher-principles {
    grid-column: 1;
    grid-row: auto;
  }
  .researcher-left {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding-left: 6px;
    padding-right: 6px;
    box-sizing: border-box;
  }
  .researcher-photo-card {
    max-width: 100%;
    height: auto;
    margin: 0;
  }
  .researcher-photo-card__img {
    height: auto;
    aspect-ratio: 3/4;
  }
  .researcher-photo-card__avatar {
    aspect-ratio: 4/3;
    font-size: 72px;
  }
}
@media (max-width: 600px) {
  .researcher-left {
    padding-left: 8px;
    padding-right: 8px;
  }
  .researcher-section {
    padding: 64px 0;
  }
  .researcher-heading {
    margin-bottom: 10px;
  }
  .researcher-intro {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .researcher-stats {
    grid-template-columns: 1fr 1fr;
  }
  .researcher-stats .researcher-stat:last-child {
    grid-column: 1 / -1;
  }
  .researcher-principles {
    grid-template-columns: 1fr;
  }
}

/* ── CTA (Marketing audit): чисті overrides для ілюстрації з овальним фоном ── */

.page-marketing-audit .cta-offer {
  background: linear-gradient(135deg, #0a2a4a 0%, #0f766e 50%, #083f3d 100%);
}

/* ── Уніфіковані акцентні кнопки (оранжевий → лайм) ── */
.page-marketing-audit .hero-btn--primary {
  background: linear-gradient(135deg, var(--landing-accent) 0%, #d4ed6a 100%);
  color: #1a2e05;
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.page-marketing-audit .hero-btn--primary:hover {
  background: linear-gradient(135deg, #d4ed6a 0%, var(--landing-accent) 100%);
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

.page-marketing-audit .cta-submit--hot {
  background: linear-gradient(135deg, var(--landing-accent) 0%, #d4ed6a 100%);
  color: #1a2e05;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.38), 0 3px 10px rgba(0,0,0,0.14);
}
.page-marketing-audit .cta-submit--hot:hover {
  background: linear-gradient(135deg, #d4ed6a 0%, var(--landing-accent) 100%);
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.48), 0 5px 14px rgba(0,0,0,0.18);
}

/* Фігура трохи більша за дефолтну (260→300px) */
.page-marketing-audit .cta-offer-figure {
  max-width: 300px;
  flex: 0 0 300px;
  margin-top: -59px;
}

/* Коло більше дефолтного (230→280px), overflow обрізає овальний край */
.page-marketing-audit .cta-offer-circle {
  max-width: 280px;
  overflow: hidden;
}

/* Зум зображення — ховає овальний фон ілюстрації всередині кола */
.page-marketing-audit .cta-offer-circle img {
  transform: scale(1.35);
  transform-origin: center 30%;
}

/* Mobile: figure авто, коло фіксоване */
@media (max-width: 1024px) {
  .page-marketing-audit .cta-offer-figure {
    max-width: 100%;
    flex: 0 0 auto;
  }
  .page-marketing-audit .cta-offer-circle {
    max-width: 280px;
  }
}

/* ===== Expert Contacts In Marketing Benefits Photo ===== */
#website-development-benefits .preimslick__photo {
  display: flex !important;
  flex-direction: column !important;
}

#website-development-benefits .preimslick__photo-media {
  flex: 1 1 auto;
  min-height: 0;
}

#website-development-benefits .preimslick__photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#website-development-benefits .preimslick__photo-contact {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

#website-development-benefits .preimslick__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

#website-development-benefits .preimslick__contact-link i {
  width: 18px;
  color: var(--brand);
  text-align: center;
  font-size: 16px;
}

#website-development-benefits .preimslick__contact-link:hover {
  color: var(--brand);
}

#website-development-benefits .preimslick__contact-link--phone {
  font-weight: 700;
}

@media (max-width: 1140px) {
  #website-development-benefits .preimslick__photo-contact {
    width: 100%;
    padding: 12px 14px;
  }

  #website-development-benefits .preimslick__contact-link {
    font-size: 14px;
  }
}

/* Phone icon in researcher social links */
.researcher-social-link--phone {
  border-color: #16a34a;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.researcher-social-link--phone:hover {
  border-color: #15803d;
  background: linear-gradient(135deg, #34d399 0%, #16a34a 100%);
}

/* Mobile fix: researcher CTA row should not overflow with 4 social icons */
@media (max-width: 700px) {
  .researcher-cta-row--under-photo {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .researcher-cta-row--under-photo .researcher-cta-btn {
    flex: 1 1 100% !important;
    width: 100%;
    min-width: 0;
  }

  .researcher-cta-row--under-photo .researcher-social-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Hide top-left 500+ badge on mobile in researcher photo */
@media (max-width: 700px) {
  .researcher-photo-card__badge {
    display: none !important;
  }
}

/* Уніфіковані відступи секцій (margin 0, padding 56; CTA без padding) */
.page-marketing-audit .landing-services-block,
.page-marketing-audit #landing-types-packages,
.page-marketing-audit .landing-types-packages,
.page-marketing-audit #contact,
.page-marketing-audit .landing-calc-v3,
.page-marketing-audit #landing-process,
.page-marketing-audit .landing-process-wide {
  margin-top: 0 !important;
  padding: 56px 0 !important;
}

.page-marketing-audit #cta-offer,
.page-marketing-audit .cta-offer {
  margin-top: 0 !important;
}
