/* ==========================================================================
   ООО «КИБЕР-ИНЖЕНЕРИЯ» — CORPORATE DESIGN SYSTEM
   Цветовая гамма: обновленный яркий индустриальный бирюзовый и чистый контрастный серый
   ========================================================================== */

:root {
  /* Фирменный акцентный цвет: более яркий, насыщенный и технологичный */
  --primary: #22a89b;
  --primary-rgb: 34, 168, 155;
  --primary-dark: #188c80;
  --primary-darker: #116a61;
  --primary-light: #38cfbf;
  --primary-ultralight: #e7f7f5;
  --primary-border: rgba(34, 168, 155, 0.28);

  /* Шкала оттенков серого и фона: отчетливый, чистый и современный серый для секций */
  --bg-body: #ffffff;
  --bg-gray: #edf2f6;
  --bg-gray-subtle: #e2e8ee;
  --surface: #ffffff;
  --surface-border: #dbe2e8;
  --surface-border-light: #e8eef2;
  
  /* Текстовые цвета */
  --text-dark: #131c21;
  --text-main: #2e3c42;
  --text-muted: #566870;
  --text-light: #83959e;

  /* Типографика */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Тени и радиусы */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 6px rgba(19, 28, 33, 0.05);
  --shadow-md: 0 6px 18px rgba(19, 28, 33, 0.08);
  --shadow-lg: 0 16px 36px rgba(19, 28, 33, 0.11);
  --shadow-hover: 0 16px 36px rgba(34, 168, 155, 0.18);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* СБРОС И БАЗОВЫЕ ПРАВИЛА */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg {
  display: inline-block;
  vertical-align: middle;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* КОНТЕЙНЕР */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* СЕКЦИИ */
.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.bg-gray {
  background-color: var(--bg-gray);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 52px auto;
}

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

.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  background: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* КНОПКИ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #24b0a2 0%, #188c80 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(34, 168, 155, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #28c2b3 0%, #1d9d90 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 168, 155, 0.44);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-ultralight);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-ghost {
  background-color: var(--surface-border-light);
  color: var(--text-dark);
  border-color: var(--surface-border);
}

.btn-ghost:hover {
  background-color: var(--surface-border);
  color: var(--text-dark);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary-dark);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--primary-ultralight);
  border-color: var(--primary-border);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

/* ВЕРХНЯЯ ИНФО-ПЛАШКА (TOPBAR) */
.topbar {
  background-color: var(--text-dark);
  color: #a2b1b8;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info, .topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c5d2d8;
}

.topbar-link:hover {
  color: #ffffff;
}

.topbar-phone {
  color: #ffffff;
  font-weight: 700;
}

.topbar-phone:hover {
  color: var(--primary-light);
}

