/* ====================================================
   OPT LANDING PAGE — Мерч оптом под заказ
   vcemmerch.ru/opt/ — Ultra-Wide 1680px+ & Rich Content
   ==================================================== */

/* ── Reset & Base ── */
.opt-page * { box-sizing: border-box; }
.opt-page {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Responsive Display Toggles ── */
.opt-badge-mobile,
.opt-sub-mobile,
.opt-label-mobile {
  display: none !important;
}
.opt-badge-desktop,
.opt-sub-desktop,
.opt-label-desktop {
  display: inline !important;
}

/* ── CSS Variables ── */
.opt-page {
  --opt-accent: #E8C840;
  --opt-accent-hover: #d4b42b;
  --opt-accent-dark: #b89300;
  --opt-accent-soft: rgba(232, 200, 64, 0.16);
  --opt-dark: #0f172a;
  --opt-dark-hover: #1e293b;
  --opt-text: #334155;
  --opt-muted: #64748b;
  --opt-light-gray: #f1f5f9;
  --opt-bg: #f8fafc;
  --opt-white: #ffffff;
  --opt-border: #e2e8f0;
  --opt-border-light: #f1f5f9;
  --opt-radius: 18px;
  --opt-radius-sm: 10px;
  --opt-shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
  --opt-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --opt-shadow-hover: 0 18px 42px rgba(15, 23, 42, 0.1);
  --opt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Ultra-Wide Container (1680px) ── */
.opt-container {
  max-width: 1680px;
  width: 96%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.opt-section {
  padding: 58px 0;
  position: relative;
}

.opt-section--white {
  background: var(--opt-white);
}

.opt-section--light {
  background: var(--opt-bg);
}

.opt-section-header {
  margin-bottom: 36px;
}

.opt-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.opt-section-header--center .opt-section-desc {
  margin-left: auto;
  margin-right: auto;
}

.opt-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid rgba(232, 200, 64, 0.5);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.opt-section-title {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--opt-dark);
  margin: 0 0 14px;
}

.opt-section-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--opt-muted);
  max-width: 720px;
  margin: 0;
}

/* ====================================================
   HERO SECTION (1680px Wide & Rich)
   ==================================================== */
.opt-hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--opt-border);
  overflow: hidden;
}

.opt-hero__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(232, 200, 64, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 75%, rgba(241, 245, 249, 0.95) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.opt-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.opt-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1680px;
  width: 96%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.opt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffbeb;
  border: 1px solid rgba(232, 200, 64, 0.65);
  color: #92400e;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(232, 200, 64, 0.18);
}

.opt-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #d97706;
  border-radius: 50%;
  animation: opt-pulse 2s infinite ease-in-out;
}

@keyframes opt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.opt-hero__title {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 900;
  color: var(--opt-dark);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.opt-hero__title span {
  background: linear-gradient(90deg, #b45309 0%, #d97706 70%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.opt-hero__subtitle {
  font-size: 19px;
  color: var(--opt-text);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 680px;
}

.opt-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.opt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--opt-dark);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--opt-transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.opt-btn-primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28);
  color: #ffffff !important;
  text-decoration: none;
}

.opt-btn-primary svg {
  transition: transform 0.2s;
}

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

.opt-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--opt-white);
  color: var(--opt-dark) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  border: 1.5px solid var(--opt-border);
  text-decoration: none;
  transition: var(--opt-transition);
  box-shadow: var(--opt-shadow-sm);
}

.opt-btn-secondary:hover {
  border-color: #d97706;
  color: #d97706 !important;
  background: #fffbeb;
  transform: translateY(-2px);
  text-decoration: none;
}

.opt-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--opt-border);
  justify-content: start;
}

.opt-hero__stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--opt-dark);
  line-height: 1;
  display: block;
}

.opt-hero__stat-label {
  font-size: 14px;
  color: var(--opt-muted);
  margin-top: 6px;
  display: block;
  font-weight: 600;
}

