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

:root {
  /* Colors */
  --color-bg: #f3f4f5;
  --color-text: #111827;
  --color-text-muted: #64748b;
  --color-primary: #7c3aed;
  --color-primary-hover: #6b38c9;
  --color-primary-light: rgba(124, 58, 237, 0.1);
  --color-accent: #ff7a00;
  --color-accent-hover: #e66d00;
  --color-accent-light: rgba(255, 122, 0, 0.1);
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-border: #e5e7eb;
  --color-gray: #686868;

  --v2-c-yellow: #ffcc33;
  --v2-c-blue: #5b7cfa;
  --v2-c-purple: #b97cf6;
  --v2-c-orange-light: #ff9e78;
  --v2-c-orange-dark: #f05133;
  --v2-c-light: #f4f5f7;
  --v2-c-dark: #1e1b3a;
  --v2-text-dark: #111827;
  --v2-text-light: #ffffff;
  --v2-radius-card: 40px;
  --v2-radius-pill: 100px;

  /* Typography */
  --font-main: "Golos Text", sans-serif;

  /* Shadows & Transitions */
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.06);
  --shadow-custom:
    0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-premium:
    0 20px 50px rgba(0, 0, 0, 0.04), 0 10px 20px rgba(128, 73, 229, 0.03);

  --transition-base: all 0.3s ease;
  --transition-slow: all 0.7s ease;

  /* Design System Tokens */
  --design-padding: 1.5rem;
  --design-card-radius: 24px;
  --design-title-size: 18px;
  --design-title-weight: 700;
  --design-desc-size: 14px;
  --design-desc-weight: 500;
  --design-desc-color: var(--color-text-muted);
  --design-desc-line-height: 1.6;
  --design-icon-box-size: 40px;
  --design-icon-size: 18px;
  --design-gap-title-text: 0.75rem;
}

/* Generic Grid System Utilities (FORCE LOAD) */
.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .config-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.col-span-12 {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .col-span-12 {
    grid-column: span 12;
  }

  .col-span-6 {
    grid-column: span 6;
  }

  .md-col-span-7 {
    grid-column: span 7;
  }

  .md-col-span-6 {
    grid-column: span 6;
  }

  .md-col-span-5 {
    grid-column: span 5;
  }

  .md-col-span-3 {
    grid-column: span 3;
  }
}

/* ==========================================================================
      DESIGN SYSTEM UTILITIES
    ========================================================================== */

.card-title {
  font-size: var(--design-title-size);
  font-weight: var(--design-title-weight);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.2;
  margin: 0;
}

.card-title:not(:last-child) {
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: var(--design-desc-size);
  color: var(--design-desc-color);
  font-weight: var(--design-desc-weight);
  line-height: var(--design-desc-line-height);
  margin: 0;
}

.card-desc:not(:last-child) {
  margin-bottom: 1.25rem;
}

.icon-box {
  width: var(--design-icon-box-size);
  height: var(--design-icon-box-size);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i {
  width: var(--design-icon-size);
  height: var(--design-icon-size);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--design-gap-title-text);
}

.card-header--column {
  display: flex;
  flex-direction: column;
}

/* SECTION TYPOGRAPHY (standardized Mobile First) */
.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-family: var(--font-main);
  margin-bottom: 1rem;
  max-width: 900px;
}

.section-desc {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .section-header {
    margin-bottom: 3.5rem;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }

  .section-desc {
    font-size: 18px;
  }
}