/* ШАПКА САЙТА (HEADER) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-border);
  transition: box-shadow var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.15;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* НАВИГАЦИЯ */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 2px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-mobile-action {
  display: none;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.burger-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* HERO СЕКЦИЯ */
.hero-section {
  padding-top: 64px;
  padding-bottom: 76px;
  background: 
    radial-gradient(ellipse 65% 55% at 85% 20%, rgba(34, 168, 155, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 10% 75%, rgba(34, 168, 155, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, #f0f7f6 0%, #ffffff 100%);
  border-bottom: 1px solid var(--surface-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid var(--primary-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(34, 168, 155, 0.12);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 168, 155, 0.25);
}

.hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-border);
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.perk-icon {
  background-color: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.perk-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* КАРТОЧКА НА ГЛАВНОМ ЭКРАНЕ */
.hero-card-panel {
  background-color: #ffffff;
  border: 1px solid var(--surface-border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 16px 36px rgba(34, 168, 155, 0.12), var(--shadow-md);
  position: relative;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--surface-border-light);
}

.panel-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pulse {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.spec-row {
  margin-bottom: 14px;
}

.spec-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.spec-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.panel-highlight {
  background: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.highlight-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.highlight-desc {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.4;
  font-weight: 500;
}

/* СТРИП ДОВЕРИЯ / ЦИФРЫ */
.trust-strip {
  background-color: var(--bg-gray);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 36px 0;
}

.strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.strip-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.strip-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.strip-num .unit {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

.strip-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.strip-divider {
  width: 1px;
  height: 48px;
  background-color: var(--surface-border);
}

/* СЕКЦИЯ 1: О КОМПАНИИ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}

.card-icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background-color: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.clean-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clean-check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.94rem;
  color: var(--text-main);
  font-weight: 500;
}

.clean-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2.2px solid var(--primary);
  border-bottom: 2.2px solid var(--primary);
  transform: rotate(-45deg);
}

.about-banner {
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--primary-ultralight) 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-banner h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.about-banner p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin: 0;
}

/* СЕКЦИЯ 2: КАК МЫ ЭТО СДЕЛАЕМ? */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-badge {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.step-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.step-features {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--surface-border-light);
}

.step-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.step-links-box {
  margin-top: auto;
  background: var(--bg-gray);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.box-note {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
}

.inline-accent-link {
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-accent-link:hover {
  color: var(--primary);
}

/* СЕКЦИЯ 3: А ЧТО ЕЩЕ? */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-box {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-normal);
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-border);
}

.service-index {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(34, 168, 155, 0.22);
  line-height: 1;
  margin-bottom: 12px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-box-accent {
  background: linear-gradient(150deg, #22a89b 0%, #136961 100%);
  color: #ffffff;
  border-color: #136961;
  box-shadow: 0 12px 30px rgba(34, 168, 155, 0.25);
}

.service-box-accent .service-index {
  color: rgba(255, 255, 255, 0.28);
}

.service-box-accent .service-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.service-box-accent .service-name {
  color: #ffffff;
}

.service-box-accent .service-desc {
  color: rgba(255, 255, 255, 0.92);
}

/* СЕКЦИЯ 4: ПРИМЕРЫ НАШИХ ПОСТАВОК */
.supply-category-block {
  margin-bottom: 48px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cat-pill {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary-darker);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.cat-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}

.supply-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.supply-cards-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.supply-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.supply-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.supply-card.featured {
  border: 2px solid var(--primary);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(34, 168, 155, 0.12);
}

.supply-card-badge {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.supply-card-badge.accent-badge {
  color: #ea580c;
}

.supply-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.supply-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.supply-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 20px;
}

.tag {
  font-size: 0.76rem;
  background: var(--bg-gray-subtle);
  color: var(--text-main);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.supply-actions {
  margin-top: auto;
}

/* СТАНОЧНОЕ ОБОРУДОВАНИЕ ВЫДЕЛЕННЫЙ БЛОК */
.equipment-highlight-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--primary);
}

.equip-badge {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.equip-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.equip-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 900px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.equip-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.spec-tag-item {
  background: var(--primary-ultralight);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-border);
}

.equip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* СЕКЦИЯ 5: ПЕРЕЧЕНЬ ИЗГОТАВЛИВАЕМЫХ ДЕТАЛЕЙ */
.production-wrap {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.prod-details-group {
  margin-top: 30px;
  margin-bottom: 38px;
}

.prod-subhead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.prod-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 36px;
}

.prod-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34, 168, 155, 0.2);
}

.prod-list-item strong {
  display: block;
  font-size: 1.02rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.prod-list-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.production-cta-panel {
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--primary-ultralight) 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.panel-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-icon {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.download-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.download-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* СЕКЦИЯ 6: НАШИ ПРЕИМУЩЕСТВА */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.adv-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.adv-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-hover);
}

.adv-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.adv-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.adv-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* СЕКЦИЯ 7: ОТЗЫВЫ ДОВОЛЬНЫХ ЗАКАЗЧИКОВ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-letter-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.letter-preview {
  background-color: #f1f4f6;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.letter-sheet {
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid #d5dee2;
  border-radius: 4px;
  padding: 20px;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.sheet-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  border: 1px dashed var(--primary);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.sheet-header-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebf0f2;
}

.sheet-logo-mock {
  width: 24px;
  height: 24px;
  background: var(--surface-border);
  border-radius: 4px;
}

.sheet-lines-mock {
  display: flex;
  flex-direction: column;
}

.mock-line.bold {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
}

.mock-line.sm {
  font-size: 0.68rem;
  color: var(--text-light);
}

.sheet-title-center {
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.sheet-text-mock {
  font-size: 0.75rem;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 14px;
  font-style: italic;
}

.sheet-sign-mock {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.stamp-round {
  width: 38px;
  height: 38px;
  border: 1.5px solid #2563eb;
  border-radius: 50%;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  transform: rotate(-15deg);
  opacity: 0.75;
}

.review-caption {
  margin-top: auto;
}

.company-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.company-project {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.view-letter-btn {
  background: transparent;
  border: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-letter-btn:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* СЕКЦИЯ FAQ */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-border);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.faq-arrow {
  color: var(--text-light);
  transition: transform var(--transition-normal), color var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* СЕКЦИЯ 8: КОНТАКТЫ, КАРТА И ФОРМА */
.contacts-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: flex-start;
}

.contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 28px;
}

.form-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.corporate-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group .req {
  color: #e11d48;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-gray);
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(34, 168, 155, 0.14);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-consent {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.custom-chk {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--surface-border);
  border-radius: 4px;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .custom-chk {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .custom-chk::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ПАНЕЛЬ КОНТАКТНОЙ ИНФОРМАЦИИ И КАРТЫ */
.contact-info-panel .info-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-md);
}

.info-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-card-lead {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.c-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-item strong {
  display: block;
  font-size: 0.86rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.c-item p {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.contact-link {
  color: var(--text-dark);
}

.contact-link:hover {
  color: var(--primary);
}

/* СХЕМА ПРОЕЗДА / КАРТА */
.map-container {
  background: var(--bg-gray);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 20px;
}

.map-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.map-visual-route {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-border-light);
  margin-bottom: 12px;
}

.route-point {
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.route-point::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-light);
}

.route-point.finish {
  color: var(--primary-dark);
  font-weight: 700;
}

.route-point.finish::before {
  background-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-ultralight);
}

.route-line {
  width: 2px;
  height: 10px;
  background: var(--surface-border);
  margin-left: 7px;
}

.map-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ФУТЕР */
.site-footer {
  background-color: #12181b;
  color: #8c9fa8;
  padding-top: 64px;
  padding-bottom: 40px;
  border-top: 1px solid #21292e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1.1fr;
  gap: 36px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.footer-text {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #92a4ad;
}

.footer-copy {
  font-size: 0.8rem;
  color: #61737c;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 18px;
}

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

.footer-links a {
  color: #92a4ad;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 3px;
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.footer-contact-item strong {
  color: #cbd5e1;
}

.footer-contact-item a {
  color: #ffffff;
}

.footer-contact-item a:hover {
  color: var(--primary-light);
}

.footer-cta-box {
  margin-top: 18px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid var(--surface-border);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-main);
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  text-decoration: underline;
  color: var(--primary-dark);
  font-weight: 600;
}

.cookie-btn {
  flex-shrink: 0;
}

/* МОДАЛЬНЫЕ ОКНА */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 24, 27, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: inline-block;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* МОДАЛЬНОЕ ОКНО ПИСЬМА */
.letter-modal-dialog {
  max-width: 800px;
  width: 90%;
}

#letterModalImg {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.letter-full-sheet {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}

.sheet-full-top {
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.sheet-full-logo-emblem {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.sheet-full-address {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sheet-doc-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.sheet-doc-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 26px;
}

.sheet-doc-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--surface-border-light);
}

.doc-footer-col {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.doc-seal {
  width: 90px;
  height: 90px;
  border: 2px solid #2563eb;
  border-radius: 50%;
  color: #2563eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  transform: rotate(-10deg);
  opacity: 0.85;
}

/* TOAST УВЕДОМЛЕНИЕ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  background: #ffffff;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(120%);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-ultralight);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-title {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.toast-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* АДАПТИВНОСТЬ / MOBILE RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    max-width: 600px;
  }
  .supply-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 868px) {
  .hide-mobile {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .site-header .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--surface-border);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    gap: 16px;
  }

  .site-header .main-nav.open {
    display: flex;
  }

  .site-header .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.05rem;
    display: block;
    width: 100%;
  }

  .nav-mobile-action {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .header-btn {
    display: none;
  }

  .about-grid,
  .steps-grid,
  .services-grid,
  .advantages-grid,
  .reviews-grid,
  .contacts-grid,
  .prod-list-grid {
    grid-template-columns: 1fr;
  }

  .about-banner,
  .production-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .production-wrap {
    padding: 30px 20px;
  }

  .hero-perks {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .contact-form-panel {
    padding: 24px 18px;
  }

  .contact-info-panel .info-card {
    padding: 24px 18px;
  }

  .supply-cards-grid,
  .supply-cards-grid.grid-2 {
    grid-template-columns: 1fr;
  }

  .strip-divider {
    display: none;
  }

  .strip-item {
    min-width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .modal-dialog {
    padding: 24px 18px;
  }
}

/*start_css_for_iyf3re*/
#iyf3re .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

#iyf3re .service-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
  position: relative;
  transition: transform var(--transition-normal, 0.25s ease), box-shadow var(--transition-normal, 0.25s ease), border-color var(--transition-normal, 0.25s ease);
  box-sizing: border-box;
}

#iyf3re .service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover, 0 12px 24px rgba(0, 0, 0, 0.08));
  border-color: var(--primary-border, rgba(34, 168, 155, 0.35));
}

#iyf3re .service-index {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(34, 168, 155, 0.22);
  line-height: 1;
  margin-bottom: 12px;
}

#iyf3re .service-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-ultralight, rgba(34, 168, 155, 0.08));
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

#iyf3re .service-name {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  line-height: 1.35;
  margin-bottom: 12px;
}

#iyf3re .service-desc {
  font-size: 0.92rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin: 0;
  margin-top: auto;
}

#iyf3re .service-box-accent {
  background: linear-gradient(150deg, #22a89b 0%, #136961 100%);
  color: #ffffff;
  border-color: #136961;
  box-shadow: 0 12px 30px rgba(34, 168, 155, 0.25);
}

#iyf3re .service-box-accent:hover {
  box-shadow: 0 16px 36px rgba(34, 168, 155, 0.35);
  border-color: #136961;
}

#iyf3re .service-box-accent .service-index {
  color: rgba(255, 255, 255, 0.28);
}

#iyf3re .service-box-accent .service-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

#iyf3re .service-box-accent .service-name {
  color: #ffffff;
}

#iyf3re .service-box-accent .service-desc {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
  #iyf3re .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  #iyf3re .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #iyf3re .service-box {
    padding: 26px 20px;
  }
}
/*end_css_for_iyf3re*/

/*start_css_for_iuvgp9*/
#iuvgp9 {
  position: relative;
  padding-top: 5.5rem;
  padding-bottom: 6rem;
  box-sizing: border-box;
  background: radial-gradient(circle at 50% 0%, rgba(34, 168, 155, 0.08) 0%, transparent 65%);
}

#iuvgp9 *,
#iuvgp9 *::before,
#iuvgp9 *::after {
  box-sizing: border-box;
}

#iuvgp9 .delivery-cases-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

#iuvgp9 .delivery-cases-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(36, 176, 162, 0.1);
  color: var(--primary-dark, #1a8a7f);
  border: 1px solid rgba(36, 176, 162, 0.25);
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 6px rgba(34, 168, 155, 0.1);
}

#iuvgp9 .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary, #24b0a2);
  box-shadow: 0 0 0 3px rgba(34, 168, 155, 0.25);
}