/* Hero Visual Model */
.opt-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.opt-hero__img-wrap {
  position: relative;
  width: 520px;
  max-width: 100%;
  border-radius: 24px;
  padding: 10px;
}

.opt-hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(232, 200, 64, 0.32) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  animation: heroGlow 5s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 1; }
}

.opt-hero__model-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 42px rgba(15, 23, 42, 0.14));
  animation: heroModelMotion 7s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroModelMotion {
  0% {
    transform: scale(1) translateY(0) rotate(0deg);
  }
  50% {
    transform: scale(1.03) translateY(-8px) rotate(0.4deg);
  }
  100% {
    transform: scale(1.01) translateY(-4px) rotate(-0.3deg);
  }
}

.opt-hero__floats {
  position: absolute;
  top: 15px;
  right: -15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opt-float-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.opt-float-card__num {
  font-size: 20px;
  font-weight: 900;
  color: #b45309;
  display: block;
}

.opt-float-card__text {
  font-size: 12px;
  font-weight: 700;
  color: var(--opt-muted);
  display: block;
}

/* ====================================================
   TICKER (Светлая бегущая лента)
   ==================================================== */
.opt-ticker {
  background: #fef08a;
  border-top: 1px solid #fde047;
  border-bottom: 1px solid #fde047;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.opt-ticker__track {
  display: inline-flex;
  animation: opt-ticker 24s linear infinite;
}

.opt-ticker__item {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #78350f;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.opt-ticker__item::after {
  content: '✦';
  font-size: 13px;
  color: #b45309;
}

@keyframes opt-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================================================
   TIER SCALE (Шкала оптовых скидок)
   ==================================================== */
.opt-tier-bar {
  background: var(--opt-white);
  border: 1px solid var(--opt-border);
  border-radius: 16px;
  padding: 24px 30px;
  margin-top: 36px;
  box-shadow: var(--opt-shadow-sm);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
}

.opt-tier-bar__info h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--opt-dark);
  margin: 0 0 6px;
}

.opt-tier-bar__info p {
  font-size: 14px;
  color: var(--opt-muted);
  margin: 0;
}

.opt-tier-bar__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.opt-tier-item {
  background: #f8fafc;
  border: 1px solid var(--opt-border);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  position: relative;
  transition: var(--opt-transition);
}

.opt-tier-item:hover {
  background: #fffbeb;
  border-color: #d97706;
  transform: translateY(-2px);
}

.opt-tier-item__qty {
  font-size: 17px;
  font-weight: 900;
  color: var(--opt-dark);
  display: block;
}

.opt-tier-item__discount {
  font-size: 13px;
  font-weight: 700;
  color: #b45309;
  margin-top: 4px;
  display: block;
}

/* ====================================================
   CATALOG CARDS — ЖИВЫЕ МОДЕЛИ (VIDEO MOTION)
   ==================================================== */
.opt-catalog__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.opt-cat-card {
  background: var(--opt-white);
  border: 1px solid var(--opt-border);
  border-radius: var(--opt-radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--opt-transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--opt-shadow-sm);
}

.opt-cat-card:hover {
  transform: translateY(-8px);
  border-color: #d97706;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
  text-decoration: none;
}

.opt-cat-card__video-box {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f1f5f9;
}

.opt-cat-card__video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: modelLiveVideo 8s ease-in-out infinite alternate;
  will-change: transform;
  transition: filter 0.4s ease;
}

.opt-cat-card:nth-child(1) .opt-cat-card__video-box img { animation-delay: 0s; }
.opt-cat-card:nth-child(2) .opt-cat-card__video-box img { animation-delay: -1.7s; }
.opt-cat-card:nth-child(3) .opt-cat-card__video-box img { animation-delay: -3.4s; }
.opt-cat-card:nth-child(4) .opt-cat-card__video-box img { animation-delay: -5.1s; }
.opt-cat-card:nth-child(5) .opt-cat-card__video-box img { animation-delay: -2.3s; }