/* MainPage Containers */
.mainpage-container {
  width: 100%;
  max-width: 95vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (min-width: 1025px) {
  .mainpage-container {
    width: 800px;
  }
}

.mainpage-visual {
  width: 100%;
  margin-top: 1.5rem;
}

@media (min-width: 1025px) {
  .mainpage-visual {
    margin-top: 2.5rem;
  }
}

.tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Tailwind Preflight Reset Equivalent */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* MainPage Containers & Visuals */
.mainpage-feature-container {
  width: 100%;
  max-width: 95vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (min-width: 1025px) {
  .mainpage-feature-container {
    width: 800px;
  }
}

.catalog-main-visual {
  width: 100%;
  margin-top: 1.5rem;
}

@media (min-width: 1025px) {
  .catalog-main-visual {
    margin-top: 2.5rem;
  }
}

.catalog-main-mockup {
  background: #fff;
  border-radius: 40px;
  box-shadow: var(--shadow-premium);
  padding: 15px;
  /* Reduced for mobile */
  transition: transform 0.5s ease;
}

@media (min-width: 1025px) {
  .catalog-main-mockup {
    padding: 20px;
  }
}

.catalog-main-img {
  width: 100%;
  border-radius: 26px;
  display: block;
  object-fit: contain;
  background: #fff;
  max-height: 400px;
  /* Reduced for mobile */
}

@media (min-width: 1025px) {
  .catalog-main-img {
    max-height: 600px;
  }
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

img,
video {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
[type="button"] {
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 6rem;
}

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

/* Color Helpers (for Constructor & UI components) */
.bg-purple-light {
  background: #f5f3ff;
}

.bg-blue-light {
  background: #e0f2fe;
}

.bg-orange-light {
  background: #fff7ed;
}

.bg-emerald-light {
  background: #ecfdf5;
}

.bg-indigo-light {
  background: #eef2ff;
}

.bg-pink-light {
  background: #fce7f3;
}

.bg-amber-light {
  background: #fef3c7;
}

.text-blue-500 {
  color: #0ea5e9;
}

.text-orange-500 {
  color: #ff7a00;
}

.text-emerald-500 {
  color: #10b981;
}

.text-indigo-500 {
  color: #6366f1;
}

.text-pink-500 {
  color: #ec4899;
}

.text-amber-500 {
  color: #f59e0b;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-300 {
  color: #d1d5db;
}

::selection {
  background-color: var(--color-accent);
  color: var(--color-white);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
      ANIMATIONS
    ========================================================================== */

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(0.5deg);
  }
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ==========================================================================
      HERO SECTION
    ========================================================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem 6rem;
  overflow: hidden;
  padding-bottom: 0;
}

.hero__banner {
  width: 100%;
  max-width: 800px;
  margin-bottom: 4rem;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 250px
}

@media (min-width: 768px) {
  .hero__banner {
    height: 370px;
  }
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.hero__header {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 10;
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: 18px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero__benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 15px;
  color: #334155;
}

.hero__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.hero__benefit-icon-i,
.btn-primary__play-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.btn-primary,
.btn-demo,
.launch-btn-primary,
.int-setup-note__btn,
.mc-v-news-btn,
.oc-btn-cart,
.ui-scm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.125rem 3rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #6366f1 100%);
  color: white !important;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-demo {
  margin-top: 1.5rem;
}

.btn-primary:hover,
.btn-demo:hover,
.launch-btn-primary:hover,
.int-setup-note__btn:hover,
.mc-v-news-btn:hover,
.oc-btn-cart:hover,
.ui-scm-btn:hover {
  filter: brightness(1.1);
}

.btn-primary:active,
.btn-demo:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary__play,
.btn-demo__play,
.bento-v2-btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.btn-primary:hover .btn-primary__play,
.btn-demo:hover .btn-demo__play,
.mc-v-news-btn:hover .btn-primary__play,
.oc-btn-cart:hover .btn-primary__play,
.ui-scm-btn:hover .btn-primary__play {
  background: rgba(255, 255, 255, 0.3);
}

.btn-primary__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.hero__mockup-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background: white;
  padding: 10px;
}

.hero__mockup-img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

/* ==========================================================================
      CORRECTED BENEFITS grid
    ========================================================================== */
.benefits-section {
  padding: 0 20px 80px;
  display: flex;
  justify-content: center;
}

.benefits-container {
  max-width: 800px;
  width: 100%;
}

/* ==========================================================================
    BENTO GRID
    ========================================================================== */
.container {
  max-width: 800px;
  margin: 0 auto;
}

.max-w-sm {
  max-width: 24rem;
}

.bento-v2-btn-text {
  font-weight: 700;
  font-size: 14px;
  color: #1f2937;
  letter-spacing: 0.025em;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.bento-v2-btn-chevrons {
  display: flex;
  align-items: center;
  color: #d1d5db;
  margin-left: 1rem;
}

.bento-v2-btn-chevrons i {
  width: 12px;
  height: 12px;
}

.bento-v2-stat-wrap {
  text-align: center;
  width: 100%;
}

.bento-v2-stat-num {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .bento-v2-stat-num {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.bento-v2-stat-desc {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .bento-v2-stat-desc {
    font-size: 12px;
  }
}

.bento-v2-stat-divider {
  display: none;
  width: 1px;
  height: 3rem;
  background-color: #f3f4f6;
}

@media (min-width: 640px) {
  .bento-v2-stat-divider {
    display: block;
  }
}

/* Business card typography */
.bento-v2-business-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.bento-v2-business-desc {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.bento-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  /* gap-5 */
  grid-auto-flow: row dense;
}

/* @media (min-width: 768px) {
  .bento-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
} */

@media (min-width: 768px) {
  .bento-v2-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Main Block (3x2) */
.bento-v2-card--main {
  grid-column: span 2;
  grid-row: span 3;
  background-color: #ffffff;
  border-radius: 32px;
  padding: var(--design-padding);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
  transition: border-color 0.15s ease-in-out;
}

@media (min-width: 768px) {
  .bento-v2-card--main {
    grid-column: span 3;
    grid-row: span 2;
    padding: 2rem;
  }
}

.bento-v2-card--main:hover {
  border-color: rgba(124, 58, 237, 0.1);
}

/* Decoration / Waves */
.bento-v2-waves {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Main Card Header inner content */
.bento-v2-card-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (min-width: 768px) {
  .bento-v2-card-header {
    flex-direction: row;
  }
}

.bento-v2-main-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  .bento-v2-main-title {
    font-size: 2.75rem;
  }
}

.bento-v2-main-desc {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 500;
}

.bento-v2-btn-demo {
  margin-top: 0.5rem;
  background-color: var(--color-bg);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.15s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.bento-v2-btn-demo:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bento-v2-btn-icon-wrap {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-accent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(255, 122, 0, 0.2);
  transition: transform 0.15s ease-in-out;
}

.bento-v2-btn-demo:hover .bento-v2-btn-icon-wrap {
  transform: scale(1.05);
}

/* Main Card Stats */
.bento-v2-stats {
  background-color: var(--color-bg);
  border-radius: 24px;
  padding: var(--design-padding);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .bento-v2-stats {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .bento-v2-stats {
    padding: var(--design-padding);
  }
}

/* Card 2: Adaptive (2x2) */
.bento-v2-card--adaptive {
  grid-column: span 2;
  grid-row: span 2;
  background-color: var(--color-primary);
  border-radius: var(--design-card-radius);
  padding: var(--design-padding);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .bento-v2-card--adaptive {
    padding: var(--design-padding);
    flex-direction: row;
    grid-column: span 2;
  }
}

.bento-v2-card--adaptive:hover {
  transform: translateY(-4px);
}

.bento-v2-glow {
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(255, 122, 0, 0.4);
  filter: blur(80px);
  border-radius: 9999px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

@media (min-width: 768px) {
  .bento-v2-glow {
    bottom: -2.5rem;
    right: -2.5rem;
  }
}

.bento-v2-card--adaptive:hover .bento-v2-glow {
  opacity: 0.8;
}

.bento-v2-adaptive-text-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-bottom: 0;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .bento-v2-adaptive-text-wrap {
    width: 55%;
  }
}

.bento-v2-adaptive-title {
  line-height: 1.1;
  color: white;
  letter-spacing: -0.025em;
}

.bento-v2-adaptive-desc {
  color: #e9d5ff;
  margin-bottom: 1.5rem;
}

.bento-v2-badge {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  width: max-content;
  padding: 0.625rem 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.bento-v2-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.bento-v2-badge:hover .bento-v2-badge-icon {
  transform: scale(1.1) rotate(5deg);
}

.bento-v2-badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: white;
}

/* Phone Mockup container and transform */
.bento-v2-phone-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
  margin-top: auto;
  height: 260px;
  display: none;
}

@media (min-width: 768px) {
  .bento-v2-phone-wrap {
    display: block;
    width: 40%;
    justify-content: flex-end;
    height: auto;
    margin-top: 0;
  }
}

.bento-v2-phone {
  position: absolute;
  bottom: -10rem;
  right: 0;
  width: 220px;
  height: 460px;
  background-color: white;
  border-radius: 36px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: rotate(-4deg);
  transition: transform 0.7s ease;
}

@media (min-width: 768px) {
  .bento-v2-phone {
    bottom: -6rem;
    right: -1rem;
  }
}

.bento-v2-card--adaptive:hover .bento-v2-phone {
  transform: rotate(0) translateY(-1rem);
}

/* Card 3: Business (1x2) */
.bento-v2-card--business {
  grid-column: span 2;
  grid-row: span 2;
  background-color: #ffffff;
  border-radius: var(--design-card-radius);
  padding: var(--design-padding);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
  transition:
    border-color 0.15s ease-in-out,
    transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bento-v2-card--business {
    grid-column: span 1;
  }
}

.bento-v2-card--business:hover {
  border-color: rgba(124, 58, 237, 0.1);
  transform: translateY(-4px);
}

.bento-v2-avatar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bento-v2-clients-label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  line-height: 1.25;
}

.bento-v2-avatar-stack {
  display: flex;
  margin-left: 0;
}

.bento-v2-avatar-stack>* {
  margin-left: -8px;
  border: 2px solid #f4f5f8;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  width: 36px;
  height: 36px;
  overflow: hidden;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bento-v2-avatar-stack>*:hover {
  transform: translateY(-2px) scale(1.1);
  z-index: 10;
}

.bento-v2-avatar-stack>*:first-child {
  margin-left: 0;
}

.bento-v2-avatar-badge {
  background: #fee2e2;
  color: #ef4444;
  font-size: 10px;
  font-weight: 700;
  border-color: #f4f5f8 !important;
}

.bento-v2-avatar-badge--orange {
  background: #fff7ed;
  color: #f97316;
}

.bento-v2-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.bento-v2-feature-item {
  background-color: var(--color-bg);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-v2-feature-text {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
}

.bento-v2-card--business:hover .bento-v2-feature-item {
  transform: translateX(0.5rem);
}

.bento-v2-feature-item.delay-75 {
  transition-delay: 0.05s;
}

.bento-v2-feature-item.delay-150 {
  transition-delay: 0.1s;
}

.bento-v2-feature-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.bento-v2-icon-orange {
  background-color: #ffebd2;
  color: #f97316;
}

.bento-v2-icon-purple {
  background-color: #e0d9ff;
  color: #7c3aed;
}

.bento-v2-icon-blue {
  background-color: #d7e9ff;
  color: #3b82f6;
}

.bento-v2-icon-orange,
.bento-v2-icon-purple,
.bento-v2-icon-blue {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* ==========================================================================
            QUOTE SECTION — Философия продукта
            ========================================================================== */
.quote-section {
  padding: 6rem 1rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg);
}

/* Обёртка иконки + пузыря */
.quote-section__bubble-wrap {
  width: 100%;
  position: relative;
}

/* Иконка кавычек — фиолетовый квадрат */
.quote-section__icon {
  position: absolute;
  top: -28px;
  left: 32px;
  width: 55px;
  height: 55px;
  background: var(--color-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.38);
  z-index: 2;
}

@media (min-width: 768px) {
  .quote-section__icon {
    width: 64px;
    height: 64px;
  }
}

/* Пузырь с цитатой */
.quote-section__bubble {
  background: var(--color-white);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  position: relative;
}

.quote-section__text {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.5;
}

/* Хвостик пузыря (треугольник снизу-слева) */
.quote-section__bubble-tail {
  position: absolute;
  bottom: -20px;
  left: 44px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 20px solid var(--color-white);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06));
}

/* Автор — под пузырём */
.quote-section__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-left: 1.75rem;
  align-self: flex-start;
}

.quote-section__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #e2e8f0;
}

.quote-section__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-section__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-section__author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-main);
}

.quote-section__author-role {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 480px) {
  .quote-section__text {
    font-size: 16px;
  }
}

/* ==========================================================================
            VITRINE SECTION — Варианты главной страницы
            ========================================================================== */
.vitrine-section {
  padding: 6rem 1rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg);
}

/* Сетка карточек */
.vitrine-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .vitrine-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .vitrine-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Базовая карточка */
.vitrine-card {
  background: var(--color-white);
  border-radius: var(--design-card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition:
    transform 0.3s ease,
    border-color 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vitrine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.vitrine-card--classic:hover {
  border-color: rgba(124, 58, 237, 0.15);
}

.vitrine-card--image:hover {
  border-color: rgba(124, 58, 237, 0.25);
}

/* Верхняя часть карточки */
.vitrine-card__top {
  padding: var(--design-padding);
  align-items: flex-start;
  margin-bottom: 0;
}

/* Нумерованный бейдж */
.vitrine-card__num {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-main);
  color: #6b7280;
  background: #f3f4f6;
  letter-spacing: 0.02em;
}

.vitrine-card__num--purple {
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
}

.vitrine-card__num--purple {
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
}

/* Мокап-изображение */
.vitrine-card__mockup {
  flex: 1;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #f1f5f9;
  min-height: 220px;
}

.vitrine-card__img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.vitrine-card:hover .vitrine-card__img {
  transform: scale(1.02);
}

/* Экспертная плашка в блоке витрин */
.vitrine-expert-note {
  margin: 3.5rem auto 2.5rem;
  max-width: 960px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
}

.vitrine-expert-note__icon {
  width: 56px;
  height: 56px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--color-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vitrine-expert-note__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

.vitrine-expert-note__text b {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .vitrine-expert-note {
    flex-direction: column;
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    gap: 1.25rem;
    margin-top: 4rem;
  }

  .vitrine-expert-note::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Проработанная кнопка Демо */
.vitrine-demo-footer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

/* btn-demo-premium is now unified in the primary button section */

/* ==========================================================================
      MAINPAGE SECTION
    ========================================================================== */
.mainpage-section {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-bg);
}

@media (min-width: 1024px) {
  .mainpage-section {
    padding: 6rem 1rem;
  }
}

/* ===================== GRID ===================== */
.mp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 1024px) {
  .mp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* ===================== CARD BASE ===================== */
.mp-card {
  background: #fff;
  border-radius: var(--design-card-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .mp-card {
    padding: var(--design-padding);
  }
}

.mp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.mp-card--full {
  grid-column: span 1;
}

.mp-card--half {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .mp-card--full {
    grid-column: span 2;
  }
}

/* ===================== CARD BODY (text block) ===================== */
.mp-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* ===================== VISUAL AREAS ===================== */
.mp-card__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border-radius: 24px;
  overflow: hidden;
}

/* --- Card 1: Шапка сайта --- */
.mp-card--header-site {
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  min-height: auto;
}

@media (min-width: 1024px) {
  .mp-card--header-site {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    min-height: 480px;
  }
}

.mp-card__text {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--design-gap-title-text);
}

.mp-card__visual--header {
  flex: 2;
  background: #f8f9fc;
  min-height: 320px;
  align-self: stretch;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
  position: relative;
}

@media (min-width: 1024px) {
  .mp-card__visual--header {
    min-height: 480px;
    padding: 2rem;
  }
}

/* Header stack layout */
.mp-header-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-header-mockup {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 85%;
  max-width: 380px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 0;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mp-header-mockup--1 {
  z-index: 3;
  transform: translate(-15px, -40px) rotate(-2deg);
}

.mp-header-mockup--2 {
  z-index: 4;
  transform: translate(0, 0);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mp-header-mockup--3 {
  z-index: 2;
  transform: translate(15px, 40px) rotate(2deg);
}

@media (min-width: 1024px) {
  .mp-header-mockup--1 {
    transform: translate(-30px, -80px) rotate(-2deg);
  }

  .mp-header-mockup--3 {
    transform: translate(30px, 80px) rotate(2deg);
  }
}

.mp-card--header-site:hover .mp-header-mockup--1 {
  transform: translate(-40px, -60px) rotate(-4deg);
}

.mp-card--header-site:hover .mp-header-mockup--2 {
  transform: translate(0, 0) scale(1.05);
}

.mp-card--header-site:hover .mp-header-mockup--3 {
  transform: translate(40px, 60px) rotate(4deg);
}

@media (min-width: 1024px) {
  .mp-card--header-site:hover .mp-header-mockup--1 {
    transform: translate(-80px, -110px) rotate(-4deg);
  }

  .mp-card--header-site:hover .mp-header-mockup--3 {
    transform: translate(80px, 110px) rotate(4deg);
  }
}

.mp-header-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* --- Card 2: Промо --- */
.mp-card__visual--promo {
  background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 100px;
}

.mp-promo-banner {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  border-radius: 16px;
  padding: 18px 20px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

@media (min-width: 1024px) {
  .mp-promo-banner {
    width: 85%;
  }
}

.mp-promo-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}

.mp-promo-line--lg {
  width: 100px;
  background: rgba(255, 255, 255, 0.8);
}

.mp-promo-line--md {
  width: 70px;
}

.mp-promo-btn-fake {
  width: 55px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.35);
}

.mp-promo-percent {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-main);
}

/* --- Card 4: Каталог на главной --- */
.mp-card--cat-main {
  flex-direction: column;
}

.mp-card__visual--cat-main {
  background: #f1f5f9;
  padding: 1.5rem 1.5rem 0;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .mp-card__visual--cat-main {
    padding: 2.5rem 3rem 0;
    min-height: 320px;
  }
}

.mp-cat-main-mockup {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 12px 12px 0;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: none;
  line-height: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mp-card--cat-main:hover .mp-cat-main-mockup {
  transform: translateY(-10px);
}

.mp-cat-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px 14px 0 0;
}

/* --- Card 5: Витрина --- */
.mp-card--vitrina {
  flex-direction: column;
}

.mp-card__visual--vitrina {
  background: #f8f9fc;
  padding: 1.5rem 1.5rem 0;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .mp-card__visual--vitrina {
    padding: 2rem 2.5rem 0;
    min-height: 280px;
  }
}

.mp-vitrina-mockup {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 10px 10px 0;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: none;
  line-height: 0;
  transition: transform 0.5s ease;
}

.mp-card--vitrina:hover .mp-vitrina-mockup {
  transform: translateY(-8px);
}

.mp-vitrina-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* --- Card 6: Лояльность --- */
.mp-card__visual--loyalty {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  min-height: 100px;
}

.mp-stars-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  gap: 4px;
  align-items: center;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.12);
}

@media (min-width: 1024px) {
  .mp-stars-card {
    padding: var(--design-padding);
  }
}

/* --- Card 7: Охват --- */
.mp-card__visual--geo {
  min-height: 120px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Stylized Map Background */
.mp-card__visual--geo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='200' viewBox='0 0 400 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35,60 L55,40 L90,45 L110,30 L150,50 L180,35 L220,60 L260,45 L310,65 L360,40 L380,70 L350,110 L310,130 L270,120 L220,150 L180,130 L140,160 L90,140 L50,155 L20,120 Z' fill='none' stroke='%237C3AED' stroke-width='1.5' stroke-dasharray='4 4' opacity='0.2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

@keyframes geoPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }

  70% {
    transform: scale(2.5);
    opacity: 0;
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.mp-geo-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #7c3aed;
  border-radius: 50%;
  z-index: 1;
}

.mp-geo-point::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.3);
  animation: geoPulse 2s infinite;
}