#iuvgp9 .delivery-cases-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 1.15rem 0;
  letter-spacing: -0.025em;
}

#iuvgp9 .delivery-cases-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

#iuvgp9 .delivery-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

#iuvgp9 .delivery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  overflow: hidden;
}

#iuvgp9 .delivery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5eead4, var(--primary, #24b0a2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#iuvgp9 .delivery-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 168, 155, 0.16) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#iuvgp9 .delivery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 168, 155, 0.4);
  box-shadow: 0 22px 35px -8px rgba(26, 138, 127, 0.12), 0 8px 16px -4px rgba(26, 138, 127, 0.05);
}

#iuvgp9 .delivery-card:hover::before,
#iuvgp9 .delivery-card:hover .delivery-card-glow {
  opacity: 1;
}

#iuvgp9 .delivery-card--featured {
  border-color: rgba(34, 168, 155, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf9 100%);
  box-shadow: 0 10px 25px -4px rgba(34, 168, 155, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
}

#iuvgp9 .delivery-card--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--primary, #24b0a2), #14b8a6);
}

#iuvgp9 .delivery-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

#iuvgp9 .delivery-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#iuvgp9 .delivery-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  color: var(--primary-dark, #1a8a7f);
  border: 1px solid rgba(34, 168, 155, 0.3);
  transition: all 0.3s ease;
}

#iuvgp9 .delivery-card:hover .delivery-card-icon {
  background: linear-gradient(135deg, var(--primary, #24b0a2) 0%, var(--primary-dark, #1a8a7f) 100%);
  color: #ffffff;
  border-color: var(--primary-dark, #1a8a7f);
  transform: scale(1.04);
}

#iuvgp9 .delivery-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background-color: #f1f5f9;
  padding: 0.25rem 0.65rem;
  border-radius: 0.5rem;
}

#iuvgp9 .delivery-card-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

#iuvgp9 .delivery-card:hover .delivery-card-number {
  color: var(--primary, #24b0a2);
}

#iuvgp9 .delivery-card-heading-group {
  margin-bottom: 1.25rem;
}

#iuvgp9 .delivery-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
}

#iuvgp9 .delivery-card-caption {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

#iuvgp9 .delivery-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 0.875rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

#iuvgp9 .delivery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

#iuvgp9 .delivery-card:hover .delivery-card-img {
  transform: scale(1.05);
}

#iuvgp9 .delivery-card-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex-grow: 1;
}

#iuvgp9 .delivery-card-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background-color: #f8fafc;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  list-style: none !important;
}

#iuvgp9 .delivery-card-item::before {
  content: none !important;
  display: none !important;
}

#iuvgp9 .delivery-card-item:hover {
  background-color: #ffffff;
  border-color: rgba(34, 168, 155, 0.25);
  transform: translateX(3px);
}

#iuvgp9 .delivery-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background-color: #ccfbf1;
  color: var(--primary-dark, #1a8a7f);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

#iuvgp9 .delivery-item-body {
  flex: 1;
  min-width: 0;
}

#iuvgp9 .delivery-item-name {
  font-size: 0.94rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

#iuvgp9 .delivery-item-note,
#iuvgp9 .delivery-item-desc {
  font-size: 0.825rem;
  color: #64748b;
  margin-top: 0.35rem;
  line-height: 1.45;
}

#iuvgp9 .delivery-item-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary, #24b0a2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

#iuvgp9 .delivery-item-link:hover {
  color: var(--primary-dark, #1a8a7f);
}

#iuvgp9 .delivery-card-action {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

#iuvgp9 .delivery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: #1e293b;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

#iuvgp9 .delivery-btn svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

#iuvgp9 .delivery-btn:hover {
  background-color: var(--primary-dark, #1a8a7f);
  color: #ffffff;
  border-color: var(--primary-dark, #1a8a7f);
  box-shadow: 0 6px 16px -2px rgba(26, 138, 127, 0.3);
}

#iuvgp9 .delivery-btn:hover svg {
  transform: translateX(4px);
}

#iuvgp9 .delivery-btn--primary {
  background: linear-gradient(135deg, #28c2b3 0%, #1d9d90 100%);
  color: #ffffff;
  border: 1px solid #24b0a2;
  box-shadow: 0 6px 20px rgba(34, 168, 155, 0.4);
}

#iuvgp9 .delivery-btn--primary:hover {
  background: var(--primary-dark, #1a8a7f);
  border-color: var(--primary-dark, #1a8a7f);
  color: #ffffff;
  box-shadow: 0 8px 20px -2px rgba(26, 138, 127, 0.45);
}

#iuvgp9 .delivery-btn--primary:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  #iuvgp9 .delivery-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #iuvgp9 {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  #iuvgp9 .delivery-cases-header {
    margin-bottom: 2.25rem;
  }

  #iuvgp9 .delivery-cases-title {
    font-size: 1.75rem;
  }

  #iuvgp9 .delivery-cases-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 640px;
    margin: 0 auto;
  }

  #iuvgp9 .delivery-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  #iuvgp9 .delivery-card-title {
    min-height: auto;
  }

  #iuvgp9 .delivery-card-media {
    height: 180px;
  }
}
/*end_css_for_iuvgp9*/

/*start_css_for_services*/
#services {
  box-sizing: border-box;
  padding-top: 84px;
  padding-bottom: 84px;
  position: relative;
}

#services .container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Заголовочная часть */
#services .services-header {
  max-width: 780px;
  margin: 0 auto 48px auto;
  text-align: center;
}

#services .services-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #136961;
  background: rgba(34, 168, 155, 0.1);
  border: 1px solid rgba(34, 168, 155, 0.28);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

#services .services-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #1a202c;
  line-height: 1.25;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

#services .services-lead {
  font-size: 1.12rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Сетка карточек */
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Карточка сервиса */
#services .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 30px 24px 26px 24px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
  overflow: hidden;
}

#services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #22a89b, #136961);
  opacity: 0;
  transition: opacity 0.25s ease;
}

#services .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 168, 155, 0.4);
  box-shadow: 0 16px 32px rgba(34, 168, 155, 0.12);
}

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

/* Верхняя строка карточки: иконка и номер */
#services .service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

#services .service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(34, 168, 155, 0.09);
  border: 1px solid rgba(34, 168, 155, 0.22);
  color: #22a89b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

#services .service-card:hover .service-card-icon {
  background: #22a89b;
  color: #ffffff;
  transform: scale(1.05);
}

#services .service-card-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.25s ease;
}

#services .service-card:hover .service-card-num {
  color: rgba(34, 168, 155, 0.6);
}

/* Тело карточки */
#services .service-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#services .service-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #136961;
  background: #f0fdf9;
  border: 1px solid rgba(34, 168, 155, 0.2);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 12px;
}

#services .service-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.35;
  margin: 0 0 12px 0;
}

#services .service-card-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 20px 0;
}

/* Списки без точек */
#services ul,
#services .service-features-list {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#services .service-feature-item {
  list-style: none !important;
  list-style-type: none !important;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
  padding: 0;
}

#services .service-feature-item .feature-icon {
  flex-shrink: 0;
  color: #22a89b;
  margin-top: 2px;
}

#services .service-feature-item span {
  flex: 1;
}

/* Кнопка в карточке */
#services .service-card-action {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed #e2e8f0;
}

#services .service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  color: #1a202c;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

#services .service-btn svg {
  transition: transform 0.2s ease;
}

#services .service-btn:hover {
  background: #22a89b;
  border-color: #22a89b;
  color: #ffffff;
}

#services .service-btn:hover svg {
  transform: translateX(4px);
}

/* Акцентная четвертая карточка */
#services .service-card-highlight {
  border-color: rgba(34, 168, 155, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfb 100%);
}

#services .service-card-highlight::before {
  opacity: 1;
}