@keyframes modelLiveVideo {
  0% { transform: scale(1.02) translateY(0) rotate(0deg); }
  30% { transform: scale(1.07) translateY(-2%) rotate(0.4deg); }
  65% { transform: scale(1.04) translateY(-1%) rotate(-0.3deg); }
  100% { transform: scale(1.09) translateY(-3%) rotate(0.2deg); }
}

.opt-cat-card:hover .opt-cat-card__video-box img {
  animation-play-state: paused;
  transform: scale(1.12) translateY(-2%);
}

.opt-cat-card__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 15%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.45) 55%,
    transparent 85%
  );
  background-size: 250% 250%;
  animation: studioLightSweep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 2;
}

.opt-cat-card:nth-child(2) .opt-cat-card__shimmer { animation-delay: -2s; }
.opt-cat-card:nth-child(3) .opt-cat-card__shimmer { animation-delay: -4s; }
.opt-cat-card:nth-child(4) .opt-cat-card__shimmer { animation-delay: -1s; }
.opt-cat-card:nth-child(5) .opt-cat-card__shimmer { animation-delay: -5s; }

@keyframes studioLightSweep {
  0%, 45% { transform: translateX(-160%); opacity: 0; }
  55% { opacity: 0.7; }
  65%, 100% { transform: translateX(160%); opacity: 0; }
}

.opt-cat-card__live-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.opt-cat-card__live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: liveDotPulse 1.5s infinite;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.opt-cat-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #d97706;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.opt-cat-card__timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.opt-cat-card__timeline-bar {
  height: 100%;
  background: #d97706;
  animation: videoProgress 8s linear infinite;
}

.opt-cat-card:nth-child(2) .opt-cat-card__timeline-bar { animation-delay: -1.7s; }
.opt-cat-card:nth-child(3) .opt-cat-card__timeline-bar { animation-delay: -3.4s; }
.opt-cat-card:nth-child(4) .opt-cat-card__timeline-bar { animation-delay: -5.1s; }
.opt-cat-card:nth-child(5) .opt-cat-card__timeline-bar { animation-delay: -2.3s; }

@keyframes videoProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.opt-cat-card__body {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--opt-white);
}

.opt-cat-card__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--opt-dark);
  margin: 0;
}

.opt-cat-card__count {
  font-size: 13px;
  color: #b45309;
  font-weight: 700;
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: 50px;
  margin: 0;
}

/* ====================================================
   FEATURES (Почему мы)
   ==================================================== */
.opt-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.opt-feature-card {
  background: var(--opt-white);
  border: 1px solid var(--opt-border);
  border-radius: var(--opt-radius);
  padding: 32px 28px;
  transition: var(--opt-transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--opt-shadow-sm);
}

.opt-feature-card:hover {
  border-color: #d97706;
  transform: translateY(-4px);
  box-shadow: var(--opt-shadow-hover);
}

.opt-feature-card__icon {
  width: 54px;
  height: 54px;
  background: #fef3c7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.opt-feature-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--opt-dark);
  margin: 0 0 10px;
}

.opt-feature-card__desc {
  font-size: 15px;
  color: var(--opt-muted);
  line-height: 1.6;
  margin: 0;
}

/* ====================================================
   PROCESS (Новый сквозной таймлайн — НЕ повторяет карточки)
   ==================================================== */
.opt-process-timeline {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
  border: 1.5px solid #fde68a;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 12px 36px rgba(217, 119, 6, 0.08);
}

.opt-timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.opt-timeline-step {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #fcd34d;
  transition: var(--opt-transition);
}

.opt-timeline-step:hover {
  border-left-color: #d97706;
  transform: translateX(4px);
}

.opt-timeline-step__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  background: #fef3c7;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.opt-timeline-step__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--opt-dark);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.opt-timeline-step__title span {
  font-size: 18px;
}

.opt-timeline-step__desc {
  font-size: 14.5px;
  color: var(--opt-text);
  line-height: 1.55;
  margin: 0 0 12px;
}

.opt-timeline-step__time {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #047857;
  background: #d1fae5;
  padding: 3px 10px;
  border-radius: 6px;
}