.mp-geo-point--1 {
  top: 30%;
  left: 20%;
}

.mp-geo-point--2 {
  top: 55%;
  left: 45%;
  animation-delay: 0.5s;
}

.mp-geo-point--3 {
  top: 40%;
  left: 75%;
  animation-delay: 1.2s;
}

.mp-geo-point--4 {
  top: 75%;
  left: 25%;
  animation-delay: 0.8s;
}

.mp-geo-point--5 {
  top: 20%;
  left: 60%;
  animation-delay: 1.5s;
}

.mp-geo-stack {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mp-geo-stack {
    height: 140px;
  }
}

.mp-geo-mockup {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  padding: 5px;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  width: 150px;
  line-height: 0;
  border: 1px solid rgba(124, 58, 237, 0.15);
}

@media (min-width: 1024px) {
  .mp-geo-mockup {
    width: 210px;
  }
}

.mp-geo-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.mp-geo-mockup--1 {
  transform: translateX(-35px) translateY(-10px) rotate(-12deg);
  z-index: 1;
  opacity: 0.7;
}

.mp-geo-mockup--2 {
  z-index: 3;
  transform: scale(1.1) translateY(5px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
}

.mp-geo-mockup--3 {
  transform: translateX(35px) translateY(15px) rotate(12deg);
  z-index: 2;
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .mp-geo-mockup--1 {
    transform: translateX(-55px) translateY(-15px) rotate(-12deg);
  }

  .mp-geo-mockup--2 {
    transform: scale(1.1) translateY(10px);
  }

  .mp-geo-mockup--3 {
    transform: translateX(55px) translateY(20px) rotate(12deg);
  }
}

.mp-card--geo:hover .mp-geo-mockup--1 {
  transform: translateX(-60px) translateY(-25px) rotate(-20deg) scale(1.05);
  opacity: 1;
}

.mp-card--geo:hover .mp-geo-mockup--2 {
  transform: translateY(-15px) scale(1.15);
}

.mp-card--geo:hover .mp-geo-mockup--3 {
  transform: translateX(60px) translateY(25px) rotate(20deg) scale(1.05);
  opacity: 1;
}

@media (min-width: 1024px) {
  .mp-card--geo:hover .mp-geo-mockup--1 {
    transform: translateX(-100px) translateY(-35px) rotate(-20deg) scale(1.05);
  }

  .mp-card--geo:hover .mp-geo-mockup--2 {
    transform: translateY(-20px) scale(1.15);
  }

  .mp-card--geo:hover .mp-geo-mockup--3 {
    transform: translateX(100px) translateY(35px) rotate(20deg) scale(1.05);
  }
}

/* --- Card 8: Маркетинг --- */
.mp-card__visual--marketing {
  background: #f8f9fc;
  min-height: 100px;
  padding: 1.5rem;
}

.mp-subscribe-form {
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px 6px 6px 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 260px;
}

@media (min-width: 1024px) {
  .mp-subscribe-form {
    padding: 8px 8px 8px 16px;
  }
}

.mp-subscribe-input {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.mp-subscribe-line {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
}

.mp-subscribe-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .mp-subscribe-btn {
    width: 36px;
    height: 36px;
  }
}

.mp-subscribe-input {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.mp-subscribe-line {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
}

.mp-subscribe-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
      BENTO SECTION (AUDIENCE)
    ========================================================================== */
.section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
}

/* ===================== DELIVERY BLOCK ===================== */
.delivery-container {
  width: 800px;
  max-width: 95vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.delivery-main-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--v2-radius-card);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.delivery-main-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(124, 58, 237, 0.05) 0%,
      transparent 70%);
  pointer-events: none;
}

.delivery-methogrid {
  flex: 1.2 1 350px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .delivery-methogrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.delivery-method-card {
  background: #f9fafb;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.delivery-method-card:hover {
  border-color: var(--color-primary);
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.08);
}

.delivery-method-card--active {
  border: 2px solid var(--color-primary);
  background: white;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.12);
}

.delivery-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  transition: var(--transition-base);
}

.delivery-method-card--active .delivery-method-icon {
  background: var(--color-primary);
  color: white;
}

.delivery-method-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  transition: var(--transition-base);
}

.delivery-method-card--active .delivery-method-label {
  color: var(--color-primary);
}

.delivery-info-panel {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--color-border);
  position: relative;
}

.delivery-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.delivery-info-icon-box {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(124, 58, 237, 0.2);
}

.delivery-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.delivery-info-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.delivery-info-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: auto;
}

.delivery-info-stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.delivery-info-stat-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.delivery-setting-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  padding: var(--design-padding);
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-custom);
}

.delivery-setting-card:hover {
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.delivery-setting-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .delivery-settings-grid {
    grid-template-columns: 1fr;
  }

  .delivery-container {
    width: 100%;
  }

  .delivery-main-card {
    padding: var(--design-padding);
  }
}

.setting-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--design-card-radius);
  padding: var(--design-padding);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-custom);
  display: flex;
  flex-direction: column;
}

.setting-card:hover {
  border-color: rgba(128, 73, 229, 0.2);
  transform: translateY(-2px);
}

.setting-icon--blue {
  background: #eff6ff;
  color: #3b82f6;
}

.setting-icon--orange {
  background: #fff7ed;
  color: #f97316;
}

.setting-icon--emerald {
  background: #ecfdf5;
  color: #10b981;
}

.setting-icon--pink {
  background: #fdf2f8;
  color: #ec4899;
}

/* SKU & Trading Offers */
.sku-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.sku-card {
  background: #f9fafb;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--design-padding);
}

.sku-label {
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 12px;
  display: block;
}

.sku-label span {
  color: var(--color-text);
}

.sku-list {
  display: flex;
  gap: 10px;
}

.sku-color {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #e5e7eb;
  cursor: pointer;
  transition: var(--transition-base);
}

.sku-color:hover {
  transform: scale(1.1);
}

.sku-color--active {
  box-shadow: 0 0 0 1px var(--color-accent);
}

.sku-size-list {
  display: flex;
  gap: 8px;
}

.sku-size {
  padding: 6px 14px;
  background: white;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-base);
}

.sku-size:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent);
}

.sku-size--active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}

/* Pricing Display */
.pricing-info-card {
  background: #f9fafb;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: var(--design-padding);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 12px;
}