#services .service-card-highlight .service-btn {
  background: #22a89b;
  border-color: #22a89b;
  color: #ffffff;
}

#services .service-card-highlight .service-btn:hover {
  background: #136961;
  border-color: #136961;
}

/* Нижний баннер секции */
#services .services-footer-banner {
  margin-top: 40px;
  background: #ffffff;
  border: 1px solid rgba(34, 168, 155, 0.28);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 6px 20px rgba(34, 168, 155, 0.07);
  box-sizing: border-box;
}

#services .services-footer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#services .services-footer-text strong {
  font-size: 1.05rem;
  color: #1a202c;
  font-weight: 700;
}

#services .services-footer-text span {
  font-size: 0.92rem;
  color: #64748b;
}

#services .services-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 13px 26px;
  background: linear-gradient(150deg, #22a89b 0%, #136961 100%);
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34, 168, 155, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#services .services-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 168, 155, 0.4);
}

#services .services-footer-btn svg {
  transition: transform 0.2s ease;
}

#services .services-footer-btn:hover svg {
  transform: translateX(3px);
}

/* Адаптивность */
@media (max-width: 1140px) {
  #services .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #services {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  #services .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #services .services-header {
    margin-bottom: 32px;
  }

  #services .services-title {
    font-size: 1.85rem;
  }

  #services .services-lead {
    font-size: 1rem;
  }

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

  #services .service-card {
    padding: 24px 20px 20px 20px;
  }

  #services .services-footer-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin-top: 28px;
  }

  #services .services-footer-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
/*end_css_for_services*/

/*start_css_for_production*/
#production {
  position: relative;
}

#production .production-wrap {
  background: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-top: 3px solid var(--primary, #22a89b);
  border-radius: var(--radius-xl, 16px);
  padding: 50px;
  box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.06));
}

#production .production-text-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#production .section-kicker {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark, #188c80);
  background: var(--primary-ultralight, #e6f7f5);
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  padding: 5px 14px;
  border-radius: var(--radius-full, 9999px);
  margin-bottom: 12px;
}

#production .section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-dark, #1a202c);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#production .section-lead {
  font-size: 1.12rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin-bottom: 24px;
}

#production .prod-details-group {
  margin-top: 20px;
  margin-bottom: 36px;
}

#production .prod-subhead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  margin-bottom: 24px;
}

#production .prod-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 24px;
  align-items: stretch;
}

#production .prod-items-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

#production .prod-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

#production .bullet-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary, #22a89b);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 168, 155, 0.18);
}

#production .prod-list-item strong {
  display: block;
  font-size: 1.02rem;
  color: var(--text-dark, #1a202c);
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

#production .prod-image-wrap {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  border: 1px solid var(--surface-border, #e2e8f0);
  background: var(--bg-gray, #f8fafc);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

#production .prod-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.35s ease;
}

#production .prod-image-wrap:hover .prod-image {
  transform: scale(1.03);
}

#production .production-cta-panel {
  background: linear-gradient(135deg, var(--bg-gray, #f8fafc) 0%, var(--primary-ultralight, #e6f7f5) 100%);
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  border-radius: var(--radius-md, 12px);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#production .panel-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

#production .download-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm, 0 2px 6px rgba(0, 0, 0, 0.06));
  flex-shrink: 0;
}

#production .download-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  margin-bottom: 4px;
}

#production .download-sub {
  font-size: 0.88rem;
  color: var(--text-muted, #64748b);
  margin: 0;
}

#production .panel-right {
  flex-shrink: 0;
}

#production .prod-extra-files {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--surface-border, #e2e8f0);
}

#production .prod-files-header {
  margin-bottom: 14px;
}

#production .prod-files-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

#production .prod-files-title svg {
  flex-shrink: 0;
}

#production .prod-files-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#production .prod-file-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-md, 10px);
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast, 0.25s ease);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.05));
}

#production .prod-file-item:hover {
  border-color: var(--primary, #22a89b);
  background-color: var(--primary-ultralight, #e6f7f5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 168, 155, 0.16);
}

#production .prod-file-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-ultralight, #e6f7f5);
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  color: var(--primary-dark, #188c80);
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

#production .prod-file-item:hover .prod-file-icon {
  background: var(--primary, #22a89b);
  border-color: var(--primary, #22a89b);
  color: #ffffff;
}

#production .prod-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#production .prod-file-name {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  line-height: 1.35;
}

#production .prod-file-meta {
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  line-height: 1.3;
}

#production .prod-file-action {
  color: var(--primary, #22a89b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

#production .prod-file-item:hover .prod-file-action {
  transform: translateY(2px);
}

@media (max-width: 992px) {
  #production .section-title {
    font-size: 2rem;
  }

  #production .prod-list-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #production .prod-image-wrap {
    min-height: 240px;
    max-height: 320px;
  }

  #production .production-cta-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
  }

  #production .panel-right .btn {
    width: 100%;
  }

  #production .prod-files-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  #production .production-wrap {
    padding: 30px 20px;
  }

  #production .section-title {
    font-size: 1.65rem;
  }

  #production .section-lead {
    font-size: 1rem;
  }

  #production .panel-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #production .prod-image-wrap {
    min-height: 200px;
    max-height: 260px;
  }

  #production .prod-file-item {
    padding: 14px;
    gap: 12px;
  }

  #production .prod-file-icon {
    width: 40px;
    height: 40px;
  }

  #production .prod-file-name {
    font-size: 0.9rem;
  }
}
/*end_css_for_production*/

/*start_css_for_inttsg*/
#inttsg .prod-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 24px;
  align-items: stretch;
}

#inttsg .prod-items-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

#inttsg .prod-image-wrap {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  border: 1px solid var(--surface-border, #e2e8f0);
  background: var(--bg-gray, #f8fafc);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

#inttsg .prod-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.35s ease;
}

#inttsg .prod-image-wrap:hover .prod-image {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  #inttsg .prod-list-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #inttsg .prod-image-wrap {
    min-height: 220px;
    max-height: 320px;
  }
}
/*end_css_for_inttsg*/

/*start_css_for_ilf6f*/
#ilf6f {
  position: relative;
  background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.88) 50%,
      rgba(255, 255, 255, 0.94) 100%
    ),
    url('/staticfiles/cnc-hero-0fd0de1e.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  border: 1px solid rgba(34, 168, 155, 0.16);
  box-shadow: 0 8px 30px rgba(18, 42, 54, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#ilf6f .brand-logo,
#ilf6f .main-nav,
#ilf6f .header-action {
  position: relative;
  z-index: 2;
}

#ilf6f .header-btn {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

#ilf6f .header-btn:hover {
  background-color: var(--primary-ultralight);
}

@media (max-width: 991px) {
  #ilf6f {
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(18, 42, 54, 0.06);
  }
}
/*end_css_for_ilf6f*/

/*start_css_for_ib0ar*/
#ib0ar {
  position: relative;
  background-color: #f0f7f6;
  background-image: 
    linear-gradient(90deg, rgba(240, 247, 246, 0.97) 0%, rgba(240, 247, 246, 0.93) 48%, rgba(240, 247, 246, 0.6) 78%, rgba(240, 247, 246, 0.35) 100%),
    url('/staticfiles/cnc-hero-ef09cca4.webp');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 72px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--surface-border, #e2e8f0);
  overflow: hidden;
}

#ib0ar .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 48px;
  align-items: center;
}

#ib0ar .hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

#ib0ar .badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(34, 168, 155, 0.28);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #188c80;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(34, 168, 155, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#ib0ar .badge-dot {
  width: 8px;
  height: 8px;
  background-color: #24b0a2;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 168, 155, 0.25);
}

#ib0ar .hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  color: #1a202c;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

#ib0ar .hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 34px;
  max-width: 680px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

#ib0ar .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

#ib0ar .btn-ghost {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#ib0ar .btn-ghost:hover {
  background-color: #ffffff;
}