/* ====================================================
   BRANDING TECHNOLOGIES (Технологии печати)
   ==================================================== */
.opt-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.opt-tech-card {
  background: var(--opt-white);
  border: 1px solid var(--opt-border);
  border-radius: var(--opt-radius);
  padding: 28px;
  box-shadow: var(--opt-shadow-sm);
  transition: var(--opt-transition);
}

.opt-tech-card:hover {
  border-color: #d97706;
  transform: translateY(-4px);
  box-shadow: var(--opt-shadow-hover);
}

.opt-tech-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.opt-tech-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--opt-dark);
  margin: 0 0 8px;
}

.opt-tech-card__desc {
  font-size: 14.5px;
  color: var(--opt-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.opt-tech-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: var(--opt-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--opt-border-light);
  padding-top: 12px;
}

.opt-tech-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.opt-tech-card__features li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 900;
}

/* ====================================================
   CLIENT CASES (Реальные кейсы брендов)
   ==================================================== */
.opt-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.opt-case-card {
  background: var(--opt-white);
  border: 1px solid var(--opt-border);
  border-radius: var(--opt-radius);
  overflow: hidden;
  box-shadow: var(--opt-shadow-sm);
  transition: var(--opt-transition);
  display: flex;
  flex-direction: column;
}

.opt-case-card:hover {
  transform: translateY(-5px);
  border-color: #d97706;
  box-shadow: var(--opt-shadow-hover);
}

.opt-case-card__img-box {
  height: 240px;
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.opt-case-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.opt-case-card:hover .opt-case-card__img-box img {
  transform: scale(1.05);
}

.opt-case-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.opt-case-card__body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.opt-case-card__client {
  font-size: 20px;
  font-weight: 900;
  color: var(--opt-dark);
  margin: 0 0 8px;
}

.opt-case-card__desc {
  font-size: 14.5px;
  color: var(--opt-text);
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}

.opt-case-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--opt-border-light);
  font-size: 13px;
  font-weight: 700;
  color: #b45309;
}

/* ====================================================
   CONDITIONS TABLE (Условия)
   ==================================================== */
.opt-conditions-card {
  background: var(--opt-white);
  border: 1px solid var(--opt-border);
  border-radius: var(--opt-radius);
  overflow: hidden;
  box-shadow: var(--opt-shadow-sm);
}

.opt-conditions__table {
  width: 100%;
  border-collapse: collapse;
}

.opt-conditions__table thead th {
  background: #f8fafc;
  color: var(--opt-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--opt-border);
}

.opt-conditions__table tbody tr {
  border-bottom: 1px solid var(--opt-border-light);
  transition: background 0.15s;
}

.opt-conditions__table tbody tr:hover {
  background: #fffbeb;
}

.opt-conditions__table tbody tr:last-child {
  border-bottom: none;
}

.opt-conditions__table tbody td {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--opt-text);
}

.opt-conditions__table tbody td:first-child {
  font-weight: 800;
  color: var(--opt-dark);
}

.opt-badge-pill {
  display: inline-block;
  background: #fef3c7;
  color: #b45309;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
}

/* ====================================================
   FAQ ACCORDION (Частые вопросы оптовиков)
   ==================================================== */
.opt-faq-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.opt-faq-item {
  background: var(--opt-white);
  border: 1.5px solid var(--opt-border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--opt-transition);
}

.opt-faq-item.active {
  border-color: #d97706;
  box-shadow: var(--opt-shadow);
}

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

.opt-faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #d97706;
}

.opt-faq-item.active .opt-faq-question svg {
  transform: rotate(180deg);
}

.opt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 15.5px;
  color: var(--opt-text);
  line-height: 1.65;
}

.opt-faq-item.active .opt-faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ====================================================
   FORM & CONTACTS
   ==================================================== */
.opt-form-section {
  background: #ffffff;
  border-top: 1px solid var(--opt-border);
  padding: 64px 0;
}

.opt-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.opt-form-info__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--opt-dark);
  line-height: 1.18;
  margin: 0 0 16px;
}