.pricing-row--final {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pricing-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.pricing-label--bold {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 700;
}

.pricing-value-old {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
}

.pricing-value-new {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-discount {
  background: #ef4444;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}

.pricing-price {
  font-size: 18px;
  color: var(--color-text);
  font-weight: 800;
}

/* ==========================================================================
      MOBILE FIRST & ADAPTIVITY SECTION
    ========================================================================== */
.adapt-hero {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.phone-mockup {
  width: 260px;
  aspect-ratio: 9 / 19;
  background: #111827;
  border-radius: 40px;
  border: 5px solid #111827;
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.15),
    0 30px 60px -30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:nth-child(2) {
  transform: translateY(-20px) scale(1.05);
  z-index: 2;
}

.phone-mockup:hover {
  transform: translateY(-30px) scale(1.08);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .adapt-hero {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .phone-mockup {
    width: 200px;
  }

  .phone-mockup:nth-child(2) {
    transform: none;
  }
}

/* ===================== CATALOG SECTION ===================== */
.catalog-section {
  padding: 5rem 1rem;
}

.catalog-main-visual {
  margin-bottom: 1rem;
  position: relative;
}

.catalog-main-mockup {
  background: #fff;
  border-radius: var(--design-card-radius);
  box-shadow: var(--shadow-premium);
  transition: transform 0.5s ease;
  padding: 20px;
  /* Добавили отступ по просьбе пользователя */
}

.catalog-main-img {
  width: 100%;
  border-radius: 26px;
  display: block;
}

/* Sub Headers */
.catalog-sub-header {
  text-align: center;
  max-width: 900px;
  margin: 5rem auto 4rem;
}

.catalog-sub-header--last {
  margin-top: 5rem;
  margin-bottom: 3.5rem;
}

.catalog-sub-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.catalog-sub-desc {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  font-weight: 500;
}

/* ===================== REIMAGINED CATALOG MODES & PRICING ===================== */

.modes-compact-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .modes-compact-bento {
    grid-template-columns: 1fr 1fr;
  }

  .mode-compact-card--wide {
    grid-column: span 2;
  }

  .mode-info-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .mode-info-grid p {
    flex: 1.5;
    margin-bottom: 0 !important;
  }

  .mode-info-list {
    flex: 1;
    border-left: 1px solid #f1f5f9;
    padding-left: 2rem;
  }
}

.mode-compact-card {
  background: #fff;
  border-radius: var(--design-card-radius);
  padding: var(--design-padding);
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mode-compact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(124, 58, 237, 0.1);
}

.mode-compact-card__visual {
  background: #f8fafc;
  border-radius: 24px;
  padding: var(--design-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mode-compact-card--wide .mode-compact-card__visual {
  padding: 2rem;
}

.mode-compact-card__visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.mode-card-icon-box--orange {
  background: #fff5f0;
  color: #f97316;
}

.mode-card-icon-box--purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.mode-card-icon-box--blue {
  background: #eff6ff;
  color: #3b82f6;
}

.mode-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mode-info-list li {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-info-list li i {
  width: 18px;
  height: 18px;
  color: #f97316;
}

/* PRICING SECTION REIMAGINED */
.pricing-reimagined {
  background: #fff;
  border-radius: 32px;
  padding: var(--design-padding);
  margin-top: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
}

.pricing-card-header {
  /* Handled by .card-header */
}

.pricing-card-icon {
  /* Handled by .icon-box */
  background: #fff2eb;
  color: #f97316;
}

.pricing-card-icon i {
  /* Handled by .icon-box i */
}

.pricing-card-labels h4 {
  /* Handled by .card-title */
}

.pricing-card-labels p {
  /* Handled by .card-desc */
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .pricing-card-body {
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
  }
}

.pricing-body-left {
  flex: 1.4;
}

.pricing-table-display {
  background: #f8fafc;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid #edf2f7;
}

.price-display-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.price-label {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
}

.price-val {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  font-family: "Golos Text", sans-serif;
  text-align: right;
}

.price-val small {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  margin-left: 6px;
  display: inline-block;
}

.price-display-row--accent .price-label,
.price-display-row--accent .price-val {
  color: #f97316;
}

.price-display-more {
  margin-top: 1.25rem;
  color: #f97316;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.pricing-body-right {
  flex: 1;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.pricing-dots-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-dots-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
}

.pricing-dots-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}

.pricing-sync-info {
  margin-top: 2rem;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

@media (min-width: 768px) {
  .pricing-sync-info {
    margin-top: auto;
  }
}

/* Pricing Adjustments */

/* 2. Pricing Card */

/* 3. Filter Card Reimagined */
.ui-filter-container {
  background: #fff;
  border-radius: 32px;
  padding: var(--design-padding);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  max-width: 800px;
  margin: 0 auto;
}

.ui-filter-top-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ui-filter-main-icon {
  width: 48px;
  height: 48px;
  background: #fff5f0;
  color: #f97316;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-filter-main-icon i {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.ui-filter-main-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0px;
  font-family: "Golos Text", sans-serif;
}

.ui-filter-main-text p {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

.ui-filter-visual-board {
  border-radius: 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ui-filter-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ui-filter-row--three {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ui-filter-row {
    grid-template-columns: 1fr 1fr;
  }

  .ui-filter-row--three {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}

.ui-filter-card {
  background: #fff;
  border-radius: 24px;
  padding: var(--design-padding);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
}

.ui-filter-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 8px;
}

.ui-filter-card-head span {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.ui-filter-card-head i {
  width: 18px;
  height: 18px;
  color: #64748b;
}

.ui-filter-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Checkbox & Radio */
.ui-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.ui-custom-check,
.ui-custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  /* Circle checkboxes per reference */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.ui-custom-check--active {
  background: #f97316;
  border-color: #f97316;
}

.ui-custom-check i {
  width: 12px;
  height: 12px;
  color: white;
  stroke-width: 4;
}

.ui-custom-radio--active {
  border-color: #f97316;
  position: relative;
}

.ui-custom-radio--active::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
}

/* Color Palette */
.ui-color-palette {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.ui-color-item {
  width: 47px;
  height: 47px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-base);
}

.ui-color-item--active {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #94ad58;
}

/* Price Slider */
.ui-price-inputs {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ui-price-field {
  flex: 1;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.ui-price-dash {
  color: #94a3b8;
  font-weight: 500;
}

.ui-price-slider-wrap {
  padding: 0 5px;
}

.ui-slider-base {
  height: 6px;
  background: #fff2eb;
  border-radius: 10px;
  position: relative;
}

.ui-slider-fill {
  position: absolute;
  height: 100%;
  background: #f97316;
  border-radius: 10px;
}

.ui-slider-handle {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #f97316;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
  cursor: grab;
}

/* Dropdown */
.ui-dropdown-fake {
  background: #f1f5f9;
  border-radius: 40px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 0.5rem;
}

.ui-dropdown-fake i {
  width: 18px;
  height: 18px;
  color: #64748b;
}

/* Card Footer */
.ui-filter-card-foot {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ui-filter-type-label {
  font-size: 11px;
  color: #abb2bf;
  font-weight: 500;
}

.ui-filter-badge {
  width: 22px;
  height: 22px;
  background: #fff2eb;
  color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Bottom results bar */
.ui-filter-results-bar {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
}

.ui-filter-pills-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ui-pill {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.ui-filter-final-count {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.ui-filter-final-count i {
  width: 20px;
  height: 20px;
  color: #64748b;
}

.ui-filter-final-count strong {
  color: #1e293b;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
  .ui-filter-row--three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .ui-filter-row,
  .ui-filter-row--three {
    grid-template-columns: 1fr;
  }

  .ui-filter-results-bar {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .ui-filter-container {
    padding: var(--design-padding);
  }

  .ui-filter-visual-board {
    padding: var(--design-padding);
  }
}

/* ==========================================================================
            FILTER COLLECTIONS SECTION
            ========================================================================== */

/* ==========================================================================
            CLIENT PRICING SECTION (REFINED & STANDARDIZED)
            ========================================================================== */
.cp-section {
  padding: 80px 20px;
  background-color: #f3f5f8;
  width: 100%;
}

.cp-container {
  width: 800px;
  /* STRICT WIDTH AS REQUESTED */
  max-width: 100%;
  margin: 0 auto;
}

.cp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.cp-card {
  background: white;
  border-radius: 32px;
  padding: var(--design-padding);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.cp-card--how {
  grid-column: span 6;
}

.cp-card-right-stack {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cp-card--benefits {
  background: var(--color-primary-light, #f5f3ff);
  border-color: rgba(124, 58, 237, 0.05);
}

.cp-card--banner {
  grid-column: span 12;
  padding: var(--design-padding);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cp-card-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cp-card-title-row .icon-box {
  background: var(--color-primary-light, #f5f3ff);
  color: var(--color-primary, #7c3aed);
}

/* Client List */
.cp-client-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--color-light, #f8fafc);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.cp-client-item:hover {
  background: white;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cp-client-icon-box {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light, #f5f3ff);
  color: var(--color-primary, #7c3aed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.cp-client-info {
  flex: 1;
}

.cp-client-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text, #1e293b);
}

.cp-client-label {
  font-size: 12px;
  color: var(--color-text-muted, #94a3b8);
  font-weight: 500;
}

.cp-client-percentage {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  background: var(--color-primary-light, #f5f3ff);
  color: var(--color-primary, #7c3aed);
  border-radius: 8px;
}

/* Benefits list */
.cp-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cp-benefit-num {
  width: 28px;
  height: 28px;
  background: var(--color-primary, #7c3aed);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.cp-benefit-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text, #1e293b);
  line-height: 1.4;
}

/* Price row */
.cp-prices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted, #475569);
}

.cp-price-row--accent {
  color: var(--color-primary, #7c3aed);
}

.cp-price-val {
  font-size: 18px;
  font-weight: 700;
}

.cp-price-val small {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted, #94a3b8);
}

.cp-price-more {
  font-size: 14px;
  color: var(--color-text-muted, #94a3b8);
  font-weight: 500;
  margin-top: 4px;
}

/* Banner */
.cp-banner-icon-box {
  width: 50px;
  height: 50px;
  background: var(--color-primary-light, #f5f3ff);
  color: var(--color-primary, #7c3aed);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cp-container {
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {

  .cp-card--how,
  .cp-card-right-stack {
    grid-column: span 12;
  }

  .cp-section {
    padding: 40px 0;
  }
}

/* ==========================================================================
        CART SECTION
    ========================================================================== */
.cart-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cart-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.cart-card--retail,
.cart-card--wholesale {
  width: 100%;
  padding: 0;
  border: none;
  box-shadow: none;
}

.cart-card--retail:hover,
.cart-card--wholesale:hover {
  transform: none;
  box-shadow: none;
}

/* Custom UI helpers for Cart Cards */
.cart-card-icon-lg {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 16px;
}

.cart-card-title-custom {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.cart-card-desc-custom {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (min-width: 1024px) {
  .cart-section {
    padding: 6rem 0;
  }

  .cart-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .cart-card--retail,
  .cart-card--wholesale {
    grid-column: span 6;
  }
}


/* ==========================================================================
    MODULE: MULTI-REGION (mr-)
    ========================================================================== */
.mr-section {
  padding-bottom: 120px;
}

.mr-section .config-grid {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mr-header-span {
  color: var(--color-primary);
}

.mr-map {
  padding: 0;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  /* Slightly lighter bg */
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  box-shadow: var(--shadow-custom);
}

.mr-map__grid-layer {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  /* Мелкая техническая сетка с точками на пересечениях */
  background-image:
    radial-gradient(circle, var(--color-border) 1.5px, transparent 1.5px),
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size:
    30px 30px,
    30px 30px,
    30px 30px;
  background-position: center;
}

.mr-map__diagonal-layer {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background:
    linear-gradient(45deg,
      transparent 49.8%,
      var(--color-gray) 50%,
      transparent 50.2%),
    linear-gradient(-45deg,
      transparent 49.8%,
      var(--color-gray) 50%,
      transparent 50.2%);
}

.mr-map__badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 10;
  color: #1e293b;
}

.mr-map__badge-dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
}

.mr-map__pin-wrap {
  position: relative;
  z-index: 5;
  transform: translateY(-10px);
}

.mr-map__pin-icon {
  width: 84px;
  height: 84px;
  color: var(--color-accent);
  fill: var(--color-accent);
  filter: drop-shadow(0 15px 15px rgba(247, 145, 61, 0.4));
}

.mr-map__pin-center {
  position: absolute;
  top: 24px;
  left: 32px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
}

.mr-map__dot {
  position: absolute;
  background: var(--color-accent);
  border-radius: 50%;
}

.mr-stores {
  background: white;
  padding: var(--design-padding);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  box-shadow: var(--shadow-custom);
}

.mr-stores__header {
  margin-bottom: 24px;
}

.mr-stores__breadcrumbs {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 8px;
}

.mr-stores__title {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.05em;
  margin: 0;
}

.mr-stores__item {
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
}

.mr-stores__item--muted {
  opacity: 0.8;
}

.mr-stores__row {
  display: flex;
  gap: 16px;
}

.mr-stores__radio {
  width: 22px;
  height: 22px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.mr-stores__radio--active {
  border-color: var(--color-primary);
}

.mr-stores__radio-inner {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 3px;
}

.mr-stores__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e293b;
}

.mr-stores__name-prefix {
  color: var(--color-primary);
}

.mr-stores__address {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  font-weight: 500;
}

.mr-stores__hours {
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 6px;
  display: inline-block;
}

.mr-stores__hours--muted {
  color: #9ca3af;
  font-weight: 600;
}

.mr-screenshot {
  padding: 0;
  background: white;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  box-shadow: var(--shadow-custom);
}

.mr-screenshot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
  padding: 10px;
}

.mr-city-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mr-city {
  background: white;
  flex: 1;
  padding: var(--design-padding);
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  box-shadow: var(--shadow-custom);
}

.mr-city__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.mr-city__icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.mr-city__header-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mr-city__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}

.mr-city__subtitle {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.mr-city__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px 32px;
}

.mr-city__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-base);
  border: 1px solid transparent;
}

.mr-city__item--active {
  background: var(--color-primary);
  color: white !important;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.mr-city__dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.mr-city__radio {
  width: 15px;
  height: 15px;
  border: 2.5px solid var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.mr-checklist {
  background: #f5f3ff;
  border: 1px solid rgba(124, 58, 237, 0.1);
  padding: var(--design-padding);
  border-radius: var(--design-card-radius);
}

.mr-checklist__badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.mr-checklist__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mr-checklist__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mr-checklist__icon {
  width: 16px;
  color: var(--color-primary);
}

.mr-checklist__text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
}

.mr-feature {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--design-padding);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  box-shadow: var(--shadow-custom);
  width: 100%;
}

.mr-feature__icon-box {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.mr-feature__title {
  font-size: 1rem;
  font-weight: var(--design-title-weight);
  color: var(--color-text);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.mr-feature__desc {
  font-size: var(--design-desc-size);
  color: var(--design-desc-color);
  font-weight: var(--design-desc-weight);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 767px) {
  .phone-mockup:not(:nth-child(3)) {
    display: none;
  }

  .phone-mockup:nth-child(3) {
    transform: none;
    margin: 0 auto;
    width: 260px;
  }
}

.adaptive-grid {
  align-items: stretch;
}

.adaptive-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: none;
  padding: 2rem;
  border-radius: 28px;
  background: #ffffff;
}

.adaptive-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.adaptive-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.adaptive-card__icon-wrap i,
.adaptive-card__icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.adaptive-card__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.adaptive-card__stat {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
}

.adaptive-card__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  display: block;
}

.adaptive-card__text {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.adaptive-device-grid {
  display: grid;
  gap: 1rem;
}

.adaptive-device-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.adaptive-device-card--highlight {
  background: var(--color-primary-light);
  border-color: rgba(124, 58, 237, 0.15);
}

.adaptive-device-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adaptive-device-icon--phone,
.adaptive-device-icon--tablet,
.adaptive-device-icon--desktop {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.adaptive-device-icon i {
  width: 20px;
  height: 20px;
}

.adaptive-device-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.adaptive-device-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

/* ==========================================================================
    HERMITAGE SECTION
    ========================================================================== */
.hermitage-section {
  padding: 6rem 1rem;
  background-color: var(--color-bg);
}

.hermitage-card {
  background: var(--color-white);
  border-radius: 40px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  max-width: 1000px;
  margin: 0 auto;
}

.hermitage-card__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hermitage-card__icon-box.icon-box {
  background: var(--color-primary-light);
  color: var(--color-primary);
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.hermitage-card__icon-box.icon-box i {
  width: 28px;
  height: 28px;
}

.hermitage-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.hermitage-card__subtitle {
  margin: 0;
  font-size: 15px;
}

.hermitage-visual {
  background: #f1f5f9;
  border-radius: 32px;
  padding: 1.5rem;
  margin-bottom: 3.5rem;
}

.hermitage-visual__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hermitage-tool {
  background: var(--color-white);
  border-radius: 20px;
  padding: var(--design-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  cursor: pointer;
}

.hermitage-tool:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.hermitage-tool__icon {
  color: var(--color-primary);
}

.hermitage-tool__icon i {
  width: 32px;
  height: 32px;
}

.hermitage-tool__name {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
}

.hermitage-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 4rem;
}

.hermitage-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hermitage-feature__check {
  width: 20px;
  height: 20px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hermitage-feature__check i {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.hermitage-feature__text {
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
}

@media (max-width: 991px) {
  .hermitage-features {
    gap: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .hermitage-card {
    padding: var(--design-padding);
  }

  .hermitage-visual {
    padding: 1.5rem;
  }

  .hermitage-visual__grid {
    grid-template-columns: 1fr;
  }

  .hermitage-features {
    grid-template-columns: 1fr;
  }

  .hermitage-tool {
    padding: var(--design-padding);
  }
}

/* ==========================================================================
    LAUNCH SECTION
    ========================================================================== */
.launch-section {
  padding: 6rem 1rem;
  background-color: var(--color-bg);
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.launch-card {
  border-radius: 40px;
  padding: var(--design-padding);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid var(--color-primary-light);
}

.launch-card--docs {
  background: #fdf4f0;
  /* Subtle warm tint per ref */
}

.launch-card--settings {
  background: #fdfbf7;
  /* Subtle cream tint per ref */
}

.launch-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.launch-card__icon-box.icon-box {
  background: var(--color-primary-light);
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.launch-card__title {
  font-size: 22px;
  font-weight: 800;
}

.launch-card__desc {
  margin-bottom: 2.5rem;
}

/* Documentation Preview */
.launch-docs-preview {
  background: white;
  border-radius: 24px;
  padding: var(--design-padding);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid var(--color-primary-light);
}

.launch-docs-skeleton {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.launch-skeleton-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.launch-skeleton-dot {
  width: 14px;
  height: 14px;
  background: var(--color-primary-light);
  border-radius: 4px;
}

.launch-skeleton-line {
  height: 10px;
  background: #f1f5f9;
  border-radius: 5px;
  flex: 1;
}

.launch-btn-primary {
  background: var(--color-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  transition: var(--transition-base);
}

.launch-btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

/* Settings Preview */
.launch-settings-preview {
  background: white;
  border-radius: 24px;
  padding: var(--design-padding);
  margin-top: auto;
}

.launch-palette-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 1.5rem;
}

.launch-palette-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.launch-palette-color {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}

.launch-palette-color:hover {
  transform: scale(1.15);
}

.launch-settings-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.launch-settings-label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.launch-toggle-fake {
  width: 48px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

/* Bottom Grid */
.launch-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.launch-mini-card {
  background: white;
  border-radius: 32px;
  padding: var(--design-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  transition: var(--transition-base);
}

.launch-mini-card__icon-box {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-mini-card__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.3;
}

.launch-mini-card__text strong {
  display: block;
  font-weight: 700;
}

.launch-mini-card__text span {
  color: var(--color-primary);
  font-weight: 600;
}

.launch-mini-card--accent {
  background: var(--color-primary);
  color: white;
}

.launch-mini-card--accent .launch-mini-card__icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.launch-mini-card--accent .launch-mini-card__text {
  color: white;
}

.launch-mini-card--accent .launch-mini-card__text span {
  color: white;
  opacity: 0.8;
}

.launch-footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 991px) {
  .launch-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .launch-card {
    padding: var(--design-padding);
  }

  .launch-bottom-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
    INTEGRATION SECTION
    ========================================================================== */
.integration-section {
  padding: 6rem 1rem;
  background-color: var(--color-bg);
}

/* Exchange Card */
.int-exchange-card {
  background: white;
  border-radius: 40px;
  padding: var(--design-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-premium);
  margin-bottom: 2rem;
}

.int-exchange-side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.int-icon-box.icon-box {
  background: #fff0e6;
  /* Specific 1C color tint */
  color: var(--color-accent);
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.int-icon-box.icon-box i {
  width: 32px;
  height: 32px;
}

.int-side-info {
  display: flex;
  flex-direction: column;
}

.int-side-info strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
}

.int-side-info span {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.int-exchange-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.int-sync-arrow {
  color: var(--color-accent);
}

.int-sync-arrow i {
  width: 24px;
  height: 24px;
}

.int-sync-label {
  display: flex;
  flex-direction: column;
}

.int-sync-label strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.int-sync-label span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.int-exchange-side--right {
  text-align: right;
}

.int-logo-square {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 28px;
  font-weight: 800;
}

/* Feature Grid */
.int-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.int-card {
  background: white;
  border-radius: 32px;
  padding: var(--design-padding);
  display: flex;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.int-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.int-card-icon.icon-box {
  background: #f1f5f9;
  color: var(--color-primary);
  width: 48px;
  height: 48px;
}

.int-card-body {
  flex: 1;
}

/* Prices Card */

@media (max-width: 991px) {
  .int-exchange-card {
    padding: var(--design-padding);
  }

  .int-exchange-center {
    display: none;
  }
}

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

  .int-exchange-card {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
  }

  .int-exchange-side--right {
    text-align: left;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}

/* ==========================================================================
   PARTNER PROGRAM SECTION
   ========================================================================== */
.partner-program {
  padding: 8rem 1rem;
  background-color: var(--color-bg);
}

.partner-program__container {
  max-width: 800px;
  margin: 0 auto;
}

.partner-program__benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-mini-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-custom);
  transition: var(--transition-base);
}

.benefit-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-mini-card__icon-box {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-mini-card__icon-box i {
  width: 24px;
  height: 24px;
}

.benefit-mini-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.benefit-mini-card__desc {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Main Grid */
.partner-program__main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.partner-program__feature-card {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  box-shadow: var(--shadow-custom);
}

.feature-card--white {
  background: var(--color-white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2rem;
}

.badge--purple {
  background: var(--color-primary);
  color: white;
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.feature-card__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.feature-card--coverage {
  background: white;
  position: relative;
  overflow: hidden;
}

.coverage-visual {
  margin-top: 3rem;
}

.coverage-bar {
  height: 44px;
  background: #f1f5f9;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.coverage-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, var(--color-primary) 100%);
  opacity: 0.15;
  animation: coverageGrow 2s ease-out forwards;
}

@keyframes coverageGrow {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.coverage-label {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.coverage-points {
  display: flex;
  gap: 2rem;
}

.point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.point span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.point:first-child span {
  background: #3b82f6;
}

.point:last-child span {
  background: var(--color-primary);
}

.feature-card__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 280px;
}

.feature-card--mockup {
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-content {
  width: 100%;
  height: 100%;
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Check List */
.partner-program__check-list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
}

.check-item i {
  width: 24px;
  height: 24px;
}

/* CTA */
.partner-program__cta {
  display: flex;
  justify-content: center;
}

.btn-cta {
  background: var(--color-primary);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-base);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.25);
}

.btn-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.35);
}

.btn-cta__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
      MARKETING SECTION (BENTO GRID)
    ========================================================================== */
.marketing-section {
  background: var(--color-bg);
  background-image: radial-gradient(rgba(124, 58, 237, 0.05) 1.5px,
      transparent 1.5px);
  background-size: 30px 30px;
  overflow: hidden;
  padding-top: 2rem;
  position: relative;
}

.marketing-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(255, 122, 0, 0.05) 0%,
      transparent 70%);
  pointer-events: none;
}

.marketing-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .marketing-bento {
    grid-template-columns: repeat(12, 1fr);
  }
}

.marketing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  padding: var(--design-padding);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-custom);
  transition: var(--transition-base);
  animation: cardFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.mc-1 {
  animation-delay: 0.1s;
}

.mc-2 {
  animation-delay: 0.15s;
}

.mc-3 {
  animation-delay: 0.2s;
}

.mc-5 {
  animation-delay: 0.3s;
}

.mc-6 {
  animation-delay: 0.35s;
}

.mc-7 {
  animation-delay: 0.4s;
}

.mc-8 {
  animation-delay: 0.45s;
}

.mc-9 {
  animation-delay: 0.5s;
}

.marketing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(124, 58, 237, 0.3);
}

.marketing-card--purple {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.marketing-card--purple .card-title,
.marketing-card--purple .card-desc {
  color: var(--color-white);
}

.marketing-card--purple .card-desc {
  opacity: 0.8;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.marketing-card--blue {
  background: #f0f9ff;
  border-color: #bae6fd;
}

.marketing-card--blue .marketing-card-visual {
  background: rgba(255, 255, 255, 0.5);
}

.marketing-card--light {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-color: var(--color-border);
}

.marketing-card--light .marketing-card-visual {
  background: white;
  border: 1px solid #f1f5f9;
}

.mc-1,
.mc-2,
.mc-3,
.mc-5,
.mc-6,
.mc-7,
.mc-8,
.mc-9,
.mc-10 {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .mc-1 {
    grid-column: span 8;
  }

  .mc-2 {
    grid-column: span 4;
  }

  .mc-3 {
    grid-column: span 6;
  }

  .mc-5 {
    grid-column: span 12;
  }

  .mc-6 {
    grid-column: span 6;
  }

  .mc-7 {
    grid-column: span 6;
  }

  .mc-8 {
    grid-column: span 6;
  }

  .mc-9 {
    grid-column: span 6;
  }

  .mc-10 {
    grid-column: span 6;
  }
}

@media (min-width: 1024px) {
  .marketing-bento {
    grid-template-rows: auto auto auto auto auto;
  }

  /* Row 1: 7 + 5 */
  .mc-1 {
    grid-column: span 7;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }

  .mc-1 .marketing-card-visual {
    width: 53%;
    margin-bottom: 0;
    order: 2;
    flex-grow: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mc-1 .marketing-card-body {
    width: 55%;
    justify-content: center;
    padding-right: 1rem;
  }

  .mc-2 {
    grid-column: span 5;
  }

  /* Row 2: 5 + 7 */
  .mc-3 {
    grid-column: span 5;
  }

  /* Row 3: 6 + 6 */
  .mc-5 {
    grid-column: span 6;
  }

  .mc-6 {
    grid-column: span 6;
  }

  .mc-10 {
    grid-column: span 7;
  }

  /* Row 4: 7 + 5 */
  .mc-7 {
    grid-column: span 7;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }

  .mc-7 .marketing-card-visual {
    width: 45%;
    margin-bottom: 0;
    order: 2;
    flex-grow: 0;
  }

  .mc-7 .marketing-card-body {
    width: 55%;
    justify-content: center;
    padding-right: 1rem;
  }

  .mc-8 {
    grid-column: span 5;
  }

  /* Row 5: Full width */
  .mc-9 {
    grid-column: span 12;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }

  .mc-9 .marketing-card-visual {
    width: 55%;
    margin-bottom: 0;
    order: 2;
    flex-grow: 0;
  }

  .mc-9 .marketing-card-body {
    width: 45%;
    justify-content: center;
    padding-right: 1rem;
    padding-left: 2rem;
  }
}

.marketing-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.marketing-card-visual {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  background: #f8fafc;
}

.marketing-card--purple .marketing-card-visual {
  background: rgba(255, 255, 255, 0.1);
}

/* 1. 1 Click Upgrade - Refined Alignment */
.mc-v-1click {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: white !important;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  width: fit-content;
  min-width: 240px;
  align-items: stretch;
  position: relative;
  margin: 0 auto;
  transform: scale(0.95);
  transform-origin: center center;
}

.oc-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oc-btn-cart {
  background: #7c3aed;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  flex: 1;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.oc-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  flex-shrink: 0;
}

.oc-quantity-box {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  font-size: 13px;
  color: #1e293b;
}

.oc-quantity-val {
  font-weight: 700;
}

.oc-quantity-unit {
  color: #64748b;
  font-size: 11px;
}

.oc-bottom-row {
  width: 100%;
}

.oc-btn-outline {
  width: 100%;
  background: white;
  color: #334155;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  cursor: default;
}

.oc-minus,
.oc-plus {
  font-size: 16px;
  color: #cbd5e1;
  font-weight: 400;
}

/* 2. Timer */
.mc-v-timer {
  display: flex;
  gap: 8px;
}

.mc-v-timer-box {
  background: white;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  min-width: 50px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: pulseSoft 2s ease-in-out infinite;
}

@keyframes pulseSoft {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.mc-v-timer-box span {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
}

/* 3. Bundle */
.mc-v-bundle {
  display: flex;
  align-items: center;
  background: white;
  padding: 12px;
  border-radius: 20px;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mc-v-bundle-item {
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

/* 4. Frequently Bought Together - PREMIUM UPGRADE */
.mc-v-fbt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 8px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transform: scale(0.92);
  transform-origin: center center;
}

.fbt-promo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.fbt-product-card {
  background: white;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 0.3s ease;
}

.fbt-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.fbt-product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.fbt-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #10b981;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}

.fbt-product-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.fbt-product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
}

.fbt-product-price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.fbt-product-price .current {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
}

.fbt-product-price .old {
  font-size: 11px;
  color: #94a3b8;
  text-decoration: line-through;
}

/* 5. Gift Cart Mockup */
.mc-v-gift-cart {
  background: white;
  border-radius: 16px;
  padding: 16px;
  width: 90%;
  max-width: 280px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.gc-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gc-icon {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.gc-icon-gift {
  background: #fef3c7;
  color: #d97706;
}

.gc-text {
  display: flex;
  flex-direction: column;
}

.gc-title {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
}

.gc-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
}

.gc-divider {
  height: 1px;
  background: #e2e8f0;
  width: 100%;
}

.gc-gift-row .gc-text {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.gc-gift-row .gc-title {
  width: 100%;
}

/* 6. Promo */
.mc-v-promo {
  background: var(--color-primary);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: monospace;
  font-weight: bold;
  font-size: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  transform: rotate(-3deg);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
  background: linear-gradient(90deg,
      var(--color-primary) 0%,
      #a78bfa 50%,
      var(--color-primary) 100%);
  background-size: 200% 100%;
  animation: glimmer 3s linear infinite;
}

@keyframes glimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* 7. Subscribe Phone Mockup */
.mc-v-sub-phone {
  width: 140px;
  height: 220px;
  background: #1e293b;
  border-radius: 24px;
  padding: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #334155;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-status {
  height: 20px;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
  color: #64748b;
}

.status-icons {
  display: flex;
  gap: 4px;
}

.phone-notif {
  background: rgba(255, 255, 255, 0.95);
  margin: 6px;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
  animation: notifSlide 3s ease-in-out infinite alternate;
}

@keyframes notifSlide {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(5px);
  }
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 7px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 4px;
}

.notif-app-icon {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  color: white;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-title {
  font-size: 9px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 2px;
}

.notif-text {
  font-size: 8px;
  color: #64748b;
  line-height: 1.2;
}

.phone-content {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.5;
}

.phone-product-img {
  height: 50px;
  background: #e2e8f0;
  border-radius: 8px;
}

.phone-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-line {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
}

/* 8. News & Email Mockup */
.mc-v-news-mockup {
  background: white;
  border-radius: 12px;
  width: 85%;
  max-width: 220px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.mc-v-news-mockup:hover {
  transform: rotate(0deg) scale(1.05);
}

.mc-v-news-header {
  background: #f8fafc;
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.mc-v-news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mc-v-news-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.mc-v-news-badge {
  background: var(--color-accent);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mc-v-news-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.mc-v-news-text {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.mc-v-news-btn {
  background: #1e293b;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  width: 100%;
  cursor: default;
}

/* 9. SEO */
.mc-v-seo-search {
  background: white;
  padding: 16px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid #e2e8f0;
  position: relative;
  margin: 16px;
}

.mc-v-seo-search::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.seo-search-url {
  font-size: 12px;
  color: #475569;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.seo-search-url span {
  color: #94a3b8;
}

.seo-search-title {
  font-size: 16px;
  color: #1a0dab;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.seo-search-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
}

.seo-search-tags {
  margin-top: 10px;
  display: flex;
  gap: 6px;
}

.seo-search-tags span {
  background: #f1f5f9;
  color: var(--color-primary);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {

  .partner-program__benefits-grid,
  .partner-program__main-grid {
    grid-template-columns: 1fr;
  }

  .partner-program__check-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .feature-card--white {
    padding: 2rem;
    min-height: auto;
  }

  .partner-program {
    padding: 4rem 1rem;
  }
}

/* ==========================================================================
       CART BENTO STYLES (NEW)
    ========================================================================== */
.cart-bento-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition-base);
  width: 100%;
}

.cart-bento-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
}

.cart-bento-info {
  z-index: 10;
}

.cart-bento-visual {
  background: #f8fafc;
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.cart-bento-card:hover .ui-form-mockup {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.cart-bento-icon-box {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* UI: Pay Stack */
.ui-pay-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 250px;
}

.ui-pay-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  transition: transform 0.2s;
}

.ui-pay-card:hover {
  transform: translateX(5px);
}

.ui-pay-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-pay-card--sbp .ui-pay-icon {
  background: #fee2e2;
  color: #ef4444;
}

.ui-pay-card--card .ui-pay-icon {
  background: #e0e7ff;
  color: #6366f1;
}

.ui-pay-card--invoice .ui-pay-icon {
  background: #fef3c7;
  color: #f59e0b;
}

.ui-pay-card--split .ui-pay-icon {
  background: #ecfdf5;
  color: #10b981;
}

/* UI: Form Mockup */
.ui-form-mockup {
  background: #fff;
  padding: 1.25rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-base);
}

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

.ui-form-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ui-form-input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ui-form-input--filled {
  background: #f5f3ff;
  border-color: #ddd6fe;
  color: var(--color-primary);
  font-weight: 500;
}

.ui-form-btn-mockup {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

/* UI: Side Cart Mockup */
.ui-side-cart-mockup {
  width: 240px;
  height: 160px;
  background: #e2e8f0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 3px solid #fff;
  transition: var(--transition-base);
}

.ui-scm-page {
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  padding: 8px;
}

.ui-scm-page-header {
  height: 10px;
  background: #cbd5e1;
  border-radius: 4px;
  width: 40%;
  margin-bottom: 10px;
}

.ui-scm-page-grid {
  display: flex;
  gap: 8px;
}

.ui-scm-page-card {
  width: 50px;
  height: 60px;
  background: #fff;
  border-radius: 6px;
}

.ui-scm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.ui-scm-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90px;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.ui-scm-header {
  padding: 8px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
}

.ui-scm-header i {
  width: 8px;
  height: 8px;
  color: #94a3b8;
}

.ui-scm-body {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ui-scm-item {
  height: 20px;
  background: #f8fafc;
  border-radius: 4px;
  border: 1px solid #f1f5f9;
}

.ui-scm-footer {
  padding: 8px;
  border-top: 1px solid #f1f5f9;
}

.ui-scm-btn {
  background: var(--color-primary);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
}

/* UI: Promo Widget */
.ui-promo-widget {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-base);
}

.cart-bento-card:hover .ui-promo-widget {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.ui-promo-input-group {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 5px;
}

.ui-promo-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: #f5f3ff;
  border-radius: 6px;
}

.ui-promo-icon i {
  width: 12px;
  height: 12px;
}

.ui-promo-text {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  padding: 0 8px;
  letter-spacing: 0.05em;
}

.ui-promo-apply {
  background: #1e293b;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
}

.ui-promo-success {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #10b981;
  background: #ecfdf5;
  padding: 5px 8px;
  border-radius: 8px;
  width: fit-content;
}

.ui-promo-success i {
  width: 12px;
  height: 12px;
}

.ui-promo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #e2e8f0;
  padding-top: 10px;
  margin-top: 2px;
}

.ui-promo-total span:first-child {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.ui-promo-price {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
}

@media (min-width: 1024px) {
  .cart-bento-card {
    padding: var(--design-padding);
    gap: 2rem;
  }

  .cart-bento--manage {
    grid-column: span 7;
  }

  .cart-bento--pay {
    grid-column: span 5;
  }

  .cart-bento--autofill {
    grid-column: span 7;
  }

  .cart-bento--promo {
    grid-column: span 5;
  }

  .cart-bento-visual {
    padding: 1.5rem;
    min-height: 200px;
  }

  .ui-form-mockup {
    padding: 1.5rem;
  }

  .ui-side-cart-mockup {
    width: 280px;
    height: 180px;
    border-width: 4px;
  }

  .ui-scm-page {
    padding: 10px;
  }

  .ui-scm-page-header {
    height: 12px;
    margin-bottom: 12px;
  }

  .ui-scm-page-grid {
    gap: 10px;
  }

  .ui-scm-page-card {
    width: 60px;
    height: 80px;
  }

  .ui-scm-panel {
    width: 110px;
  }

  .ui-scm-header {
    padding: 10px;
    font-size: 9px;
  }

  .ui-scm-header i {
    width: 10px;
    height: 10px;
  }

  .ui-scm-body {
    padding: 10px;
    gap: 8px;
  }

  .ui-scm-item {
    height: 24px;
  }

  .ui-scm-footer {
    padding: 10px;
  }

  .ui-scm-btn {
    font-size: 8px;
    padding: 6px;
  }

  .ui-promo-widget {
    padding: 1.25rem;
    gap: 12px;
  }

  .ui-promo-input-group {
    padding: 6px;
  }

  .ui-promo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .ui-promo-icon i {
    width: 14px;
    height: 14px;
  }

  .ui-promo-text {
    font-size: 13px;
    padding: 0 10px;
  }

  .ui-promo-apply {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 8px;
  }

  .ui-promo-success {
    font-size: 11px;
    padding: 6px 10px;
  }

  .ui-promo-success i {
    width: 14px;
    height: 14px;
  }

  .ui-promo-total {
    padding-top: 12px;
    margin-top: 4px;
  }

  .ui-promo-total span:first-child {
    font-size: 13px;
  }

  .ui-promo-price {
    font-size: 18px;
  }
}


/* ==========================================================================
  CUSTOMIZER SECTION (Settings Block)
========================================================================== */
.customizer-section {
  padding: 3.5rem 1rem;
}

.customizer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.customizer-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.customizer-header p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.custom-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.custom-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.custom-panel {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.custom-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.custom-panel-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

.custom-panel-title i {
  color: #8049e5;
}

/* Layout flex (Desktop defaults) */
.panel-fonts {
  flex: 1.3;
}

.panel-banner {
  flex: 0.7;
}

.panel-colors {
  flex: 0.8;
}

.panel-width {
  flex: 1.2;
}

.panel-list {
  flex: 1;
}

.panel-blocks {
  flex: 1;
}

.panel-header {
  flex: 1;
}

.custom-grid-footer {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .custom-grid-footer {
    margin-top: 3.5rem;
  }
}

.panel-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-icon-i {
  width: 14px;
  height: 14px;
}

.panel-subtitle {
  font-size: 0.75rem;
  color: #d1d5db;
  font-weight: 500;
}

/* Fonts */
.font-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.font-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.font-name {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.font-sizes {
  display: flex;
  gap: 0.25rem;
}

.size-btn {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  color: #9ca3af;
  background: white;
}

.size-btn.active {
  background: #8049e5;
  color: white;
  border-color: #8049e5;
}

/* Colors */
.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.color-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.color-circle:hover {
  transform: scale(1.1);
}

.color-input-wrap {
  display: flex;
  gap: 0.5rem;
}

.color-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.color-input-btn {
  background: #8049e5;
  color: white;
  border-radius: 8px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Width */
.width-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.width-btn {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  background: white;
}

.width-btn.active {
  background: #8049e5;
  color: white;
  border-color: #8049e5;
}

.width-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f9fafb;
  padding: 0.85rem;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Toggles */
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
}

.toggle-row:last-child {
  margin-bottom: 0;
}

.toggle-label {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.view-toggles {
  display: flex;
  gap: 0.25rem;
}

.view-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.view-btn.active {
  border-color: #ff7a00;
  color: #ff7a00;
  background: #fff7ed;
}

.switch {
  width: 40px;
  height: 24px;
  background: #ff7a00;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.switch::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  right: 3px;
}

/* Header Dropdowns */
.header-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ff7a00;
  border-radius: 8px;
  background: #fff7ed;
  color: #ff7a00;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.header-select.disabled {
  border-color: #f3f4f6;
  background: #f9fafb;
  color: #d1d5db;
}

/* Bottom Promo */
.promo-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  margin-top: 1rem;
}

.promo-icon {
  width: 56px;
  height: 56px;
  background: #f5f3ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8049e5;
  flex-shrink: 0;
}

.promo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.promo-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.main-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #8049e5;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2.5rem auto 0;
  box-shadow: 0 10px 25px -5px rgba(128, 73, 229, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  max-width: 400px;
}

.main-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(128, 73, 229, 0.5);
}

/* Desktop Responsive Adjustments */
@media (min-width: 1024px) {
  .customizer-section {
    padding: 6rem 0;
  }

  .customizer-header {
    margin-bottom: 4rem;
  }

  .customizer-header h2 {
    font-size: 3rem;
  }

  .customizer-header p {
    font-size: 1.125rem;
  }

  .custom-grid {
    gap: 1.5rem;
    padding: 0;
  }

  .custom-row {
    flex-direction: row;
    gap: 1.5rem;
  }

  .custom-panel {
    padding: 2rem;
  }

  .custom-panel-title {
    font-size: 1.125rem;
  }

  .promo-panel {
    flex-direction: row;
    text-align: left;
    padding: 3rem;
    margin-top: 1.5rem;
    gap: 2.5rem;
  }

  .promo-icon {
    width: 72px;
    height: 72px;
  }

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

  .main-action-btn {
    width: auto;
    padding: 1.25rem 3rem;
    font-size: 1rem;
    margin-top: 3.5rem;
  }
}


/* ==========================================================================
       INTEGRATION 1C — MODULE BADGE & SETUP NOTE
    ========================================================================== */

/* --- Бейдж «Встроенный модуль 1С-Битрикс» --- */
.int-module-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  background: var(--color-primary-light);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--v2-radius-pill);
  font-size: var(--design-desc-size);
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-main);
  line-height: 1;
  transition: var(--transition-base);
}

@keyframes int-badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(124, 58, 237, 0);
  }
}

.int-module-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: int-badge-pulse 2s ease-in-out infinite;
}

.int-module-badge strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* --- Блок «Услуга настройки» --- */
.int-setup-note {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--design-card-radius);
  box-shadow: var(--shadow-custom);
  flex-wrap: wrap;
  transition: var(--transition-base);
}

.int-setup-note:hover {
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow-hover);
}

.int-setup-note__icon {
  /* Использует общий .icon-box */
  width: var(--design-icon-box-size);
  height: var(--design-icon-box-size);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.int-setup-note__icon i {
  width: var(--design-icon-size);
  height: var(--design-icon-size);
}

.int-setup-note__text {
  flex: 1;
  font-size: var(--design-desc-size);
  color: var(--design-desc-color);
  font-weight: var(--design-desc-weight);
  line-height: var(--design-desc-line-height);
  min-width: 200px;
}

.int-setup-note__text strong {
  font-weight: 700;
  color: var(--color-text);
}

.int-setup-note__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--v2-radius-pill);
  font-size: var(--design-desc-size);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  font-family: var(--font-main);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
  transition: var(--transition-base);
}

.int-setup-note__btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

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

  .int-setup-note__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
       TAKE CONTROL SECTION
    ========================================================================== */
.control-section {
  padding: 6rem 1rem;
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.control-card {
  background: var(--color-white);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.control-card--testimonial {
  position: relative;
  overflow: hidden;
}

@keyframes float-blob {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-20px, 20px) rotate(5deg);
  }
}

.control-author,
.control-quote-wrap {
  position: relative;
  z-index: 1;
}

.control-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.control-avatar {
  width: 85px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.control-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.control-author-info strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.control-author-info span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.control-quote-wrap {
  position: relative;
}

.control-quote-icon {
  color: var(--color-primary);
  opacity: 0.15;
  margin-bottom: 0.5rem;
}

.control-quote-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  font-style: italic;
  font-weight: 500;
}

.control-card--why {
  background: #faf5ff;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.control-why-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.control-stats-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.control-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  display: block;
  letter-spacing: -0.03em;
  line-height: 1;
}

.control-stat-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
  max-width: 240px;
}

.control-stat-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.5rem 2.25rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.03);
  border: 1px solid rgba(124, 58, 237, 0.05);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.control-stat-card:hover {
  transform: translateX(10px);
  border-color: rgba(124, 58, 237, 0.2);
}

.control-stat-content {
  flex: 1;
}

.control-stat-visual {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* SVG: Circular Chart */
.stat-svg-circular {
  width: 100%;
  height: 100%;
}

.stat-svg-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 3;
}

.stat-svg-circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 3;
  stroke-linecap: round;
  animation: progress-circular 2s ease-out forwards;
}

@keyframes progress-circular {
  from {
    stroke-dashoffset: 100;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* SVG: Bars */
.stat-svg-bars {
  width: 100%;
  height: 100%;
}

.stat-bar {
  transform-origin: bottom;
  animation: grow-bar 1.5s ease-out forwards;
}

.bar-1 {
  animation-delay: 0.1s;
}

.bar-2 {
  animation-delay: 0.3s;
}

.bar-3 {
  animation-delay: 0.5s;
}

@keyframes grow-bar {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.stat-line {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw-line 2s ease-out forwards 1s;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

/* SVG: Pulse */
.stat-svg-pulse {
  width: 48px;
  height: 48px;
}

.stat-pulse-ring {
  transform-origin: center;
  animation: ripple 2s infinite ease-out;
}

.ring-2 {
  animation-delay: 1s;
}

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

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.control-banner {
  max-width: 1200px;
  margin: 2.5rem auto 3.5rem;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  border-radius: 28px;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: white;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25);
  position: relative;
  overflow: hidden;
}

.control-banner-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: pattern-shift 20s linear infinite;
}

@keyframes pattern-shift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-20px, -20px);
  }
}

.control-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  pointer-events: none;
}

@keyframes pulse-purple {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

.control-banner__icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  animation: pulse-purple 2s infinite;
}

.control-banner__text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.control-footer-note {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #475569;
  font-weight: 500;
}

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

  .control-card {
    padding: 2.5rem;
  }

  .control-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
    gap: 1.5rem;
  }

  .control-footer-note {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
      CART AND CHECKOUT NEW CLASSES
    ========================================================================== */
.cart-card-icon-lg {
  background: #fff0e6;
  color: #ff7a00;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-22 {
  width: 22px;
  height: 22px;
}

.cart-card-title-custom {
  margin-bottom: 2px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.cart-card-desc-custom {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.cart-bento-icon-box {
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
}

.ui-scm-item-faded {
  opacity: 0.6;
}

/* --- DELIVERY SECTION --- */
.delivery-container--padded {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}

.delivery-section-header {
  margin-bottom: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.delivery-main-card {
  background: white;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid #f1f5f9;
}

.delivery-methogrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .delivery-methogrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.delivery-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1rem 0.5rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-method-card--active {
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
}

.delivery-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-method-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

.delivery-method-icon--post {
  background: #0055a6;
  color: white;
}

.delivery-method-icon--cdek {
  background: #ebf7ee;
  color: #00a650;
}

.delivery-method-icon--dpd {
  background: #fef2f2;
  color: #dc2626;
}

.delivery-method-icon--tk {
  background: #f1f5f9;
  color: #4b5563;
}

.delivery-method-icon--yandex {
  background: #ea580c;
  color: white;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.delivery-info-panel {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
}

.delivery-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.delivery-info-icon-box {
  width: 32px;
  height: 32px;
  background: #0055a6;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-18 {
  width: 18px;
  height: 18px;
}

.delivery-info-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
}

.delivery-info-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.delivery-info-stats {
  display: flex;
  gap: 1.5rem;
}

.delivery-info-stat-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 4px;
}

.delivery-info-stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
}

.delivery-settings-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.delivery-setting-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: white;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
}

.delivery-setting-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delivery-setting-icon-i {
  width: 22px;
  height: 22px;
}

.delivery-setting-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}

.delivery-setting-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 1024px) {
  .delivery-container--padded {
    margin-top: 4rem;
    margin-bottom: 6rem;
    padding: 0;
  }

  .delivery-section-header {
    margin-bottom: 3.5rem;
    padding-top: 4rem;
    text-align: left;
  }

  .delivery-main-card {
    flex-direction: row;
    padding: 2.5rem;
    gap: 3.5rem;
    align-items: center;
  }

  .delivery-methogrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 320px;
    flex-shrink: 0;
  }

  .delivery-method-label {
    font-size: 0.8rem;
  }

  .delivery-info-title {
    font-size: 1.25rem;
  }

  .delivery-info-stats {
    gap: 3rem;
  }

  .delivery-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .delivery-setting-card {
    padding: 1.75rem;
  }
}


/* ==========================================================================
   QUICK FILTERS & ANIMATIONS (MOVED FROM TOP)
========================================================================== */
/* Filter Mouse Animation */
@keyframes filter-mouse-move {
  0% {
    transform: translate(600px, 150px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {
    transform: translate(500px, 25px);
  }

  /* Move to the orange button */
  50% {
    transform: translate(500px, 25px) scale(0.85);
  }

  /* Click */
  60% {
    transform: translate(500px, 25px) scale(1);
  }

  /* Release */
  90% {
    opacity: 1;
  }

  100% {
    transform: translate(600px, 150px);
    opacity: 0;
  }
}

@keyframes filter-btn-click {

  0%,
  45%,
  65%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(247, 145, 61, 0.3);
  }

  50% {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(247, 145, 61, 0.2);
  }
}

@keyframes ripple-effect {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.filter-cursor {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  color: #1e293b;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: filter-mouse-move 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn--active {
  animation: filter-btn-click 6s infinite;
}

.filter-btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  animation: ripple-effect 6s infinite;
  animation-delay: 3s;
  /* Sync with click (50% of 6s = 3s) */
}

/* Quick Filters Block (3.7) */
.qf-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-custom);
  width: 100%;
  padding-bottom: 80px;
  position: relative;
}

.qf-inner {
  background: var(--color-primary);
  border-radius: 24px;
  padding: 24px;
  /* Reduced for mobile */
  color: white;
  position: relative;
}

@media (min-width: 1025px) {
  .qf-inner {
    padding: 40px;
  }
}

.qf-breadcrumbs {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.qf-breadcrumbs-sep {
  margin: 0 4px;
}

.qf-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

@media (min-width: 1025px) {
  .qf-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.qf-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.filter-btn {
  background: white;
  color: var(--color-text);
  padding: 8px 16px;
  /* Reduced for mobile */
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

@media (min-width: 1025px) {
  .filter-btn {
    padding: 10px 24px;
  }
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn--active {
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(247, 145, 61, 0.3);
  position: relative;
  z-index: 2;
}

.qf-tips {
  display: none;
  position: absolute;
  right: 140px;
  bottom: -65px;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

@media (min-width: 1025px) {
  .qf-tips {
    display: flex;
  }
}

.qf-tip-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.qf-tip-row--offset-1 {
  transform: translateX(-15px);
}

.qf-tip-row--offset-2 {
  transform: translateX(-30px);
}

.qf-tip {
  background: white;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-custom);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
}

.qf-tip-check {
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qf-tip-check i {
  width: 10px;
  color: white;
  stroke-width: 3;
}

.mt-10 {
  margin-top: 2.5rem;
}

/* ==========================================================================
   MOBILE ADAPTATION: CART & CHECKOUT (UP TO 767px)
========================================================================== */
@media (max-width: 767px) {
  .cart-section {
    padding: 3rem 1rem;
  }

  .cart-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  /* Vitrine Card Refinement */
  .vitrine-card {
    border-radius: 24px;
    border-color: #f1f5f9;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  }

  .vitrine-card__top {
    padding: 1.5rem;
    gap: 1rem;
  }

  .cart-card-icon-lg {
    width: 48px;
    height: 48px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-card-title-custom {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
  }

  .cart-card-desc-custom {
    font-size: 0.85rem;
    color: var(--color-text-muted);
  }

  .vitrine-card__mockup {
    min-height: 160px;
    padding: 1.5rem;
    background: #f8fafc;
  }

  .vitrine-card__img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
  }

  /* Bento Cards */
  .cart-bento-card {
    padding: 1.25rem;
    gap: 1.25rem;
    border-radius: 24px;
  }

  /* Bento Visuals */
  .cart-bento-visual {
    min-height: 160px;
    padding: 0.75rem;
    border-radius: 16px;
  }

  /* Mockups Scaling */
  .ui-side-cart-mockup {
    width: 220px;
    height: 140px;
  }

  .ui-form-mockup {
    padding: 1rem;
    max-width: 300px;
  }

  .ui-promo-widget {
    padding: 1rem;
    max-width: 260px;
  }

  .ui-pay-stack {
    max-width: 100%;
  }

  .ui-pay-card {
    padding: 10px 14px;
    font-size: 12px;
  }

  /* Delivery Section */
  .delivery-container--padded {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .delivery-main-card {
    padding: 1.25rem;
    gap: 1.5rem;
    border-radius: 24px;
  }

  .delivery-methogrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .delivery-info-panel {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .delivery-info-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .delivery-settings-grid {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .delivery-setting-card {
    padding: 1rem;
    gap: 1rem;
    border-radius: 16px;
  }

  .delivery-setting-title {
    font-size: 0.95rem;
  }

  .delivery-setting-desc {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 24px;
  }

  .section-desc {
    font-size: 14px;
  }
}