#ib0ar .hero-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 168, 155, 0.18);
}

#ib0ar .perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#ib0ar .perk-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 168, 155, 0.12);
}

#ib0ar .perk-icon {
  background-color: #ffffff;
  border: 1px solid rgba(34, 168, 155, 0.35);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(34, 168, 155, 0.1);
}

#ib0ar .perk-text {
  flex: 1;
  min-width: 0;
}

#ib0ar .perk-text strong {
  display: block;
  font-size: 0.88rem;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 3px;
}

#ib0ar .perk-text span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

@media (max-width: 992px) {
  #ib0ar {
    background-image: 
      linear-gradient(180deg, rgba(240, 247, 246, 0.96) 0%, rgba(240, 247, 246, 0.9) 100%),
      url('/staticfiles/cnc-hero-ef09cca4.webp');
    background-position: center;
    padding-top: 52px;
    padding-bottom: 60px;
  }

  #ib0ar .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  #ib0ar .hero-visual {
    display: none;
  }

  #ib0ar .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  #ib0ar .hero-perks {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  #ib0ar {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  #ib0ar .hero-title {
    font-size: 1.75rem;
  }

  #ib0ar .hero-subtitle {
    font-size: 0.98rem;
  }

  #ib0ar .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  #ib0ar .hero-cta-group .btn {
    width: 100%;
  }
}
/*end_css_for_ib0ar*/

/* GENERATED BACKGROUNDS */
.section-workflow {
  background-image: linear-gradient(rgba(237, 242, 246, 0.9), rgba(237, 242, 246, 0.95)), url('/staticfiles/generated/bg_workflow.webp');
  background-size: cover;
  background-position: center;
}
.section-services {
  background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.97)), url('/staticfiles/generated/bg_services.webp');
  background-size: cover;
  background-position: center;
}
.section-production {
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)), url('/staticfiles/generated/bg_production.webp');
  background-size: cover;
  background-position: center;
}

/*start_css_for_imr6h*/
#imr6h {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  box-sizing: border-box;
}

#imr6h iframe {
  max-width: 100%;
  border: 0;
  display: block;
}

@media (max-width: 576px) {
  #imr6h {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  #imr6h iframe {
    width: 100%;
    height: 320px;
  }
}
/*end_css_for_imr6h*/

/*start_css_for_igx333*/
#igx333 .letter-preview {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: #f1f4f6;
  border: 1px solid var(--surface-border, #d5dee2);
  border-radius: var(--radius-md, 8px);
  margin-bottom: 20px;
}

#igx333 .letter-sheet {
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid #d5dee2;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#igx333 .letter-preview:hover .letter-sheet {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

#igx333 .review-letter-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: center top;
  display: block;
}

#igx333 .view-letter-btn {
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

@media (max-width: 768px) {
  #igx333 .letter-preview {
    padding: 12px;
    margin-bottom: 16px;
  }

  #igx333 .letter-sheet {
    min-height: 200px;
  }

  #igx333 .review-letter-img {
    max-height: 280px;
  }
}
/*end_css_for_igx333*/

/*start_css_for_ibohue*/
#ibohue .letter-preview {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: #f1f4f6;
  border: 1px solid var(--surface-border, #d5dee2);
  border-radius: var(--radius-md, 8px);
  margin-bottom: 20px;
}

#ibohue .letter-sheet {
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  height: 280px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid #d5dee2;
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#ibohue .letter-preview:hover .letter-sheet {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

#ibohue .letter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}

#ibohue .letter-preview:hover .letter-img {
  transform: scale(1.02);
}

#ibohue .view-letter-btn {
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

@media (max-width: 768px) {
  #ibohue .letter-preview {
    padding: 12px;
    margin-bottom: 16px;
  }

  #ibohue .letter-sheet {
    min-height: 200px;
    height: 230px;
  }
}
/*end_css_for_ibohue*/

/*start_css_for_iznfu*/
#iznfu {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#iznfu .logo-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-dark, #111827);
  line-height: 1.15;
  text-transform: uppercase;
}

#iznfu .logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 576px) {
  #iznfu .logo-title {
    font-size: 1rem;
  }

  #iznfu .logo-sub {
    font-size: 0.65rem;
  }
}
/*end_css_for_iznfu*/

/*start_css_for_i1032*/
#i1032 .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#i1032 .brand-logo:hover {
  opacity: 0.95;
}

#i1032 .logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  background: #10161f;
  border: 1px solid rgba(34, 168, 155, 0.28);
  box-shadow: 0 4px 12px rgba(16, 22, 31, 0.18);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#i1032 .brand-logo:hover .logo-mark {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(34, 168, 155, 0.55);
  box-shadow: 0 6px 16px rgba(34, 168, 155, 0.25);
}

#i1032 .logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#i1032 .logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#i1032 .logo-title {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-dark, #111827);
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

#i1032 .brand-logo:hover .logo-title {
  color: var(--primary, #22a89b);
}

#i1032 .logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1;
  text-wrap: balance;
}

@media (max-width: 768px) {
  #i1032 .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  #i1032 .logo-title {
    font-size: 0.98rem;
  }

  #i1032 .logo-sub {
    font-size: 0.62rem;
  }
}

@media (max-width: 420px) {
  #i1032 .logo-sub {
    display: none;
  }
}
/*end_css_for_i1032*/

/*start_css_for_i13c*/
#i13c {
  display: flex;
  align-items: center;
  gap: 20px;
}

#i13c .topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
/*end_css_for_i13c*/

/*start_css_for_iyv8tt*/
#iyv8tt {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 52px auto;
  text-align: left;
  box-sizing: border-box;
}

#iyv8tt .section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark, #188c80);
  background: var(--primary-ultralight, #e6f7f5);
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  padding: 5px 14px;
  border-radius: var(--radius-full, 9999px);
  margin-bottom: 16px;
}

#iyv8tt .section-cols {
  display: block !important;
  width: 100% !important;
}

#iyv8tt .section-col-right {
  display: none !important;
}

#iyv8tt .section-title {
  display: block !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: var(--text-dark, #1a202c) !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: -0.01em !important;
  white-space: normal !important;
  text-align: left !important;
}

@media (max-width: 992px) {
  #iyv8tt .section-lead {
    font-size: 2.3rem !important;
    margin-top: 30px !important;
  }
}

@media (max-width: 768px) {
  #iyv8tt {
    margin-bottom: 36px;
  }

  #iyv8tt .section-title {
    font-size: 1.15rem !important;
  }

  #iyv8tt .section-lead {
    font-size: 1.95rem !important;
    margin-top: 24px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  #iyv8tt .section-title {
    font-size: 1.05rem !important;
  }

  #iyv8tt .section-lead {
    font-size: 1.6rem !important;
    margin-top: 20px !important;
  }
}
/*end_css_for_iyv8tt*/

/*start_css_for_ijze0g*/
#ijze0g {
  box-sizing: border-box;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 70px;
  overflow-x: clip;
}

#ijze0g *,
#ijze0g *::before,
#ijze0g *::after {
  box-sizing: border-box;
}

#ijze0g .section-head {
  max-width: 780px;
  margin: 0 auto 52px auto;
  box-sizing: border-box;
}

#ijze0g .section-title {
  word-break: normal;
  overflow-wrap: break-word;
}

#ijze0g .section-lead {
  word-break: normal;
  overflow-wrap: break-word;
}

#ijze0g .contacts-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

#ijze0g .contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-xl, 16px);
  padding: 40px;
  box-shadow: var(--shadow-lg, 0 10px 25px -5px rgba(0, 0, 0, 0.05));
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

#ijze0g .form-header {
  margin-bottom: 24px;
  min-width: 0;
}

#ijze0g .form-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark, #1a202c);
  margin-bottom: 8px;
  line-height: 1.3;
  overflow-wrap: break-word;
}