.opt-form-info__title span {
  color: #d97706;
}

.opt-form-info__desc {
  font-size: 16.5px;
  color: var(--opt-muted);
  line-height: 1.65;
  margin: 0 0 32px;
}

.opt-form-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.opt-form-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--opt-dark) !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--opt-transition);
  padding: 12px 18px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--opt-border);
}

.opt-form-contact-item:hover {
  background: #fffbeb;
  border-color: #d97706;
  color: #d97706 !important;
  text-decoration: none;
  transform: translateX(4px);
}

.opt-form-contact-item__icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
}

/* Форма Contact Form 7 */
.opt-form-box {
  background: #f8fafc;
  border: 1.5px solid var(--opt-border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--opt-shadow);
}

.opt-form-box .wpcf7-form label,
.opt-form-box form label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--opt-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.opt-form-box .wpcf7-form input[type="text"],
.opt-form-box .wpcf7-form input[type="tel"],
.opt-form-box .wpcf7-form input[type="number"],
.opt-form-box .wpcf7-form select,
.opt-form-box .wpcf7-form textarea,
.opt-form-box form input[type="text"],
.opt-form-box form input[type="tel"],
.opt-form-box form input[type="number"],
.opt-form-box form select,
.opt-form-box form textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--opt-dark);
  font-family: inherit;
  transition: var(--opt-transition);
  margin-bottom: 18px;
  outline: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.opt-form-box .wpcf7-form input:focus,
.opt-form-box .wpcf7-form select:focus,
.opt-form-box .wpcf7-form textarea:focus,
.opt-form-box form input:focus,
.opt-form-box form select:focus,
.opt-form-box form textarea:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.18);
  background: #ffffff;
}

.opt-form-box .wpcf7-form textarea,
.opt-form-box form textarea {
  height: 100px;
  resize: vertical;
}

.opt-form-box .wpcf7-form .btn-opt-submit,
.opt-form-box .wpcf7-form input[type="submit"],
.opt-form-box form .btn-opt-submit {
  width: 100%;
  background: var(--opt-dark);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: var(--opt-transition);
  margin-top: 6px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.opt-form-box .wpcf7-form .btn-opt-submit:hover,
.opt-form-box .wpcf7-form input[type="submit"]:hover,
.opt-form-box form .btn-opt-submit:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(217, 119, 6, 0.28);
}

.opt-form-box .url-adress,
.opt-form-box .wpcf7-form .url-adress {
  display: none !important;
}

.opt-form-box .wpcf7-response-output {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 16px;
}

/* ====================================================
   RESPONSIVE ADAPTATION — PERFECT MOBILE & TABLET
   ==================================================== */