#ijze0g .form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted, #64748b);
  line-height: 1.5;
  margin: 0;
  overflow-wrap: break-word;
}

#ijze0g .corporate-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  min-width: 0;
}

#ijze0g .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  min-width: 0;
}

#ijze0g .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  width: 100%;
}

#ijze0g .form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main, #334155);
  overflow-wrap: break-word;
}

#ijze0g .form-group .req {
  color: #e11d48;
}

#ijze0g .form-input {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-gray, #f8fafc);
  border: 1.5px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-sm, 6px);
  font-size: 0.95rem;
  color: var(--text-dark, #1a202c);
  transition: all var(--transition-fast, 0.2s ease);
}

#ijze0g .form-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--primary, #24b0a2);
  box-shadow: 0 0 0 4px rgba(34, 168, 155, 0.14);
}

#ijze0g .form-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

#ijze0g .form-consent {
  margin-top: 4px;
  min-width: 0;
}

#ijze0g .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  min-width: 0;
}

#ijze0g .checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

#ijze0g .custom-chk {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--surface-border, #cbd5e1);
  border-radius: 4px;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all var(--transition-fast, 0.2s ease);
}

#ijze0g .checkbox-label input[type="checkbox"]:checked + .custom-chk {
  background-color: var(--primary, #24b0a2);
  border-color: var(--primary, #24b0a2);
}

#ijze0g .checkbox-label input[type="checkbox"]:checked + .custom-chk::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#ijze0g .consent-text {
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  line-height: 1.4;
  overflow-wrap: break-word;
}

#ijze0g .consent-text a {
  color: var(--primary, #24b0a2);
  text-decoration: underline;
  word-break: break-word;
}

#ijze0g .btn {
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: 100%;
  line-height: 1.35;
  text-align: center;
}

#ijze0g .btn span {
  min-width: 0;
}

#ijze0g .contact-info-panel {
  min-width: 0;
  max-width: 100%;
}

#ijze0g .contact-info-panel .info-card {
  background: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-xl, 16px);
  padding: 38px;
  box-shadow: var(--shadow-md, 0 4px 15px rgba(0, 0, 0, 0.05));
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

#ijze0g .info-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark, #1a202c);
  margin-bottom: 4px;
  line-height: 1.3;
  overflow-wrap: break-word;
}

#ijze0g .info-card-lead {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary, #24b0a2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  overflow-wrap: break-word;
}

#ijze0g .contacts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
  min-width: 0;
}

#ijze0g .c-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  width: 100%;
}

#ijze0g .c-item > div {
  min-width: 0;
  flex: 1 1 auto;
}

#ijze0g .c-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm, 6px);
  background: var(--primary-ultralight, #e6f7f5);
  border: 1px solid var(--primary-border, #b2e5df);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex: 0 0 40px !important;
}

#ijze0g .c-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light, #94a3b8);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  overflow-wrap: break-word;
}

#ijze0g .c-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark, #1a202c);
  line-height: 1.45;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#ijze0g .contact-link {
  color: var(--text-dark, #1a202c);
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#ijze0g .contact-link:hover {
  color: var(--primary, #24b0a2);
}

#ijze0g iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 280px;
  border: 0;
  border-radius: var(--radius-md, 8px);
  display: block;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  #ijze0g .contacts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (min-width: 768px) {
    #ilmmi .perk-item:nth-child(4){
        grid-column: 1 / 4;
    }
}
@media (max-width: 768px) {
  #ijze0g {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 36px;
    padding-bottom: 48px;
  }

  #ijze0g .section-head {
    margin-bottom: 32px;
  }

  #ijze0g .section-title {
    font-size: 1.85rem;
  }

  #ijze0g .contact-form-panel,
  #ijze0g .contact-info-panel .info-card {
    padding: 24px 18px;
    border-radius: 12px;
  }

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

  #ijze0g iframe {
    height: 240px;
  }
}

@media (max-width: 480px) {
  #ijze0g {
    padding-left: 12px;
    padding-right: 12px;
  }

  #ijze0g .section-title {
    font-size: 1.55rem;
  }

  #ijze0g .contact-form-panel,
  #ijze0g .contact-info-panel .info-card {
    padding: 20px 14px;
  }

  #ijze0g .btn-lg {
    padding: 13px 16px;
    font-size: 0.92rem;
    gap: 8px;
  }

  #ijze0g .btn-lg svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  #ijze0g .c-item {
    gap: 10px;
  }

  #ijze0g .c-icon {
    width: 36px;
    height: 36px;
  }

  #ijze0g .c-icon svg {
    width: 18px;
    height: 18px;
  }

  #ijze0g iframe {
    height: 210px;
  }
}
/*end_css_for_ijze0g*/

/*start_css_for_i8l60c*/
#i8l60c {
  margin-top: 4px;
}

#i8l60c .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

#i8l60c .checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

#i8l60c .custom-chk {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--surface-border, #cbd5e1);
  border-radius: 4px;
  background-color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all var(--transition-fast, 0.2s ease);
}

#i8l60c .checkbox-label:hover .custom-chk {
  border-color: var(--primary, #24b0a2);
}

#i8l60c .checkbox-label input[type="checkbox"]:focus-visible + .custom-chk {
  outline: 2px solid var(--primary, #24b0a2);
  outline-offset: 2px;
}

#i8l60c .checkbox-label input[type="checkbox"]:checked + .custom-chk {
  background-color: var(--primary, #24b0a2);
  border-color: var(--primary, #24b0a2);
}

#i8l60c .checkbox-label input[type="checkbox"]:checked + .custom-chk::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#i8l60c .consent-text {
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  line-height: 1.4;
}

#i8l60c .consent-text a {
  color: var(--primary, #24b0a2);
  text-decoration: underline;
  transition: color var(--transition-fast, 0.2s ease);
}

#i8l60c .consent-text a:hover {
  color: var(--primary-dark, #1a8a7f);
}
/*end_css_for_i8l60c*/

/*start_css_for_il07ok*/
#il07ok {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  width: 100%;
}

#il07ok .review-letter-card {
  background: #ffffff;
  border: 1px solid var(--surface-border, #d5dee2);
  border-radius: var(--radius-lg, 12px);
  padding: 24px;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.05));
  display: flex;
  flex-direction: column;
  height: 100%;
}

#il07ok .letter-preview {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: #f1f4f6;
  border: 1px solid var(--surface-border, #d5dee2);
  border-radius: var(--radius-md, 8px);
  margin-bottom: 20px;
}

#il07ok .letter-sheet {
  width: 100%;
  max-width: 100%;
  height: 350px;
  min-height: 350px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid #d5dee2;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#il07ok .letter-preview:hover .letter-sheet {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

#il07ok .review-letter-img,
#il07ok .letter-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}

#il07ok .letter-preview:hover .review-letter-img,
#il07ok .letter-preview:hover .letter-img {
  transform: scale(1.02);
}

#il07ok .review-caption {
  margin-top: auto;
}

#il07ok .view-letter-btn {
  background: transparent;
  border: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary, #0056b3);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

#il07ok .view-letter-btn:hover {
  text-decoration: underline;
  color: var(--primary-dark, #003d80);
}

@media (max-width: 768px) {
  #il07ok {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #il07ok .review-letter-card {
    padding: 16px;
  }

  #il07ok .letter-preview {
    padding: 12px;
    margin-bottom: 16px;
  }

  #il07ok .letter-sheet {
    height: 280px;
    min-height: 280px;
  }
}
/*end_css_for_il07ok*/

/*start_css_for_ikgbtl*/
#ikgbtl {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}

#ikgbtl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5eead4, var(--primary, #24b0a2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#ikgbtl .delivery-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 168, 155, 0.16) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#ikgbtl:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 168, 155, 0.4);
  box-shadow: 0 22px 35px -8px rgba(26, 138, 127, 0.12), 0 8px 16px -4px rgba(26, 138, 127, 0.05);
}

#ikgbtl:hover::before,
#ikgbtl:hover .delivery-card-glow {
  opacity: 1;
}

#ikgbtl .delivery-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

#ikgbtl .delivery-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#ikgbtl .delivery-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  color: var(--primary-dark, #1a8a7f);
  border: 1px solid rgba(34, 168, 155, 0.3);
  transition: all 0.3s ease;
}

#ikgbtl:hover .delivery-card-icon {
  background: linear-gradient(135deg, var(--primary, #24b0a2) 0%, var(--primary-dark, #1a8a7f) 100%);
  color: #ffffff;
  border-color: var(--primary-dark, #1a8a7f);
  transform: scale(1.04);
}

#ikgbtl .delivery-category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background-color: #f1f5f9;
  padding: 0.25rem 0.65rem;
  border-radius: 0.5rem;
}

#ikgbtl .delivery-card-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

#ikgbtl:hover .delivery-card-number {
  color: var(--primary, #24b0a2);
}

#ikgbtl .delivery-card-heading-group {
  margin-bottom: 1.5rem;
}

#ikgbtl .delivery-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
}

#ikgbtl .delivery-card-caption {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

#ikgbtl .delivery-card-list {
  list-style: none !important;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex-grow: 1;
}

#ikgbtl .delivery-card-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background-color: #f8fafc;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  list-style: none !important;
}

#ikgbtl .delivery-card-item::before {
  content: none !important;
  display: none !important;
}

#ikgbtl .delivery-card-item:hover {
  background-color: #ffffff;
  border-color: rgba(34, 168, 155, 0.25);
  transform: translateX(3px);
}

#ikgbtl .delivery-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background-color: #ccfbf1;
  color: var(--primary-dark, #1a8a7f);
  margin-top: 0.15rem;
}

#ikgbtl .delivery-item-body {
  flex: 1;
}

#ikgbtl .delivery-item-name {
  font-size: 0.94rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

#ikgbtl .delivery-item-desc {
  font-size: 0.825rem;
  color: #64748b;
  margin-top: 0.35rem;
  line-height: 1.45;
}

#ikgbtl .delivery-card-action {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

#ikgbtl .delivery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: #1e293b;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

#ikgbtl .delivery-btn svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

#ikgbtl .delivery-btn:hover {
  background-color: var(--primary-dark, #1a8a7f);
  color: #ffffff;
  border-color: var(--primary-dark, #1a8a7f);
  box-shadow: 0 6px 16px -2px rgba(26, 138, 127, 0.3);
}

#ikgbtl .delivery-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  #ikgbtl {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  #ikgbtl .delivery-card-title {
    min-height: auto;
  }
}
/*end_css_for_ikgbtl*/

/*start_css_for_ieuj3h*/
#ieuj3h {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

#ieuj3h .delivery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 0.75rem;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#ieuj3h .delivery-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

#ieuj3h .delivery-btn--primary {
    background: linear-gradient(135deg, #28c2b3 0%, #1d9d90 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 168, 155, 0.44);
}

#ieuj3h .delivery-btn--primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 8px 20px -2px rgba(29, 78, 216, 0.35);
}

#ieuj3h .delivery-btn--primary:hover svg {
  transform: translateX(4px);
}
/*end_css_for_ieuj3h*/

/*start_css_for_ij76x7*/
#ij76x7 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#ij76x7 .section-kicker {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark, #188c80);
  background: var(--primary-ultralight, #e6f7f5);
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  padding: 5px 14px;
  border-radius: var(--radius-full, 9999px);
  margin-bottom: 12px;
}

#ij76x7 .section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-dark, #1a202c);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#ij76x7 .section-lead {
  font-size: 1.12rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin-bottom: 24px;
}

#ij76x7 .prod-details-group {
  margin-top: 20px;
  margin-bottom: 36px;
}

#ij76x7 .prod-subhead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  margin-bottom: 24px;
}

#ij76x7 .prod-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 24px;
  align-items: stretch;
}

#ij76x7 .prod-items-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

#ij76x7 .prod-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

#ij76x7 .bullet-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary, #22a89b);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 168, 155, 0.18);
}

#ij76x7 .prod-list-item strong {
  display: block;
  font-size: 1.02rem;
  color: var(--text-dark, #1a202c);
  margin-bottom: 4px;
  font-weight: 700;
}

#ij76x7 .prod-list-item p {
  font-size: 0.9rem;
  color: var(--text-muted, #64748b);
  line-height: 1.45;
  margin: 0;
}

#ij76x7 .prod-image-wrap {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  border: 1px solid var(--surface-border, #e2e8f0);
  background: var(--bg-gray, #f8fafc);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

#ij76x7 .prod-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.35s ease;
}

#ij76x7 .prod-image-wrap:hover .prod-image {
  transform: scale(1.03);
}

#ij76x7 .production-cta-panel {
  background: linear-gradient(135deg, var(--bg-gray, #f8fafc) 0%, var(--primary-ultralight, #e6f7f5) 100%);
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  border-radius: var(--radius-md, 12px);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#ij76x7 .panel-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

#ij76x7 .download-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm, 0 2px 6px rgba(0, 0, 0, 0.06));
  flex-shrink: 0;
}

#ij76x7 .download-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  margin-bottom: 4px;
}

#ij76x7 .download-sub {
  font-size: 0.88rem;
  color: var(--text-muted, #64748b);
  margin: 0;
}

#ij76x7 .panel-right {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  #ij76x7 .section-title {
    font-size: 2rem;
  }

  #ij76x7 .prod-list-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #ij76x7 .prod-image-wrap {
    min-height: 240px;
    max-height: 320px;
  }

  #ij76x7 .production-cta-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
  }

  #ij76x7 .panel-right .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  #ij76x7 .section-title {
    font-size: 1.65rem;
  }

  #ij76x7 .section-lead {
    font-size: 1rem;
  }

  #ij76x7 .panel-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #ij76x7 .prod-image-wrap {
    min-height: 200px;
    max-height: 260px;
  }
}
/*end_css_for_ij76x7*/

/*start_css_for_ilmmi*/
#ilmmi {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

#ilmmi .badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(34, 168, 155, 0.28);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #188c80;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(34, 168, 155, 0.12);
}

#ilmmi .badge-dot {
  width: 8px;
  height: 8px;
  background-color: #24b0a2;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 168, 155, 0.25);
}

#ilmmi .hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  color: #1a202c;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

#ilmmi .hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #4a5568;
  margin-bottom: 34px;
  max-width: 680px;
}

#ilmmi .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

#ilmmi .hero-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 168, 155, 0.18);
}

#ilmmi .perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#ilmmi .perk-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 168, 155, 0.12);
}

#ilmmi .perk-icon {
  background-color: #ffffff;
  border: 1px solid rgba(34, 168, 155, 0.35);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(34, 168, 155, 0.1);
}

#ilmmi .perk-text strong {
  display: block;
  font-size: 0.88rem;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 2px;
}

#ilmmi .perk-text span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.3;
}

@media (max-width: 991px) {
  #ilmmi .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  #ilmmi .hero-perks {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #ilmmi .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  #ilmmi .hero-cta-group .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #ilmmi .hero-title {
    font-size: 1.75rem;
  }

  #ilmmi .hero-subtitle {
    font-size: 0.98rem;
  }
}
/*end_css_for_ilmmi*/

/*start_css_for_about*/
#about {
  position: relative;
}

#about .about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  align-items: stretch;
}

#about .about-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

#about .about-col .about-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: auto;
  margin-bottom: 0;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.05));
  transition: transform var(--transition-normal, 0.3s ease), box-shadow var(--transition-normal, 0.3s ease), border-color var(--transition-normal, 0.3s ease);
}