.opt-table-swipe-hint {
  display: none;
  font-size: 12px;
  color: var(--opt-muted);
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 1400px) {
  .opt-catalog__grid { grid-template-columns: repeat(3, 1fr); }
  .opt-features__grid { grid-template-columns: repeat(2, 1fr); }
  .opt-timeline-track { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .opt-tech__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .opt-hero { padding: 36px 0 32px; }
  .opt-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .opt-hero__subtitle { margin: 0 auto 24px; }
  .opt-hero__actions { justify-content: center; }
  .opt-hero__stats { justify-content: center; }
  .opt-tier-bar { grid-template-columns: 1fr; gap: 20px; }
  .opt-cases__grid { grid-template-columns: repeat(2, 1fr); }
  .opt-form-wrap { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .opt-container {
    width: 100%;
    padding: 0 16px;
  }
  .opt-section {
    padding: 38px 0;
  }
  .opt-section-header {
    margin-bottom: 24px;
    text-align: center;
  }
  .opt-section-desc {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── Mobile/Desktop Text Toggles ── */
  .opt-badge-mobile,
  .opt-sub-mobile,
  .opt-label-mobile {
    display: inline !important;
  }
  .opt-badge-desktop,
  .opt-sub-desktop,
  .opt-label-desktop {
    display: none !important;
  }

  /* ── Hero Mobile Redesign (Balanced, Compact, No Overflow) ── */
  .opt-hero {
    padding: 20px 0 24px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  .opt-hero__container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
    text-align: center;
  }
  .opt-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .opt-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fffbeb;
    border: 1px solid rgba(232, 200, 64, 0.7);
    color: #92400e;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 auto 12px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    box-shadow: 0 2px 8px rgba(232, 200, 64, 0.15);
  }
  .opt-hero__badge-dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
  }
  .opt-hero__title {
    font-size: clamp(24px, 6.8vw, 32px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 10px;
    color: var(--opt-dark);
    max-width: 100%;
    box-sizing: border-box;
  }
  .opt-hero__title span {
    display: block;
    margin-top: 2px;
  }
  .opt-hero__subtitle {
    font-size: 13.5px;
    line-height: 1.55;
    color: #475569;
    margin: 0 auto 16px;
    max-width: 360px;
    box-sizing: border-box;
  }
  .opt-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .opt-btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 20px;
    font-size: 14.5px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
  }
  .opt-btn-primary svg {
    width: 16px;
    height: 16px;
  }
  .opt-btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid var(--opt-border);
    color: #475569 !important;
    box-shadow: none;
  }
  .opt-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--opt-dark) !important;
  }

  /* Compact 3-Column Hero Stats Bar */
  .opt-hero__stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    width: 100%;
    max-width: 360px;
    margin: 16px auto 0 !important;
    padding: 10px 6px !important;
    background: #ffffff;
    border: 1px solid var(--opt-border) !important;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    box-sizing: border-box;
  }
  .opt-hero__stats > div,
  .opt-hero__stat-item {
    padding: 2px 4px !important;
    text-align: center !important;
    position: relative;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .opt-hero__stats > div:not(:last-child)::after,
  .opt-hero__stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: #e2e8f0;
  }
  .opt-hero__stat-num {
    font-size: 17px !important;
    font-weight: 900 !important;
    color: var(--opt-dark) !important;
    line-height: 1.15 !important;
    display: block !important;
    order: 1 !important;
  }
  .opt-hero__stat-label {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    line-height: 1.25 !important;
    margin-top: 3px !important;
    display: block !important;
    order: 2 !important;
  }

  /* Compact Hero Visual Model with Floating Chips */
  .opt-hero__visual {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px auto 0;
    box-sizing: border-box;
  }
  .opt-hero__img-wrap {
    width: 220px;
    max-width: 80%;
    margin: 0 auto;
    padding: 6px;
    position: relative;
    box-sizing: border-box;
  }
  .opt-hero__img-wrap::before {
    inset: -8px;
    background: radial-gradient(circle, rgba(232, 200, 64, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
  }
  .opt-hero__model-img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.12));
  }
  .opt-hero__floats {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 8px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .opt-float-card {
    flex: 1;
    max-width: 140px;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--opt-border);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    text-align: center;
    box-sizing: border-box;
  }
  .opt-float-card__num {
    font-size: 15px;
    font-weight: 800;
    color: #b45309;
    line-height: 1.1;
  }
  .opt-float-card__text {
    font-size: 10px;
    font-weight: 600;
    color: var(--opt-muted);
    margin-top: 1px;
    line-height: 1.2;
  }

  /* Catalog Grid Mobile */
  .opt-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .opt-cat-card__body {
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .opt-cat-card__name {
    font-size: 14px;
  }
  .opt-cat-card__count {
    font-size: 11px;
    padding: 2px 6px;
  }
  .opt-cat-card__live-badge {
    font-size: 9px;
    padding: 2px 6px;
    top: 8px;
    right: 8px;
  }
  .opt-cat-card__badge {
    font-size: 9px;
    padding: 2px 6px;
    top: 8px;
    left: 8px;
  }

  /* Tier Scale Mobile */
  .opt-tier-bar {
    padding: 18px 16px;
    margin-top: 24px;
  }
  .opt-tier-bar__info h4 {
    font-size: 16px;
  }
  .opt-tier-bar__info p {
    font-size: 13px;
  }
  .opt-tier-bar__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .opt-tier-item {
    padding: 10px 12px;
  }
  .opt-tier-item__qty {
    font-size: 15px;
  }
  .opt-tier-item__discount {
    font-size: 12px;
  }

  /* Process Timeline Mobile */
  .opt-process-timeline {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .opt-timeline-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .opt-timeline-step {
    padding-left: 16px;
    border-left: 3px solid #fcd34d;
  }
  .opt-timeline-step__title {
    font-size: 16.5px;
  }
  .opt-timeline-step__desc {
    font-size: 14px;
  }

  /* Branding Tech & Features Mobile */
  .opt-features__grid,
  .opt-tech__grid,
  .opt-cases__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .opt-feature-card,
  .opt-tech-card {
    padding: 22px 18px;
  }
  .opt-case-card__img-box {
    height: 190px;
  }
  .opt-case-card__body {
    padding: 18px;
  }

  /* Conditions Table Mobile */
  .opt-table-swipe-hint {
    display: block;
  }
  .opt-conditions-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
  }
  .opt-conditions__table {
    min-width: 540px;
  }
  .opt-conditions__table th,
  .opt-conditions__table td {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  /* FAQ Mobile */
  .opt-faq-question {
    font-size: 15.5px;
    padding: 16px 18px;
    gap: 10px;
  }
  .opt-faq-answer {
    font-size: 14.5px;
    padding: 0 18px;
  }
  .opt-faq-item.active .opt-faq-answer {
    padding: 0 18px 16px;
  }

  /* Form Section Mobile */
  .opt-form-section {
    padding: 38px 0;
  }
  .opt-form-info__title {
    font-size: 24px;
    text-align: center;
  }
  .opt-form-info__desc {
    font-size: 14.5px;
    text-align: center;
  }
  .opt-form-box {
    padding: 22px 16px;
    border-radius: 18px;
  }
  /* Prevent iOS zoom on inputs */
  .opt-form-box input[type="text"],
  .opt-form-box input[type="tel"],
  .opt-form-box input[type="number"],
  .opt-form-box select,
  .opt-form-box textarea {
    font-size: 16px !important;
    padding: 12px 14px;
  }
  .opt-form-box .btn-opt-submit,
  .opt-form-box input[type="submit"] {
    font-size: 16px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .opt-hero__badge {
    font-size: 10.5px;
    padding: 4px 12px;
  }
  .opt-hero__title {
    font-size: clamp(23px, 6.5vw, 27px);
  }
  .opt-hero__subtitle {
    font-size: 13px;
    max-width: 320px;
  }
  .opt-hero__stats {
    max-width: 340px;
    padding: 8px 4px !important;
  }
  .opt-hero__stat-num {
    font-size: 15.5px !important;
  }
  .opt-hero__stat-label {
    font-size: 9.5px !important;
  }
  .opt-tier-bar__steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ====================================================
   ELEMENTOR NATIVE FAQ ACCORDION STYLES
   ==================================================== */
.opt-elementor-faq {
  max-width: 1100px;
  margin: 20px auto 40px !important;
}

.opt-elementor-faq .elementor-accordion-item {
  background: var(--opt-white) !important;
  border: 1.5px solid var(--opt-border) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
  transition: var(--opt-transition) !important;
}

.opt-elementor-faq .elementor-accordion-item:hover {
  border-color: #d97706 !important;
}

.opt-elementor-faq .elementor-tab-title {
  padding: 20px 24px !important;
  background: transparent !important;
  border: none !important;
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--opt-dark) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.opt-elementor-faq .elementor-tab-title a {
  color: var(--opt-dark) !important;
  text-decoration: none !important;
}

.opt-elementor-faq .elementor-accordion-icon {
  color: #d97706 !important;
}

.opt-elementor-faq .elementor-tab-content {
  padding: 0 24px 20px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15.5px !important;
  color: var(--opt-text) !important;
  line-height: 1.65 !important;
  border-top: none !important;
}