#about .about-col .about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover, 0 12px 28px rgba(0, 0, 0, 0.08));
  border-color: var(--primary-border, rgba(34, 168, 155, 0.25));
}

#about .about-col .about-card .clean-check-list {
  margin-top: auto;
}

#about .about-card-photo {
  position: relative;
  width: 100%;
  height: 210px;
  flex: 0 0 210px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--surface-border, #e2e8f0);
  background: #ffffff;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.05));
  box-sizing: border-box;
  transition: transform var(--transition-normal, 0.3s ease), box-shadow var(--transition-normal, 0.3s ease), border-color var(--transition-normal, 0.3s ease);
}

#about .about-card-photo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover, 0 12px 28px rgba(0, 0, 0, 0.08));
  border-color: var(--primary-border, rgba(34, 168, 155, 0.35));
}

#about .about-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

#about .about-card-photo:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  #about .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  #about .about-card-photo {
    height: 200px;
    flex-basis: 200px;
  }
}

@media (max-width: 767px) {
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #about .about-col {
    gap: 14px;
  }

  #about .about-col .about-card {
    padding: 24px 20px;
  }

  #about .about-card-photo {
    height: 190px;
    flex-basis: 190px;
  }
}
/*end_css_for_about*/

/*start_css_for_iktu3j*/
#iktu3j.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

#iktu3j .section-head {
  max-width: 780px;
  margin: 0 auto 44px auto;
}

#iktu3j .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
  width: 100%;
}

#iktu3j .review-letter-card {
  background: #ffffff;
  border: 1px solid var(--surface-border, #d5dee2);
  border-radius: var(--radius-lg, 12px);
  padding: 20px;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(0, 0, 0, 0.05));
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#iktu3j .review-letter-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

#iktu3j .letter-preview {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  background-color: #f1f4f6;
  border: 1px solid var(--surface-border, #d5dee2);
  border-radius: var(--radius-md, 8px);
  margin-bottom: 18px;
  box-sizing: border-box;
}

#iktu3j .letter-sheet {
  width: 100%;
  max-width: 400px;
  height: 540px;
  min-height: 540px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid #d5dee2;
  border-radius: 4px;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#iktu3j .letter-preview:hover .letter-sheet {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

#iktu3j .review-letter-img,
#iktu3j .letter-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

#iktu3j .letter-preview:hover .review-letter-img,
#iktu3j .letter-preview:hover .letter-img {
  transform: scale(1.02);
}

#iktu3j .review-caption {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

#iktu3j .view-letter-btn {
  background: transparent;
  border: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary, #0056b3);
  cursor: pointer;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm, 6px);
  transition: color 0.2s ease, text-decoration 0.2s ease, background-color 0.2s ease;
}

#iktu3j .view-letter-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

#iktu3j .view-letter-btn:hover {
  text-decoration: underline;
  color: var(--primary-dark, #003d80);
  background-color: rgba(0, 86, 179, 0.05);
}

#iktu3j .view-letter-btn:hover svg {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  #iktu3j .reviews-grid {
    gap: 20px;
  }

  #iktu3j .letter-sheet {
    height: 480px;
    min-height: 480px;
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  #iktu3j.container {
    padding-left: 16px;
    padding-right: 16px;
  }

  #iktu3j .section-head {
    margin-bottom: 32px;
  }

  #iktu3j .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 20px;
  }

  #iktu3j .review-letter-card {
    padding: 16px;
  }

  #iktu3j .letter-preview {
    padding: 10px;
    margin-bottom: 14px;
  }

  #iktu3j .letter-sheet {
    height: 440px;
    min-height: 440px;
  }
}

@media (max-width: 480px) {
  #iktu3j .letter-sheet {
    height: 380px;
    min-height: 380px;
  }
}
/*end_css_for_iktu3j*/

/*start_css_for_ixoyf*/
#ixoyf {
  display: flex;
  align-items: center;
  gap: 20px;
}

#ixoyf .topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c5d2d8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

#ixoyf .topbar-link:hover {
  color: #ffffff;
}

#ixoyf .topbar-link svg {
  flex-shrink: 0;
}

#ixoyf .topbar-phone {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

#ixoyf .topbar-phone:hover {
  color: var(--primary-light, #24b0a2);
}

@media (max-width: 768px) {
  #ixoyf {
    display: none !important;
  }
}
/*end_css_for_ixoyf*/

/*start_css_for_izjhbu*/
#izjhbu .step-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#izjhbu .step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

#izjhbu .step-img-wrap {
  width: 100%;
  height: 210px;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  margin-bottom: 24px;
  background-color: var(--bg-gray, #f8fafc);
  border: 1px solid var(--surface-border-light, #e2e8f0);
}

#izjhbu .step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

#izjhbu .step-card:hover .step-img {
  transform: scale(1.03);
}

#izjhbu .step-features,
#izjhbu .step-links-box {
  margin-top: auto;
}

@media (max-width: 991px) {
  #izjhbu .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #izjhbu .step-img-wrap {
    height: 220px;
  }
}

@media (max-width: 576px) {
  #izjhbu .step-card {
    padding: 24px 20px;
  }

  #izjhbu .step-img-wrap {
    height: 180px;
    margin-bottom: 20px;
  }

  #izjhbu .step-title {
    font-size: 1.3rem;
  }

  #izjhbu .step-text {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
}
/*end_css_for_izjhbu*/

/*start_css_for_i5nic3*/
#i5nic3 .about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  align-items: stretch;
}

#i5nic3 .about-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.05));
  transition: all var(--transition-normal, 0.3s ease);
}

#i5nic3 .about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover, 0 12px 28px rgba(0, 0, 0, 0.08));
  border-color: var(--primary-border, rgba(34, 168, 155, 0.25));
}

#i5nic3 .about-card .clean-check-list {
  margin-top: auto;
}

@media (max-width: 1024px) {
  #i5nic3 .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  #i5nic3 .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #i5nic3 .about-card {
    padding: 24px 20px;
  }
}
/*end_css_for_i5nic3*/

/*start_css_for_iklfxl*/
#iklfxl .prod-extra-files {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--surface-border, #e2e8f0);
}

#iklfxl .prod-files-header {
  margin-bottom: 14px;
}

#iklfxl .prod-files-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

#iklfxl .prod-files-title svg {
  flex-shrink: 0;
}

#iklfxl .prod-files-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#iklfxl .prod-file-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--surface-border, #e2e8f0);
  border-radius: var(--radius-md, 10px);
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast, 0.25s ease);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.05));
}

#iklfxl .prod-file-item:hover {
  border-color: var(--primary, #22a89b);
  background-color: var(--primary-ultralight, #e6f7f5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 168, 155, 0.16);
}

#iklfxl .prod-file-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-ultralight, #e6f7f5);
  border: 1px solid var(--primary-border, rgba(34, 168, 155, 0.25));
  color: var(--primary-dark, #188c80);
  border-radius: var(--radius-md, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

#iklfxl .prod-file-item:hover .prod-file-icon {
  background: var(--primary, #22a89b);
  border-color: var(--primary, #22a89b);
  color: #ffffff;
}

#iklfxl .prod-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#iklfxl .prod-file-name {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark, #1a202c);
  line-height: 1.35;
}

#iklfxl .prod-file-meta {
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  line-height: 1.3;
}

#iklfxl .prod-file-action {
  color: var(--primary, #22a89b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

#iklfxl .prod-file-item:hover .prod-file-action {
  transform: translateY(2px);
}

@media (max-width: 840px) {
  #iklfxl .prod-files-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  #iklfxl .prod-file-item {
    padding: 14px;
    gap: 12px;
  }

  #iklfxl .prod-file-icon {
    width: 40px;
    height: 40px;
  }

  #iklfxl .prod-file-name {
    font-size: 0.9rem;
  }
}
/*end_css_for_iklfxl*/
