/* ==========================================================================
   ГЛАВНЫЙ CSS ФАЙЛ - Все стили проекта Bimmunal
   ========================================================================== */

/* Импорты */
@import url('./01-fonts.css?v=18');
@import url('./02-variables.css?v=18');
@import url('./03-icons.css?v=18');
@import url('./04-product-card.css?v=18');
@import url('./05-roadmap.css?v=18');
@import url('./06-slide-cards.css?v=18');
@import url('./06-hero.css?v=21');
@import url('./06-testimonials-variants.css?v=18');
@import url('./06-article.css?v=18');
@import url('./07-articles-carousel.css?v=18');
@import url('./08-order-form-variants.css?v=18');
@import url('./09-footer-modern.css?v=18');
@import url('./10-navbar-modern.css?v=18');
@import url('./16-quantity-picker.css?v=18');
@import url('./17-product-documents.css?v=18');
@import url('./18-footer-telegram.css');
@import url('./19-kaspi-button.css');

/* CSS переменные для совместимости */
:root{
  /* Colors */
  --primary-50:#FFF3E9;--primary-100:#FFDCC8;--primary-500:#E76A2E;--primary-900:#5A230A;
  --secondary-50:#EEF3FF;--secondary-100:#D7E1FF;--secondary-500:#284B9C;--secondary-900:#0E1B47;
  --neutral-50:#F7F7F9;--neutral-100:#EDEFF2;--neutral-500:#6B7280;--neutral-900:#111827;
  --success:#16A34A;--warning:#F59E0B;--error:#DC2626;--info:#2563EB;
  --bg-primary:#FFFFFF;--bg-secondary:#F7F7F9;--bg-surface:#FFFFFF;

  /* RGB helpers */
  --primary-500-rgb:231,106,46;
  --secondary-500-rgb:40,75,156;
  --scanner-color: var(--secondary-500);
  --scanner-angle: 0deg;
  --scanner-speed: 14s;
  --scanner-thickness: 22%;

  /* Typography */
  --ff-sans:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  --ff-serif:"PT Serif", Georgia, "Times New Roman", serif;
  --ff-mono:"JetBrains Mono", Consolas, Menlo, monospace;
  --fs-12:0.75rem;--fs-14:0.875rem;--fs-16:1rem;--fs-18:1.125rem;--fs-20:1.25rem;--fs-24:1.5rem;--fs-30:1.875rem;--fs-36:2.25rem;--fs-48:3rem;
  --lh-tight:1.25;--lh-normal:1.5;--lh-relaxed:1.75;

  /* Radius */
  --r-0:0;--r-2:0.125rem;--r-6:0.375rem;--r-8:0.5rem;--r-12:0.75rem;--r-full:9999px;

  /* Shadows */
  --shadow-sm:0 1px 2px rgba(17,24,39,0.06);
  --shadow-md:0 2px 6px rgba(17,24,39,0.08), 0 1px 3px rgba(17,24,39,0.06);
  --shadow-lg:0 8px 20px rgba(17,24,39,0.12), 0 4px 8px rgba(17,24,39,0.08);
  --shadow-xl:0 16px 40px rgba(17,24,39,0.16), 0 6px 14px rgba(17,24,39,0.08);

  /* Layout */
  --container-1280:80rem;--container-1080:67.5rem;

  /* Transitions */
  --t-fast:150ms ease;--t-normal:300ms ease;--t-slow:500ms ease;

  /* Новые переменные для совместимости */
  --font-sans: var(--ff-sans);
  --font-serif: var(--ff-serif);
}

html,body{margin:0;padding:0}
*,*::before,*::after{box-sizing:border-box}
body{font-family:var(--ff-sans);background:var(--bg-primary);color:var(--neutral-900)}

/* Prevent horizontal scroll on mobile */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* Skip link for accessibility */
.skip-link:focus {
  top: 0;
}
.backdrop-blur{backdrop-filter:blur(8px)}
.no-scroll{overflow:hidden}

/* Utilities (Tailwind-like minimal set) */
/* Improved spacing system */
.section-padding{padding:3rem 0}
.section-padding-large{padding:4rem 0}
.section-padding-small{padding:2rem 0}
.container{margin-left:auto;margin-right:auto;width:100%;box-sizing:border-box;max-width:75rem}
.container-narrow{max-width:50rem}
.container-wide{max-width:87.5rem}
.grid{display:grid;gap:1rem;width:100%;max-width:100%}
.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.justify-center{justify-content:center}
.justify-end{justify-content:flex-end}
.justify-between{justify-content:space-between}
.flex{display:flex;flex-wrap:wrap}
.inline-flex{display:inline-flex}
.inline-block{display:inline-block}
.block{display:block}
.flex-col{flex-direction:column}
.flex-row{flex-direction:row}
.flex-wrap{flex-wrap:wrap}
.gap-8{gap:0.5rem}
.gap-12{gap:0.75rem}
.gap-16{gap:1rem}
.gap-24{gap:1.5rem}
/* Layout utilities */
.max-w-1280{max-width:var(--container-1280)}
.max-w-1080{max-width:var(--container-1080)}
.max-w-1180{max-width:73.75rem}
.max-w-980{max-width:61.25rem}
.px-24{padding-left:1.5rem;padding-right:1.5rem}
.px-16{padding-left:1rem;padding-right:1rem}
.py-80{padding-top:5rem;padding-bottom:5rem}
.py-48{padding-top:3rem;padding-bottom:3rem}
.py-40{padding-top:2.5rem;padding-bottom:2.5rem}
.py-32{padding-top:2rem;padding-bottom:2rem}
.py-20{padding-top:1.25rem;padding-bottom:1.25rem}
.mt-8{margin-top:0.5rem}.mt-12{margin-top:0.75rem}.mt-16{margin-top:1rem}.mt-20{margin-top:1.25rem}.mt-24{margin-top:1.5rem}
.space-y-8> * + *{margin-top:0.5rem}
/* Dimensions */
.h-72{height:4.5rem}.h-64{height:4rem}.h-28{height:1.75rem}
.w-360{max-width:22.5rem;width:100%}.h-360{height:22.5rem}.w-220{max-width:13.75rem;width:100%}.h-220{height:13.75rem}
.rounded-6{border-radius:0.375rem}.rounded-8{border-radius:0.5rem}.rounded-12{border-radius:0.75rem}.rounded-full{border-radius:9999px}
.border{border-width:1px}.border-b{border-bottom-width:1px}.border-neutral-100{border-color:var(--neutral-100)}
.bg-white\/80{background:rgba(255,255,255,.8)}
.bg-white{background:#fff}.bg-neutral-50{background:var(--neutral-50)}
.bg-bg-primary{background:var(--bg-primary)}
.text-12{font-size:var(--fs-12)}.text-14{font-size:var(--fs-14)}.text-16{font-size:var(--fs-16)}
.font-500{font-weight:500}.font-600{font-weight:600}.font-700{font-weight:700}
.text-neutral-500{color:var(--neutral-500)}.text-neutral-900{color:var(--neutral-900)}
.text-primary-500{color:var(--primary-500)}.text-secondary-500{color:var(--secondary-500)}.text-success-500{color:var(--success)}
.object-contain{object-fit:contain}
.translate-x-12{transform:translateX(12px)}
.-rotate-3{transform:rotate(-3deg)}
.absolute{position:absolute}.relative{position:relative}.fixed{position:fixed}.sticky{position:sticky}.top-0{top:0}
.-top-12{top:-12px}.-left-12{left:-12px}.-right-20{right:-20px}.bottom-0{bottom:0}
.z-50{z-index:50}.z-5{z-index:5}
.w-full{width:100%}
.hidden{display:none}
.overflow-hidden{overflow:hidden}
.shadow-on-scroll{transition:box-shadow 0.3s ease}
.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.font-sans{font-family:var(--ff-sans)}
.leading-tight{line-height:1.25}
.link{color:var(--secondary-500);text-decoration:underline}

.link:focus {
  outline: 2px solid var(--secondary-500);
  outline-offset: 2px;
}

/* Columns helpers */
.col-span-3{grid-column:span 3 / span 3}
.col-span-5{grid-column:span 5 / span 5}
.col-span-6{grid-column:span 6 / span 6}
.col-span-7{grid-column:span 7 / span 7}
.col-span-12{grid-column:span 12 / span 12}

/* Typography presets */
.h1{font-size:clamp(28px,5vw,48px);line-height:1.15;letter-spacing:-0.02em;color:var(--secondary-900);font-weight:700;margin-bottom:0}
.h2{font-size:clamp(22px,4vw,36px);line-height:1.2;letter-spacing:-.015em;color:var(--secondary-900);font-weight:700;margin-bottom:0}
.h3{font-size:clamp(20px,3vw,30px);line-height:1.25;color:var(--neutral-900);font-weight:600;margin-bottom:0}
.h4{font-size:22px;line-height:1.3;color:var(--neutral-900);font-weight:600;margin-bottom:0}
.lead{font-size:18px;line-height:1.65;color:var(--neutral-600)}
.body{font-size:16px;line-height:1.6;color:var(--neutral-900)}
.small{font-size:14px;line-height:1.5;color:var(--neutral-500)}
.overline{font-size:12px;letter-spacing:.15em;font-weight:700;text-transform:uppercase;color:var(--primary-500)}

/* ==========================================================================
   NAVIGATION COMPONENTS - BEM Architecture
   ========================================================================== */

/* Top Bar Block */
.top-bar {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-100);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}

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

.top-bar__left {
  color: var(--neutral-700);
}

.top-bar__right {
  display: flex;
  gap: 1.5rem;
}

.top-bar__phone,
.top-bar__email {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--neutral-800);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar__phone:hover,
.top-bar__email:hover {
  color: var(--primary-500);
}

/* Navbar styles moved to 10-navbar-modern.css */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(0);
}

/* Button Modifiers */
.btn--primary {
  background: var(--primary-500);
  color: #fff;
  border-color: var(--primary-500);
}

.btn--primary:hover {
  background: #CF5F29;
  border-color: #CF5F29;
  box-shadow: 0 4px 12px rgba(231, 106, 46, 0.3);
}
.btn--primary:focus {
  outline: 2px solid var(--secondary-100);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(231, 106, 46, .2);
}

.btn--outline {
  background: transparent;
  color: var(--secondary-500);
  border: 1.5px solid var(--secondary-500);
}

.btn--outline:hover {
  background: var(--secondary-50);
  color: var(--secondary-600);
}

.btn--outline:active {
  background: var(--secondary-100);
}

.btn--secondary {
  background: var(--secondary-500);
  color: #fff;
  border-color: var(--secondary-500);
}

.btn--secondary:hover {
  background: #233F84;
  border-color: #233F84;
  box-shadow: 0 4px 12px rgba(40, 75, 156, .3);
}
/* Button Size Modifiers */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 2.25rem;
  border-radius: 0.375rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: 3.25rem;
  border-radius: 0.625rem;
}
/* Icon Button Element */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-100);
  background: #fff;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: var(--neutral-50);
  border-color: var(--neutral-200);
}

.btn-icon:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* Размеры иконок для разных контекстов */
/* Маленькие иконки для top bar */
.top-bar [class^="icon-"], .top-bar [class*=" icon-"]{width:16px;height:16px}

/* Средние иконки для списков */
ul [class^="icon-"], ul [class*=" icon-"]{width:20px;height:20px}

/* Большие иконки для trustbar и benefits */
.trustbar [class^="icon-"], .trustbar [class*=" icon-"],
.benefit [class^="icon-"], .benefit [class*=" icon-"],
.pain-card [class^="icon-"], .pain-card [class*=" icon-"]{width:28px;height:28px}

/* Очень большие иконки */
.ti [class^="icon-"], .ti [class*=" icon-"]{width:32px;height:32px}

/* Beautiful Logo Styling */

/* Image placeholders */
.img-placeholder{background:linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-50) 100%);display:flex;align-items:center;justify-content:center;color:var(--neutral-500);font-size:14px;font-weight:500;border-radius:8px;position:relative;overflow:hidden}
.img-placeholder::before{content:'📷';font-size:2em;opacity:0.5}
.img-placeholder.product{background:linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);border:2px dashed var(--neutral-200)}
.img-placeholder.product::before{content:'💊';font-size:3em}
.img-placeholder.avatar{background:linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);border-radius:50%}
.img-placeholder.avatar::before{content:'👤';color:var(--secondary-500)}
.img-placeholder.article{background:linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%)}
.img-placeholder.article::before{content:'📄';font-size:2em}

/* ==========================================================================
   OFFCANVAS COMPONENT - Mobile Menu
   ========================================================================== */

/* Offcanvas Mobile Menu */
/* Все стили для offcanvas и мобильного меню перенесены в 10-navbar-modern.css */

/* No scroll class for body when offcanvas is open */
.no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   HERO COMPONENT - Main landing section
   ========================================================================== */

/* Hero Block */
.hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 750px;
  padding: 6.25rem 0;
  overflow: hidden;
}

/* Hero Decorative Elements */
.hero__decoration--primary {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 18.75rem;
  height: 18.75rem;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero__decoration--secondary {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 12.5rem;
  height: 12.5rem;
  background: linear-gradient(45deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  border-radius: 2.5rem;
  z-index: 1;
  animation: heroRotate 15s linear infinite;
  transform: rotate(45deg);
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 0.3; }
}

@keyframes heroRotate {
  0% { transform: rotate(45deg); }
  100% { transform: rotate(405deg); }
}

.hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="100" fill="url(%23a)"/><circle cx="300" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
  background-size:cover;
  z-index:1;
  animation:heroFloat 20s ease-in-out infinite;
}

.hero::after{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:800px;
  height:800px;
  background:radial-gradient(circle, rgba(231,106,46,0.15) 0%, rgba(231,106,46,0.05) 40%, transparent 70%);
  border-radius:50%;
  z-index:1;
  animation:heroPulse 8s ease-in-out infinite;
}

@keyframes heroFloat{
  0%, 100% { transform:translateY(0px) rotate(0deg); }
  33% { transform:translateY(-20px) rotate(1deg); }
  66% { transform:translateY(10px) rotate(-0.5deg); }
}

@keyframes heroPulse{
  0%, 100% { transform:scale(1) rotate(0deg); opacity:0.15; }
  50% { transform:scale(1.1) rotate(5deg); opacity:0.25; }
}

/* Hero Content Elements */
.hero__content {
  position: relative;
  z-index: 3;
}

.hero__shape {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(40,75,156,0.12) 0%, rgba(40,75,156,0.06) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: heroRotate 30s linear infinite;
}

@keyframes heroRotate{
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}

/* Стили текста в Hero */
/* Hero Text Elements */
.hero__title {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 800;
  margin-bottom: 0;
}

.hero__lead {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero__overline {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero__list {
  margin-top: 1rem;
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.hero__list-item-text {
  font-weight: 500;
}

/* Hero Actions */
.hero__actions {
  /* Inherits flex properties from parent */
}

.hero__info {
  /* Inherits flex properties from parent */
}

.hero .text-14{
  color:#ffffff;
  text-shadow:0 1px 2px rgba(0,0,0,0.25);
}
/* Обновленные стили для Hero */
.drop-shadow-bottle{
  filter:drop-shadow(0 25px 60px rgba(0,0,0,.4));
}

.badge{
  background:linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color:#fff;
  border-radius:30px;
  padding:0.625rem 1.25rem;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  position:absolute;
  top:-0.9375rem;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  box-shadow:0 8px 25px rgba(255,107,107,.4), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow:0 1px 2px rgba(0,0,0,0.2);
  animation:badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse{
  0%, 100% { transform:translateX(-50%) scale(1); }
  50% { transform:translateX(-50%) scale(1.05); }
}

.trustbar{
  margin-top:3.75rem;
}

.trustbar-card{
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:1.25rem;
  padding:1.5625rem 1.875rem;
  backdrop-filter:blur(15px);
  box-shadow:0 15px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
  display:flex;
  gap:1.875rem;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.trustbar-item{
  display:flex;
  align-items:center;
  gap:0.75rem;
  min-width:13.75rem;
  flex:1 1 13.75rem;
  justify-content:center;
  text-align:center;
  padding:0.625rem 0.9375rem;
  border-radius:0.75rem;
  transition:all 0.3s ease;
  color:rgba(255,255,255,0.95);
  background:rgba(255,255,255,0.08);
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.trustbar-item:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.15);
  color:#ffffff;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.trustbar-item .font-600{
  color:#ffffff;
  text-shadow:0 1px 2px rgba(0,0,0,0.2);
  margin-bottom: 8px;
}

.trustbar-item .text-neutral-500 {
  color: var(--secondary-100);
}

.trustbar-item [class^="icon-"] {
  filter: brightness(0) invert(1);
}

/* Кнопки в Hero секции */
/* Hero Buttons */
.hero__btn--primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  border: none;
  box-shadow: 0 8px 25px rgba(255,107,107,.4), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  font-weight: 700;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__btn--primary:hover {
  background: linear-gradient(135deg, #FF5252 0%, #FF7043 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,107,107,.6), inset 0 1px 0 rgba(255,255,255,0.4);
}

.hero__btn--outline {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__btn--outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Hero phone contact */
.hero-phone{display:flex;flex-direction:column;align-items:center;text-decoration:none;color:var(--neutral-900);transition:all 0.2s ease;padding:8px 12px;border-radius:8px;border:1px solid var(--neutral-200);background:#fff}
.hero-phone:hover{border-color:var(--secondary-500);color:var(--secondary-900);transform:translateY(-1px)}
.hero-phone .phone-number{font-size:16px;font-weight:600;color:var(--secondary-900)}
.hero-phone .phone-hours{font-size:12px;color:var(--neutral-500);margin-top:2px}
/* Hero Images */
.hero__images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37.5rem;
  z-index: 4;
}

/* Декоративные элементы для заполнения пространства */
.hero__images::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  right: -1.875rem;
  width: 12.5rem;
  height: 12.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 50%;
  z-index: 1;
  animation: heroFloatSlow 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-images::after {
  content: '';
  position: absolute;
  bottom: -2.5rem;
  left: -3.125rem;
  width: 9.375rem;
  height: 9.375rem;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border-radius: 1.875rem;
  z-index: 1;
  animation: heroFloatSlow 10s ease-in-out infinite reverse;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transform: rotate(25deg);
}

@keyframes heroFloatSlow{
  0%, 100% { transform:translateY(0px) rotate(0deg); }
  50% { transform:translateY(-20px) rotate(5deg); }
}

@keyframes heroProductFloat{
  0%, 100% { transform:translateY(0px) rotateX(0deg); }
  50% { transform:translateY(-15px) rotateX(2deg); }
}

.hero__product--main {
  position: relative;
  z-index: 5;
  background: linear-gradient(145deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);
  border-radius: 2.1875rem;
  padding: 3.125rem;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: heroProductFloat 6s ease-in-out infinite;
  transform: scale(1.1) translateX(-1.25rem);
}

.hero__product--main:hover{
  transform:translateY(-20px) scale(1.05);
  box-shadow:0 40px 100px rgba(0,0,0,0.4), 0 15px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero__product--secondary {
  position: absolute;
  bottom: -0.625rem;
  right: 4.5rem;
  z-index: 6;
  background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 1.5625rem;
  padding: 1.875rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: scale(0.9) rotate(-8deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: heroProductFloat 8s ease-in-out infinite reverse;
}

.hero-secondary-product:hover{
  transform:scale(0.95) rotate(-5deg) translateY(-10px);
  box-shadow:0 35px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}

.hero-img-1, .hero-img-2{
  transform:none;
  margin:0 auto;
  display:block;
  filter:drop-shadow(0 10px 30px rgba(0,0,0,0.2));
  transition:filter 0.3s ease;
}

.hero__product--main:hover .hero__img,
.hero__product--secondary:hover .hero__img{
  filter:drop-shadow(0 15px 40px rgba(0,0,0,0.3));
}

/* Pain Solution */
.feature-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--r-12);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-normal);
}

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

.pain-solution-content{width:100%;margin-bottom:32px}
.solution-section{width:100%}
.pain-cards{display:grid;grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:20px;margin-top:24px}
.pain-card{display:flex;gap:0.75rem;align-items:flex-start;background:#fff;border:1px solid var(--neutral-100);border-radius:0.75rem;padding:1.25rem;box-shadow:0 8px 20px rgba(17,24,39,.06);transition:transform 0.2s ease, box-shadow 0.2s ease;height:100%}
.pain-card:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(17,24,39,.1)}
.pain-card .title{font-weight:600;color:var(--secondary-900);margin-bottom:8px}
.pain-card .text{color:var(--neutral-500);line-height:1.5}
.solution-panel{background:#fff;border:1px solid var(--neutral-100);border-radius:12px;padding:24px;box-shadow:0 8px 20px rgba(17,24,39,.06);display:grid;gap:16px;height:fit-content}
.solution-panel .title{font-weight:600;color:var(--secondary-900);font-size:18px}
.solution-panel .list{padding-left:20px;margin:0;color:var(--neutral-900)}
.solution-panel .list li{margin:8px 0;line-height:1.5}

/* Benefits strip */
/* OLD STYLES - MOVED TO LINE 3374+ */

/* Sticky CTA */
.sticky-cta{position:fixed;left:50%;bottom:1rem;transform:translateX(-50%);z-index:40}
.sticky-cta-inner{display:flex;gap:0.5rem;align-items:center;background:#fff;border:1px solid var(--neutral-100);border-radius:9999px;padding:0.5rem 0.75rem;box-shadow:0 10px 24px rgba(17,24,39,.16);opacity:0;pointer-events:none;transition:opacity var(--t-normal)}
.sticky-cta.show .sticky-cta-inner{opacity:1;pointer-events:auto}

/* Cookie notice */
.cookie{position:fixed;left:50%;transform:translateX(-50%);right:auto;bottom:1rem;z-index:2000}
.cookie-inner{display:flex;gap:0.75rem;align-items:center;background:#111827;color:#fff;border-radius:0.75rem;padding:1rem 1.25rem;box-shadow:0 10px 24px rgba(0,0,0,.3)}
.cookie.hide{display:none}
.cookie .link{color:#D7E1FF;text-decoration:underline}

/* Modal */
.modal{position:fixed;inset:0;display:none}
.modal[aria-hidden="false"]{display:block}
.modal-overlay{position:absolute;inset:0;background:rgba(0,0,0,.48);animation:fadeIn 200ms}
.modal-card{position:relative;margin:2.5rem auto;background:#fff;border-radius:1rem;padding:1.5rem;box-shadow:0 24px 64px rgba(17,24,39,.22);max-width:35rem}
.modal-close{position:absolute;top:0.5rem;right:0.5rem}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

/* Inputs */
.field{display:block}
.input{width:100%;min-height:2.75rem;padding:0.75rem 0.875rem;border:1px solid var(--neutral-100);border-radius:0.5rem;font-size:1rem;color:var(--neutral-900)}
.input:focus{outline: 2px solid var(--secondary-500);outline-offset: 2px;border:1px solid var(--secondary-500);box-shadow:0 0 0 3px rgba(40,75,156,.25)}
.input-error{border-color:var(--error);box-shadow:0 0 0 3px rgba(220,38,38,.2)}
.error{display:block;font-size:12px;color:var(--error);min-height:16px;margin-top:6px}

/* Products */
.products-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:24px;margin-top:24px}
.product-card{background:#fff;border:1px solid var(--neutral-100);border-radius:0.75rem;box-shadow:0 8px 20px rgba(17,24,39,.08);overflow:hidden;transition:transform var(--t-fast), box-shadow var(--t-fast);display:flex;flex-direction:column;height:100%}
.product-card:hover{transform:translateY(-4px);box-shadow:0 16px 32px rgba(17,24,39,.12)}

.product-card:focus{outline: 2px solid var(--primary-500);outline-offset: 2px;}
.product-image{
  height:15rem;
  object-fit:cover;
  width:100%;
  max-width:100%;
  background:#fff;
  padding:0;
  display:block;
  border-radius:0.75rem 0.75rem 0 0;
}
.product-body{display:flex;flex-direction:column;gap:0.75rem;padding:1.25rem;flex-grow:1}
.product-price{font-size:20px;font-weight:700;color:var(--secondary-900);margin-top:auto}
.product-short{color:var(--neutral-900);line-height:1.5;flex-grow:1}
.pill{display:inline-block;background:var(--secondary-50);color:var(--secondary-500);padding:0.375rem 0.625rem;border-radius:9999px;font-size:0.75rem;font-weight:600;margin-bottom:0.5rem;width:fit-content}
.product-cta{display:flex;gap:0.75rem;margin-top:1rem}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:1.5rem;margin-top:1.5rem}
.step{background:#fff;border:1px solid var(--neutral-100);border-radius:0.75rem;padding:1.5rem;box-shadow:var(--shadow-md);text-align:center;transition:transform 0.2s ease}
.step:hover{transform:translateY(-2px)}

.step:focus{outline: 2px solid var(--primary-500);outline-offset: 2px;}
.step .num{width:2.5rem;height:2.5rem;border-radius:50%;background:var(--primary-500);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;margin:0 auto 1rem;font-size:1.125rem}
.step .title{font-weight:600;color:var(--secondary-900);margin-bottom:12px;font-size:18px}
.step .text{color:var(--neutral-500);line-height:1.6}

/* Trust inline */
.trust-bar__inline{
  background: rgba(255,255,255,0.65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
}
.trust-inline{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:1rem;
  align-items:center
}
.ti{
  display:flex;
  gap:0.75rem;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--neutral-100);
  border-radius: 9999px;
  padding: 0.75rem 1rem;
  box-shadow: 0 6px 16px rgba(17,24,39,0.06);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.ti:hover{
  transform: translateY(-2px);
  border-color: var(--secondary-100);
  box-shadow: 0 12px 28px rgba(40,75,156,0.15);
}
.ti [class^="icon-"], .ti [class*=" icon-"]{
  color: var(--secondary-500);
}
.ti .t{font-weight:600;color:var(--secondary-900);font-size:1rem;margin-bottom:0.125rem}
.ti .s{font-size:14px;color:var(--neutral-500);line-height:1.4}

/* Testimonials */
.review-card .avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--neutral-100);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.avatar--sunrise { background: linear-gradient(135deg, #E76A2E 0%, #284B9C 100%); }
.avatar--sunrise-reverse { background: linear-gradient(135deg, #284B9C 0%, #E76A2E 100%); }
.avatar--violet { background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%); }
.avatar--coral { background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%); }
.avatar--azure { background: linear-gradient(135deg, #284B9C 0%, #667EEA 100%); }
.avatar--lilac { background: linear-gradient(135deg, #764BA2 0%, #667EEA 100%); }
.testimonials{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:1.5rem;margin-top:1.5rem}
.review-card{background:#fff;border:1px solid var(--neutral-100);border-radius:0.75rem;padding:1.5rem;box-shadow:0 8px 20px rgba(17,24,39,.08);transition:transform 0.2s ease}
.review-card:hover{transform:translateY(-2px)}

.review-card:focus{outline: 2px solid var(--primary-500);outline-offset: 2px;}
.review-card .name{font-weight:600;color:var(--secondary-900);margin-bottom:8px}
.review-card .text{color:var(--neutral-900);margin-bottom:12px;line-height:1.6}
.review-card .rating{color:#F59E0B;font-size:16px}

/* --- Beautify Testimonials (Glass + Quote + Accent) --- */
.review-card{
  position: relative;
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.12);
}
.review-card::before{
  content: '“';
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 56px;
  line-height: 1;
  color: rgba(40,75,156,0.12);
  pointer-events: none;
}
.review-card .name{font-weight:700;color:var(--secondary-900);margin-top:8px;margin-bottom:6px}
.review-card .text{color:var(--neutral-700);line-height:1.6}
.review-card .rating{color:#F59E0B;font-size:18px;margin-top:8px}

/* Arrow buttons finer glass look */
.reviews-nav{
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.articles-card {
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.10);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  height: 100%;
}

.articles-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12);
}

.articles-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.articles-card__link:hover,
.articles-card__link:focus {
  text-decoration: none;
}

.articles-card__link:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 4px;
}

.articles-card__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-100);
}

.articles-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.articles-card:hover .articles-card__media img {
  transform: scale(1.05);
}

.articles-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.25rem 1.5rem 1rem;
  flex: 1 1 auto;
}

.articles-card__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  background: rgba(40, 75, 156, 0.1);
  color: var(--primary-600);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.articles-card__title {
  margin: 0;
  color: var(--secondary-900);
  font-weight: 700;
  line-height: 1.35;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.25rem);
}

.articles-card__meta {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.articles-card__dot {
  display: inline-flex;
}

.articles-card__dot::before {
  content: "\2022";
  font-size: 1.25em;
  line-height: 1;
  opacity: 0.45;
}

.articles-card__date {
  color: inherit;
}

@media (max-width: 1023.98px) {
  .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 639.98px) {
  .articles-grid {
    gap: 1.25rem;
  }
}/* Order form */
.max-w-980{max-width:61.25rem}
.order-card{background:var(--primary-50);border-radius:0.75rem;padding:1.5rem}
.order-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:0.75rem}
.order-grid .col-span-6{grid-column:span 6 / span 6}
.order-grid .col-span-12{grid-column:span 12 / span 12}
.lbl{display:block;font-size:0.875rem;color:var(--secondary-900);margin-bottom:0.375rem}

/* Pro Form */
.pro-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--neutral-100);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.pro-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.form-field-group {
  display: flex;
  flex-direction: column;
}

.form-label-pro {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
  display: block;
}

.form-input-pro {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-200, #E5E7EB);
  background-color: var(--neutral-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-pro:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
  border-color: var(--primary-500);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(231, 106, 46, 0.15);
}

.form-input-pro::placeholder {
  color: var(--neutral-400, #9CA3AF);
}

select.form-input-pro {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236B7280%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.65em auto;
  padding-right: 2.5rem;
}

@media (max-width: 767.98px) {
  .pro-form-grid .col-span-6 {
    grid-column: span 12 / span 12;
  }
  .pro-form-card {
    padding: 1.5rem;
  }
}

/* Pro Form Enhancements */
.fieldset-group {
  border: 1px solid var(--neutral-100);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1rem;
}

.fieldset-legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-500);
  padding: 0 0.5rem;
  margin-left: 1rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-input-pro.with-icon {
  padding-left: 40px;
}

.form-input-pro:focus + .input-icon, .input-wrapper:focus-within .input-icon {
  color: var(--primary-500);
}

#order_form {
  background-color: var(--neutral-100);
}

.pro-form-card {
  box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
  background: linear-gradient(140deg, #0b163a 0%, #132a58 55%, #071a3f 100%);
  color: #f0f4ff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(114, 147, 255, 0.25), transparent 52%),
              radial-gradient(circle at bottom left, rgba(32, 201, 255, 0.14), transparent 55%);
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(4.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(200px, 1fr) minmax(220px, 1fr) minmax(260px, 1.1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer .logo-steko,
.footer .logo-steko .logo-ltd {
  color: #fff;
}

.footer .logo-steko .logo-ltd::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
}

.footer .logo-steko:hover {
  color: #fdd9c2;
}

.footer .logo-steko:hover .logo-ltd {
  color: #dbe6ff;
}

.footer-tagline {
  margin: 0;
  color: rgba(240, 244, 255, 0.82);
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-badges li {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 34, 78, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.78);
}

.footer-brand__cta {
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  background: rgba(15, 33, 74, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.65rem;
}

.footer-brand__cta-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(235, 239, 255, 0.8);
  line-height: 1.55;
}

.footer-brand__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-brand__cta-link:hover,
.footer-brand__cta-link:focus-visible {
  color: #fdd9c2;
}

.footer-nav {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}

.footer-column--contact {
  gap: 1.5rem;
}

.footer-column--newsletter {
  align-self: stretch;
}

.footer-heading {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(218, 228, 255, 0.86);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(218, 228, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact__link:hover,
.footer-contact__link:focus-visible {
  color: #fff;
}

.footer-contact__link [class^="icon-"] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(218, 228, 255, 0.9);
}

.footer-contact__item [class^="icon-"] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact__item--hours {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  color: rgba(218, 228, 255, 0.85);
}

.footer-contact__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-socials__link {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 33, 74, 0.65);
  color: rgba(218, 228, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials__link:hover,
.footer-socials__link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer-socials__icon {
  width: 22px;
  height: 22px;
  color: inherit;
}

.footer-socials__icon * {
  transition: stroke 0.2s ease, fill 0.2s ease;
}

.footer-newsletter {
  padding: 1.4rem;
  border-radius: 1.1rem;
  background: rgba(15, 33, 74, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 0.75rem;
}

.footer-newsletter__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(235, 239, 255, 0.78);
  line-height: 1.55;
}

.footer-newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-newsletter__input {
  flex: 1 1 200px;
  min-width: 220px;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--neutral-900);
}

.footer-newsletter__input::placeholder {
  color: rgba(31, 52, 92, 0.55);
}

.footer-newsletter__input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.footer-newsletter__button {
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
}

.footer-newsletter__legal {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(218, 228, 255, 0.7);
  line-height: 1.5;
}

.footer-support {
  margin-top: 2.75rem;
  padding: 1.6rem 2rem;
  border-radius: 1.25rem;
  background: rgba(14, 37, 82, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(5, 17, 45, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.footer-support__text {
  margin: 0;
  max-width: 620px;
  color: rgba(235, 239, 255, 0.82);
  line-height: 1.6;
}

.footer-support__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-support__phone {
  color: #f0f4ff;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-support__phone:hover,
.footer-support__phone:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.75rem;
  margin-top: 2.5rem;
}

.footer-bottom__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  color: rgba(218, 228, 255, 0.8);
  text-decoration: none;
}

.footer-bottom__links a:hover,
.footer-bottom__links a:focus-visible {
  color: #fff;
}

.footer-bottom__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(218, 228, 255, 0.72);
}

@media (max-width: 1199.98px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

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

  .footer-newsletter__form {
    flex-direction: column;
  }

  .footer-newsletter__button {
    width: 100%;
  }

  .footer-support {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .footer-support__actions {
    width: 100%;
  }

  .footer-support__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Solution Showcase */
.solution-showcase {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--r-12);
  box-shadow: var(--shadow-lg);
}

.solution-image-wrapper {
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
  border-radius: var(--r-8);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.solution-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item .i {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary-900);
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .solution-showcase {
    grid-template-columns: 1fr 1.5fr;
    padding: 48px;
  }
}

/* Responsive */
@media (min-width:768px){
  .md\:hidden{display:none}
  .md\:px-24{padding-left:24px;padding-right:24px}
  .md\:block{display:block}
  .md\:inline-flex{display:inline-flex}
  .md\:flex{display:flex}
  .md\:h-72{height:72px}
  .md\:flex-row{flex-direction:row}
  .md\:items-center{align-items:center}
  .lg\:py-48{padding-top:48px;padding-bottom:48px}
  .lg\:mt-0{margin-top:0}
  .lg\:col-span-5{grid-column:span 5 / span 5}
  .lg\:col-span-7{grid-column:span 7 / span 7}
  .lg\:col-span-12{grid-column:span 12 / span 12}
  .items-stretch{align-items:stretch}
}

@media (min-width:768px) and (max-width:1023.98px){
  .pain-cards{grid-template-columns:repeat(2, 1fr)}
  .pain-solution-content{margin-bottom:1.5rem}
  .grid{gap:1.25rem}
}

@media (min-width:1024px){
  .products-grid{grid-template-columns:repeat(3, 1fr)}
  .testimonials{grid-template-columns:repeat(3, 1fr)}
  .articles{grid-template-columns:repeat(3, 1fr)}
  .steps{grid-template-columns:repeat(3, 1fr)}
  .pain-cards{grid-template-columns:repeat(3, 1fr)}
  .benefits-strip{grid-template-columns:repeat(4, 1fr)}
  .pain-solution-content{display:grid;grid-template-columns:2fr 1fr;gap:32px;align-items:start}
  .solution-section{margin-top:0}
}

@media (max-width:1200px){
  .nav-list-two-level{gap:32px}
  .navbar-two-level{gap:24px}
}

@media (max-width:1024px){
  .nav-list-two-level{gap:24px}
  .nav-link{font-size:14px}
  .top-bar{font-size:12px}
  .top-bar-right{gap:16px}
}

@media (max-width:900px){
  .desktop-nav{display:none !important}
  .navbar-two-level{gap:16px}
  .top-bar{display:none !important}
}

@media (max-width:767.98px){
  .mobile-menu-btn{display:inline-flex !important}
  .navbar-two-level{min-height:3.5rem;gap:0.75rem}
  .navbar .container{padding:0 1rem}
  .only-sm{display:inline-flex}
  .grid{row-gap:1rem}
  .h-72{height:4rem}
  .container{padding-left:1rem;padding-right:1rem}
  .px-24{padding-left:1rem;padding-right:1rem}
  .py-80{padding-top:2.5rem;padding-bottom:2.5rem}
  .py-48{padding-top:2rem;padding-bottom:2rem}
  .col-span-12{grid-column:1 / -1}
  .col-span-6{grid-column:1 / -1}
  .col-span-7{grid-column:1 / -1}
  .col-span-5{grid-column:1 / -1}
  .col-span-3{grid-column:1 / -1}
  .products-grid,.steps,.testimonials,.articles{grid-template-columns:1fr}
  .pain-cards{grid-template-columns:1fr}
  .benefits-strip{grid-template-columns:1fr}
  .trust-inline{grid-template-columns:repeat(2, 1fr)}
  .footer-grid{grid-template-columns:1fr}
  .footer-legal{flex-direction:column;text-align:center}
  .newsletter{flex-direction:column}
  .newsletter .input{min-width:100%}
  .order-grid .col-span-6{grid-column:1 / -1}
  .trustbar-card{flex-direction:column;text-align:center;gap:1rem}
  .trustbar-item{justify-content:center;min-width:auto}
  .hero{min-height:auto;padding:3.75rem 0;background:linear-gradient(135deg, #667eea 0%, #764ba2 100%)}
  .hero-images{min-height:21.875rem}
  .hero-main-product{padding:1.875rem;margin:0 auto}
  .hero-main-product img{width:13.75rem !important;height:13.75rem !important;object-fit:cover !important}
  .hero-secondary-product{display:none}
  .hero .h1{font-size:1.75rem;line-height:1.2}
  .hero .lead{font-size:1.125rem}
  .trustbar-card{padding:1.25rem;gap:1.25rem}
  .trustbar-item{min-width:auto;flex-direction:column;text-align:center;gap:0.5rem}
  .product-image{height:12.5rem}
  .section-padding{padding:2rem 0}
  .section-padding-large{padding:2.5rem 0}
  .navbar__nav {
    display: none;
  }
}

@media (max-width:480px){
  .trust-inline{grid-template-columns:1fr}
  .ti{justify-content:flex-start}
  .step{text-align:left}
  .step .num{margin:0 0 16px 0}
}


.trustbar-item .text-neutral-500 {
  color: var(--secondary-100);
}

.trustbar-item [class^="icon-"] {
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   NAVIGATION COMPONENTS - BEM Architecture
   ========================================================================== */

/* Top Bar Block */
.top-bar {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-100);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}

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

.top-bar__left {
  color: var(--neutral-700);
}

.top-bar__right {
  display: flex;
  gap: 1.5rem;
}

.top-bar__phone,
.top-bar__email {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--neutral-800);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar__phone:hover,
.top-bar__email:hover {
  color: var(--primary-500);
}

/* Navbar styles moved to 10-navbar-modern.css */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(0);
}

/* Button Modifiers */
.btn--primary {
  background: var(--primary-500);
  color: #fff;
  border-color: var(--primary-500);
}

.btn--primary:hover {
  background: #CF5F29;
  border-color: #CF5F29;
  box-shadow: 0 4px 12px rgba(231, 106, 46, 0.3);
}
.btn--primary:focus {
  outline: 2px solid var(--secondary-100);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(231, 106, 46, .2);
}

.btn--outline {
  background: transparent;
  color: var(--secondary-500);
  border: 1.5px solid var(--secondary-500);
}

.btn--outline:hover {
  background: var(--secondary-50);
  color: var(--secondary-600);
}

.btn--outline:active {
  background: var(--secondary-100);
}

.btn--secondary {
  background: var(--secondary-500);
  color: #fff;
  border-color: var(--secondary-500);
}

.btn--secondary:hover {
  background: #233F84;
  border-color: #233F84;
  box-shadow: 0 4px 12px rgba(40, 75, 156, .3);
}
/* Button Size Modifiers */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 2.25rem;
  border-radius: 0.375rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: 3.25rem;
  border-radius: 0.625rem;
}
/* Icon Button Element */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-100);
  background: #fff;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: var(--neutral-50);
  border-color: var(--neutral-200);
}

.btn-icon:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* Размеры иконок для разных контекстов */
/* Маленькие иконки для top bar */
.top-bar [class^="icon-"], .top-bar [class*=" icon-"]{width:16px;height:16px}

/* Средние иконки для списков */
ul [class^="icon-"], ul [class*=" icon-"]{width:20px;height:20px}

/* Большие иконки для trustbar и benefits */
.trustbar [class^="icon-"], .trustbar [class*=" icon-"],
.benefit [class^="icon-"], .benefit [class*=" icon-"],
.pain-card [class^="icon-"], .pain-card [class*=" icon-"]{width:28px;height:28px}

/* Очень большие иконки */
.ti [class^="icon-"], .ti [class*=" icon-"]{width:32px;height:32px}

/* Beautiful Logo Styling */

/* Image placeholders */
.img-placeholder{background:linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-50) 100%);display:flex;align-items:center;justify-content:center;color:var(--neutral-500);font-size:14px;font-weight:500;border-radius:8px;position:relative;overflow:hidden}
.img-placeholder::before{content:'📷';font-size:2em;opacity:0.5}
.img-placeholder.product{background:linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);border:2px dashed var(--neutral-200)}
.img-placeholder.product::before{content:'💊';font-size:3em}
.img-placeholder.avatar{background:linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);border-radius:50%}
.img-placeholder.avatar::before{content:'👤';color:var(--secondary-500)}
.img-placeholder.article{background:linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%)}
.img-placeholder.article::before{content:'📄';font-size:2em}

/* ==========================================================================
   OFFCANVAS COMPONENT - Mobile Menu
   ========================================================================== */

/* Offcanvas Mobile Menu */
/* Все стили для offcanvas и мобильного меню перенесены в 10-navbar-modern.css */

/* No scroll class for body when offcanvas is open */
.no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   HERO COMPONENT - Main landing section
   ========================================================================== */

/* Hero Block */
.hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 750px;
  padding: 6.25rem 0;
  overflow: hidden;
}

/* Hero Decorative Elements */
.hero__decoration--primary {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 18.75rem;
  height: 18.75rem;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: heroPulse 8s ease-in-out infinite;
}

.hero__decoration--secondary {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 12.5rem;
  height: 12.5rem;
  background: linear-gradient(45deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  border-radius: 2.5rem;
  z-index: 1;
  animation: heroRotate 15s linear infinite;
  transform: rotate(45deg);
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 0.3; }
}

@keyframes heroRotate {
  0% { transform: rotate(45deg); }
  100% { transform: rotate(405deg); }
}

.hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="100" fill="url(%23a)"/><circle cx="300" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
  background-size:cover;
  z-index:1;
  animation:heroFloat 20s ease-in-out infinite;
}

.hero::after{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:800px;
  height:800px;
  background:radial-gradient(circle, rgba(231,106,46,0.15) 0%, rgba(231,106,46,0.05) 40%, transparent 70%);
  border-radius:50%;
  z-index:1;
  animation:heroPulse 8s ease-in-out infinite;
}

@keyframes heroFloat{
  0%, 100% { transform:translateY(0px) rotate(0deg); }
  33% { transform:translateY(-20px) rotate(1deg); }
  66% { transform:translateY(10px) rotate(-0.5deg); }
}

@keyframes heroPulse{
  0%, 100% { transform:scale(1) rotate(0deg); opacity:0.15; }
  50% { transform:scale(1.1) rotate(5deg); opacity:0.25; }
}

/* Hero Content Elements */
.hero__content {
  position: relative;
  z-index: 3;
}

.hero__shape {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(40,75,156,0.12) 0%, rgba(40,75,156,0.06) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: heroRotate 30s linear infinite;
}

@keyframes heroRotate{
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}

/* Стили текста в Hero */
/* Hero Text Elements */
.hero__title {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 800;
  margin-bottom: 0;
}

.hero__lead {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero__overline {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero__list {
  margin-top: 1rem;
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.hero__list-item-text {
  font-weight: 500;
}

/* Hero Actions */
.hero__actions {
  /* Inherits flex properties from parent */
}

.hero__info {
  /* Inherits flex properties from parent */
}

.hero .text-14{
  color:#ffffff;
  text-shadow:0 1px 2px rgba(0,0,0,0.25);
}
/* Обновленные стили для Hero */
.drop-shadow-bottle{
  filter:drop-shadow(0 25px 60px rgba(0,0,0,.4));
}

.badge{
  background:linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color:#fff;
  border-radius:30px;
  padding:0.625rem 1.25rem;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  position:absolute;
  top:-0.9375rem;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  box-shadow:0 8px 25px rgba(255,107,107,.4), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow:0 1px 2px rgba(0,0,0,0.2);
  animation:badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse{
  0%, 100% { transform:translateX(-50%) scale(1); }
  50% { transform:translateX(-50%) scale(1.05); }
}

.trustbar{
  margin-top:3.75rem;
}

.trustbar-card{
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:1.25rem;
  padding:1.5625rem 1.875rem;
  backdrop-filter:blur(15px);
  box-shadow:0 15px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
  display:flex;
  gap:1.875rem;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.trustbar-item{
  display:flex;
  align-items:center;
  gap:0.75rem;
  min-width:13.75rem;
  flex:1 1 13.75rem;
  justify-content:center;
  text-align:center;
  padding:0.625rem 0.9375rem;
  border-radius:0.75rem;
  transition:all 0.3s ease;
  color:rgba(255,255,255,0.95);
  background:rgba(255,255,255,0.08);
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.trustbar-item:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.15);
  color:#ffffff;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.trustbar-item .font-600{
  color:#ffffff;
  text-shadow:0 1px 2px rgba(0,0,0,0.2);
  margin-bottom: 8px;
}

.trustbar-item .text-neutral-500 {
  color: var(--secondary-100);
}

.trustbar-item [class^="icon-"] {
  filter: brightness(0) invert(1);
}

/* Кнопки в Hero секции */
/* Hero Buttons */
.hero__btn--primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  border: none;
  box-shadow: 0 8px 25px rgba(255,107,107,.4), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  font-weight: 700;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__btn--primary:hover {
  background: linear-gradient(135deg, #FF5252 0%, #FF7043 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,107,107,.6), inset 0 1px 0 rgba(255,255,255,0.4);
}

.hero__btn--outline {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__btn--outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Hero phone contact */
.hero-phone{display:flex;flex-direction:column;align-items:center;text-decoration:none;color:var(--neutral-900);transition:all 0.2s ease;padding:8px 12px;border-radius:8px;border:1px solid var(--neutral-200);background:#fff}
.hero-phone:hover{border-color:var(--secondary-500);color:var(--secondary-900);transform:translateY(-1px)}
.hero-phone .phone-number{font-size:16px;font-weight:600;color:var(--secondary-900)}
.hero-phone .phone-hours{font-size:12px;color:var(--neutral-500);margin-top:2px}
/* Hero Images */
.hero__images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 37.5rem;
  z-index: 4;
}

/* Декоративные элементы для заполнения пространства */
.hero__images::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  right: -1.875rem;
  width: 12.5rem;
  height: 12.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 50%;
  z-index: 1;
  animation: heroFloatSlow 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-images::after {
  content: '';
  position: absolute;
  bottom: -2.5rem;
  left: -3.125rem;
  width: 9.375rem;
  height: 9.375rem;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border-radius: 1.875rem;
  z-index: 1;
  animation: heroFloatSlow 10s ease-in-out infinite reverse;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transform: rotate(25deg);
}

@keyframes heroFloatSlow{
  0%, 100% { transform:translateY(0px) rotate(0deg); }
  50% { transform:translateY(-20px) rotate(5deg); }
}

@keyframes heroProductFloat{
  0%, 100% { transform:translateY(0px) rotateX(0deg); }
  50% { transform:translateY(-15px) rotateX(2deg); }
}

.hero__product--main {
  position: relative;
  z-index: 5;
  background: linear-gradient(145deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%);
  border-radius: 2.1875rem;
  padding: 3.125rem;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: heroProductFloat 6s ease-in-out infinite;
  transform: scale(1.1) translateX(-1.25rem);
}

.hero__product--main:hover{
  transform:translateY(-20px) scale(1.05);
  box-shadow:0 40px 100px rgba(0,0,0,0.4), 0 15px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.5);
}

.hero__product--secondary {
  position: absolute;
  bottom: -0.625rem;
  right: 2.5rem;
  z-index: 6;
  background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 1.5625rem;
  padding: 1.875rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: scale(0.9) rotate(-8deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: heroProductFloat 8s ease-in-out infinite reverse;
}

.hero-secondary-product:hover{
  transform:scale(0.95) rotate(-5deg) translateY(-10px);
  box-shadow:0 35px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}

.hero-img-1, .hero-img-2{
  transform:none;
  margin:0 auto;
  display:block;
  filter:drop-shadow(0 10px 30px rgba(0,0,0,0.2));
  transition:filter 0.3s ease;
}

.hero__product--main:hover .hero__img,
.hero__product--secondary:hover .hero__img{
  filter:drop-shadow(0 15px 40px rgba(0,0,0,0.3));
}

/* Pain Solution */
.feature-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--r-12);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-normal);
}

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

.pain-solution-content{width:100%;margin-bottom:32px}
.solution-section{width:100%}
.pain-cards{display:grid;grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));gap:20px;margin-top:24px}
.pain-card{display:flex;gap:0.75rem;align-items:flex-start;background:#fff;border:1px solid var(--neutral-100);border-radius:0.75rem;padding:1.25rem;box-shadow:0 8px 20px rgba(17,24,39,.06);transition:transform 0.2s ease, box-shadow 0.2s ease;height:100%}
.pain-card:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(17,24,39,.1)}
.pain-card .title{font-weight:600;color:var(--secondary-900);margin-bottom:8px}
.pain-card .text{color:var(--neutral-500);line-height:1.5}
.solution-panel{background:#fff;border:1px solid var(--neutral-100);border-radius:12px;padding:24px;box-shadow:0 8px 20px rgba(17,24,39,.06);display:grid;gap:16px;height:fit-content}
.solution-panel .title{font-weight:600;color:var(--secondary-900);font-size:18px}
.solution-panel .list{padding-left:20px;margin:0;color:var(--neutral-900)}
.solution-panel .list li{margin:8px 0;line-height:1.5}

/* Benefits strip - Glassmorphism Style */
.benefits {
  background: linear-gradient(135deg, #F5F1E8 0%, #FAF8F3 100%);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(231, 106, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 32px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(231, 106, 46, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(231, 106, 46, 0.2);
  box-shadow: 0 4px 16px rgba(231, 106, 46, 0.15);
  transition: all 0.3s ease;
}

.benefit:hover .benefit__icon-wrapper {
  background: rgba(231, 106, 46, 0.15);
  border-color: rgba(231, 106, 46, 0.3);
  box-shadow: 0 8px 24px rgba(231, 106, 46, 0.25);
}

.benefit__icon-wrapper .icon--lg {
  width: 32px;
  height: 32px;
  color: var(--primary-500);
  filter: drop-shadow(0 2px 4px rgba(231, 106, 46, 0.2));
}

.benefit__content {
  flex: 1;
  text-align: center;
}

.benefit-title,
.benefit__title {
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.3;
}

.benefit-text,
.benefit__text {
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive adjustments for benefits */
@media (max-width: 767px) {
  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 20px;
  }
}

/* Utility classes for benefits section */
.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-32 {
  margin-bottom: 2rem;
}

.mb-8 {
  margin-bottom: 0.5rem;
}

/* Pro Form */
.pro-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--neutral-100);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.pro-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.form-field-group {
  display: flex;
  flex-direction: column;
}

.form-label-pro {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-900);
  margin-bottom: 0.5rem;
  display: block;
}

.form-input-pro {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-200, #E5E7EB);
  background-color: var(--neutral-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-pro:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
  border-color: var(--primary-500);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(231, 106, 46, 0.15);
}

.form-input-pro::placeholder {
  color: var(--neutral-400, #9CA3AF);
}

select.form-input-pro {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236B7280%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.65em auto;
  padding-right: 2.5rem;
}

@media (max-width: 767.98px) {
  .pro-form-grid .col-span-6 {
    grid-column: span 12 / span 12;
  }
  .pro-form-card {
    padding: 1.5rem;
  }
}

/* Pro Form Enhancements */
.fieldset-group {
  border: 1px solid var(--neutral-100);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1rem;
}

.fieldset-legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-500);
  padding: 0 0.5rem;
  margin-left: 1rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-input-pro.with-icon {
  padding-left: 40px;
}

.form-input-pro:focus + .input-icon, .input-wrapper:focus-within .input-icon {
  color: var(--primary-500);
}

#order_form {
  background-color: var(--neutral-100);
}

.pro-form-card {
  box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
  background: linear-gradient(140deg, #0b163a 0%, #132a58 55%, #071a3f 100%);
  color: #f0f4ff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(114, 147, 255, 0.25), transparent 52%),
              radial-gradient(circle at bottom left, rgba(32, 201, 255, 0.14), transparent 55%);
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(4.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(200px, 1fr) minmax(220px, 1fr) minmax(260px, 1.1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer .logo-steko,
.footer .logo-steko .logo-ltd {
  color: #fff;
}

.footer .logo-steko .logo-ltd::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
}

.footer .logo-steko:hover {
  color: #fdd9c2;
}

.footer .logo-steko:hover .logo-ltd {
  color: #dbe6ff;
}

.footer-tagline {
  margin: 0;
  color: rgba(240, 244, 255, 0.82);
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-badges li {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 34, 78, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.78);
}

.footer-brand__cta {
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  background: rgba(15, 33, 74, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.65rem;
}

.footer-brand__cta-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(235, 239, 255, 0.8);
  line-height: 1.55;
}

.footer-brand__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-brand__cta-link:hover,
.footer-brand__cta-link:focus-visible {
  color: #fdd9c2;
}

.footer-nav {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}

.footer-column--contact {
  gap: 1.5rem;
}

.footer-column--newsletter {
  align-self: stretch;
}

.footer-heading {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(218, 228, 255, 0.86);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(218, 228, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact__link:hover,
.footer-contact__link:focus-visible {
  color: #fff;
}

.footer-contact__link [class^="icon-"] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(218, 228, 255, 0.9);
}

.footer-contact__item [class^="icon-"] {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact__item--hours {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  color: rgba(218, 228, 255, 0.85);
}

.footer-contact__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-socials__link {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 33, 74, 0.65);
  color: rgba(218, 228, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials__link:hover,
.footer-socials__link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer-socials__icon {
  width: 22px;
  height: 22px;
  color: inherit;
}

.footer-socials__icon * {
  transition: stroke 0.2s ease, fill 0.2s ease;
}

.footer-newsletter {
  padding: 1.4rem;
  border-radius: 1.1rem;
  background: rgba(15, 33, 74, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 0.75rem;
}

.footer-newsletter__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(235, 239, 255, 0.78);
  line-height: 1.55;
}

.footer-newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-newsletter__input {
  flex: 1 1 200px;
  min-width: 220px;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--neutral-900);
}

.footer-newsletter__input::placeholder {
  color: rgba(31, 52, 92, 0.55);
}

.footer-newsletter__input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.footer-newsletter__button {
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
}

.footer-newsletter__legal {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(218, 228, 255, 0.7);
  line-height: 1.5;
}

.footer-support {
  margin-top: 2.75rem;
  padding: 1.6rem 2rem;
  border-radius: 1.25rem;
  background: rgba(14, 37, 82, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(5, 17, 45, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.footer-support__text {
  margin: 0;
  max-width: 620px;
  color: rgba(235, 239, 255, 0.82);
  line-height: 1.6;
}

.footer-support__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-support__phone {
  color: #f0f4ff;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-support__phone:hover,
.footer-support__phone:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.75rem;
  margin-top: 2.5rem;
}

.footer-bottom__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom__links a {
  color: rgba(218, 228, 255, 0.8);
  text-decoration: none;
}

.footer-bottom__links a:hover,
.footer-bottom__links a:focus-visible {
  color: #fff;
}

.footer-bottom__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(218, 228, 255, 0.72);
}

@media (max-width: 1199.98px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

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

  .footer-newsletter__form {
    flex-direction: column;
  }

  .footer-newsletter__button {
    width: 100%;
  }

  .footer-support {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .footer-support__actions {
    width: 100%;
  }

  .footer-support__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Solution Showcase */
.solution-showcase {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--r-12);
  box-shadow: var(--shadow-lg);
}

.solution-image-wrapper {
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
  border-radius: var(--r-8);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.solution-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item .i {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary-900);
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .solution-showcase {
    grid-template-columns: 1fr 1.5fr;
    padding: 48px;
  }
}

/* Responsive */
@media (min-width:768px){
  .md\:hidden{display:none}
  .md\:px-24{padding-left:24px;padding-right:24px}
  .md\:block{display:block}
  .md\:inline-flex{display:inline-flex}
  .md\:flex{display:flex}
  .md\:h-72{height:72px}
  .md\:flex-row{flex-direction:row}
  .md\:items-center{align-items:center}
  .lg\:py-48{padding-top:48px;padding-bottom:48px}
  .lg\:mt-0{margin-top:0}
  .lg\:col-span-5{grid-column:span 5 / span 5}
  .lg\:col-span-7{grid-column:span 7 / span 7}
  .lg\:col-span-12{grid-column:span 12 / span 12}
  .items-stretch{align-items:stretch}
}

@media (min-width:768px) and (max-width:1023.98px){
  .pain-cards{grid-template-columns:repeat(2, 1fr)}
  .pain-solution-content{margin-bottom:1.5rem}
  .grid{gap:1.25rem}
}

@media (min-width:1024px){
  .products-grid{grid-template-columns:repeat(3, 1fr)}
  .testimonials{grid-template-columns:repeat(3, 1fr)}
  .articles{grid-template-columns:repeat(3, 1fr)}
  .steps{grid-template-columns:repeat(3, 1fr)}
  .pain-cards{grid-template-columns:repeat(3, 1fr)}
  .benefits-strip{grid-template-columns:repeat(4, 1fr)}
  .pain-solution-content{display:grid;grid-template-columns:2fr 1fr;gap:32px;align-items:start}
  .solution-section{margin-top:0}
}

@media (max-width:1200px){
  .nav-list-two-level{gap:32px}
  .navbar-two-level{gap:24px}
}

@media (max-width:1024px){
  .nav-list-two-level{gap:24px}
  .nav-link{font-size:14px}
  .top-bar{font-size:12px}
  .top-bar-right{gap:16px}
}

@media (max-width:900px){
  .desktop-nav{display:none !important}
  .navbar-two-level{gap:16px}
  .top-bar{display:none !important}
}

@media (max-width:767.98px){
  .mobile-menu-btn{display:inline-flex !important}
  .navbar-two-level{min-height:3.5rem;gap:0.75rem}
  .navbar .container{padding:0 1rem}
  .only-sm{display:inline-flex}
  .grid{row-gap:1rem}
  .h-72{height:4rem}
  .container{padding-left:1rem;padding-right:1rem}
  .px-24{padding-left:1rem;padding-right:1rem}
  .py-80{padding-top:2.5rem;padding-bottom:2.5rem}
  .py-48{padding-top:2rem;padding-bottom:2rem}
  .col-span-12{grid-column:1 / -1}
  .col-span-6{grid-column:1 / -1}
  .col-span-7{grid-column:1 / -1}
  .col-span-5{grid-column:1 / -1}
  .col-span-3{grid-column:1 / -1}
  .products-grid,.steps,.testimonials,.articles{grid-template-columns:1fr}
  .pain-cards{grid-template-columns:1fr}
  .benefits-strip{grid-template-columns:1fr}
  .trust-inline{grid-template-columns:repeat(2, 1fr)}
  .footer-grid{grid-template-columns:1fr}
  .footer-legal{flex-direction:column;text-align:center}
  .newsletter{flex-direction:column}
  .newsletter .input{min-width:100%}
  .order-grid .col-span-6{grid-column:1 / -1}
  .trustbar-card{flex-direction:column;text-align:center;gap:1rem}
  .trustbar-item{justify-content:center;min-width:auto}
  .hero{min-height:auto;padding:3.75rem 0;background:linear-gradient(135deg, #667eea 0%, #764ba2 100%)}
  .hero-images{min-height:21.875rem}
  .hero-main-product{padding:1.875rem;margin:0 auto}
  .hero-main-product img{width:13.75rem !important;height:13.75rem !important;object-fit:cover !important}
  .hero-secondary-product{display:none}
  .hero .h1{font-size:1.75rem;line-height:1.2}
  .hero .lead{font-size:1.125rem}
  .trustbar-card{padding:1.25rem;gap:1.25rem}
  .trustbar-item{min-width:auto;flex-direction:column;text-align:center;gap:0.5rem}
  .product-image{height:12.5rem}
  .section-padding{padding:2rem 0}
  .section-padding-large{padding:2.5rem 0}
  .navbar__nav {
    display: none;
  }
}

@media (max-width:480px){
  .trust-inline{grid-template-columns:1fr}
  .ti{justify-content:flex-start}
  .step{text-align:left}
  .step .num{margin:0 0 16px 0}
}


.trustbar-item .text-neutral-500 {
  color: var(--primary-50);
}

.trustbar-item [class^="icon-"] {
  filter: brightness(0) invert(1);
}
/* Pain solution timeline */
.pain-solution__layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.pain-solution__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(40, 75, 156, 0.18);
  background: linear-gradient(165deg, rgba(40, 75, 156, 0.12) 0%, rgba(118, 75, 162, 0.08) 100%);
  box-shadow: 0 20px 40px -18px rgba(17, 24, 39, 0.25);
}

.pain-solution__visual-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--neutral-100);
  isolation: isolate;
}

.pain-solution__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--t-normal);
}

.pain-solution__photo.is-active {
  opacity: 1;
}

.pain-solution__halo {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 50% 30%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 75%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.pain-solution__note {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  color: var(--secondary-900);
  box-shadow: 0 12px 30px -20px rgba(17, 24, 39, 0.4);
}

.pain-solution__note-title {
  font-weight: 600;
  line-height: 1.5;
}

.pain-solution__note-text {
  margin-top: 0.75rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.pain-solution__timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pain-step {
  position: relative;
  padding-left: 2.75rem;
}
.pain-step + .pain-step::before {
  display: none !important;
  content: none !important;
}


.pain-step__button {
  width: 100%;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 1.75rem 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 1.25rem;
  text-align: left;
  transition: border-color var(--t-normal), box-shadow var(--t-normal), transform var(--t-normal);
  cursor: pointer;
}

.pain-step__button:hover,
.pain-step__button:focus-visible {
  border-color: rgba(40, 75, 156, 0.45);
  box-shadow: 0 14px 36px -18px rgba(40, 75, 156, 0.45);
  transform: translateY(-2px);
  outline: none;
}

.pain-step.is-active .pain-step__button {
  border-color: rgba(40, 75, 156, 0.6);
  box-shadow: 0 18px 40px -16px rgba(40, 75, 156, 0.45);
}

.pain-step__badge {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #284B9C 0%, #667EEA 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-content: center;
  box-shadow: 0 8px 16px -8px rgba(40, 75, 156, 0.45);
}

.pain-step.is-active .pain-step__badge {
  background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
}

.pain-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--secondary-900);
}

.pain-step__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.pain-step__text {
  margin: 0;
  color: var(--neutral-600);
  line-height: 1.6;
}

.pain-step__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--neutral-600);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pain-step__list li::marker {
  color: var(--primary-500);
}

.pain-step__product {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
}

.pain-step__product-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.pain-step__product-name {
  font-weight: 600;
  color: var(--primary-600);
}

.pain-step__chevron {
  margin-left: auto;
  margin-top: 0.35rem;
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid var(--primary-500);
  border-bottom: 2px solid var(--primary-500);
  transform: rotate(-45deg);
  transition: transform var(--t-normal);
}

.pain-step.is-active .pain-step__chevron {
  transform: translateX(4px) rotate(-45deg);
}

@media (max-width: 1199.98px) {
  .pain-solution__layout {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 1023.98px) {
  .pain-solution__layout {
    grid-template-columns: 1fr;
  }

  .pain-solution__visual {
    order: 2;
  }

  .pain-solution__timeline {
    order: 1;
  }
}

@media (max-width: 639.98px) {
  .pain-solution__visual {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .pain-solution__visual-frame {
    aspect-ratio: 3 / 4;
  }

  .pain-step {
    padding-left: 0;
  }

  .pain-step__button {
    flex-direction: column;
    gap: 1rem;
  }

  .pain-step__chevron {
    align-self: flex-start;
    transform: rotate(45deg);
  }

  .pain-step.is-active .pain-step__chevron {
    transform: translateY(-2px) rotate(45deg);
  }
}
/* Pain solution timeline */
.pain-solution__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(32px, 64px) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: stretch;
}

.pain-solution__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(40, 75, 156, 0.18);
  background: linear-gradient(165deg, rgba(40, 75, 156, 0.12) 0%, rgba(118, 75, 162, 0.08) 100%);
  box-shadow: 0 20px 40px -18px rgba(17, 24, 39, 0.25);
  height: 100%;
}

.pain-solution__visual-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--neutral-100);
  isolation: isolate;
}

.pain-solution__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--t-normal);
}

.pain-solution__photo.is-active {
  opacity: 1;
}

.pain-solution__halo {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 50% 30%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 75%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.pain-solution__note {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  color: var(--secondary-900);
  box-shadow: 0 12px 30px -20px rgba(17, 24, 39, 0.4);
}

.pain-solution__note-title {
  font-weight: 600;
  line-height: 1.5;
}

.pain-solution__note-text {
  margin-top: 0.75rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.pain-solution__divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-solution__divider::before {
  content: '';
  width: 2px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(40, 75, 156, 0) 0%, rgba(40, 75, 156, 0.32) 15%, rgba(118, 75, 162, 0.42) 50%, rgba(40, 75, 156, 0.32) 85%, rgba(118, 75, 162, 0) 100%);
  box-shadow: 0 0 24px rgba(40, 75, 156, 0.15);
}

.pain-solution__timeline {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-self: stretch;
}

.pain-step {
  position: relative;
  height: 100%;
}

.pain-step__button {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 1.75rem 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 1.25rem;
  text-align: left;
  transition: border-color var(--t-normal), box-shadow var(--t-normal), transform var(--t-normal);
  cursor: pointer;
}

.pain-step__button:hover,
.pain-step__button:focus-visible {
  border-color: rgba(40, 75, 156, 0.45);
  box-shadow: 0 14px 36px -18px rgba(40, 75, 156, 0.45);
  transform: translateY(-2px);
  outline: none;
}

.pain-step.is-active .pain-step__button {
  border-color: rgba(40, 75, 156, 0.6);
  box-shadow: 0 18px 40px -16px rgba(40, 75, 156, 0.45);
}

.pain-step__badge {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #284B9C 0%, #667EEA 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-content: center;
  box-shadow: 0 8px 16px -8px rgba(40, 75, 156, 0.45);
}

.pain-step.is-active .pain-step__badge {
  background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
}

.pain-step__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--secondary-900);
  min-height: 100%;
}

.pain-step__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.pain-step__text {
  margin: 0;
  color: var(--neutral-600);
  line-height: 1.6;
}

.pain-step__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--neutral-600);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pain-step__list li::marker {
  color: var(--primary-500);
}

.pain-step__product {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
}

.pain-step__product-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.pain-step__product-name {
  font-weight: 600;
  color: var(--primary-600);
}

.pain-step__chevron {
  margin-left: auto;
  margin-top: 0.35rem;
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid var(--primary-500);
  border-bottom: 2px solid var(--primary-500);
  transform: rotate(-45deg);
  transition: transform var(--t-normal);
}

.pain-step.is-active .pain-step__chevron {
  transform: translateX(4px) rotate(-45deg);
}

@media (max-width: 1199.98px) {
  .pain-solution__layout {
    grid-template-columns: minmax(0, 360px) minmax(28px, 52px) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 1023.98px) {
  .pain-solution__layout {
    grid-template-columns: 1fr;
  }

  .pain-solution__divider {
    display: none;
  }

  .pain-solution__visual {
    order: 2;
  }

  .pain-solution__timeline {
    order: 1;
    grid-template-rows: none;
  }

  .pain-step__button {
    padding: 1.5rem;
  }
}

@media (max-width: 639.98px) {
  .pain-solution__visual {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .pain-solution__visual-frame {
    aspect-ratio: 3 / 4;
  }

  .pain-step__button {
    flex-direction: column;
    gap: 1rem;
  }

  .pain-step__chevron {
    align-self: flex-start;
    transform: rotate(45deg);
  }

  .pain-step.is-active .pain-step__chevron {
    transform: translateY(-2px) rotate(45deg);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.logo-steko {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--secondary-900);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.logo-steko .logo-main {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-steko .logo-ltd {
  position: relative;
  padding-left: 0.85rem;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--primary-400, #6f7ff0);
}

.logo-steko .logo-ltd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transform: translateY(-50%);
}

.logo-steko:hover {
  color: var(--primary-500);
  transform: translateY(-1px);
}

.logo-steko:hover .logo-ltd {
  color: var(--secondary-200, #dbe2ff);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-socials__link {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 33, 74, 0.65);
  color: rgba(218, 228, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials__link:hover,
.footer-socials__link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer-socials__icon {
  width: 22px;
  height: 22px;
  color: inherit;
}

.footer-socials__icon * {
  transition: stroke 0.2s ease, fill 0.2s ease;
}


/* ==========================================================================
   Product page layout
   ========================================================================== */
.product-page{
  background:var(--bg-secondary);
}
.product-breadcrumbs{
  background:var(--bg-surface);
  border-bottom:1px solid var(--neutral-100);
  padding:0.75rem 0;
}
.breadcrumbs{
  font-size:var(--fs-14);
  color:var(--neutral-500);
}
.breadcrumbs__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
}
.breadcrumbs__item{
  display:flex;
  align-items:center;
  gap:0.5rem;
  color:inherit;
}
.breadcrumbs__item::after{
  content:"/";
  color:var(--neutral-300, #D1D5DB);
}
.breadcrumbs__item:last-child::after{
  content:"";
}
.breadcrumbs__item:last-child{
  color:var(--neutral-900);
  font-weight:600;
}
.breadcrumbs__link{
  color:inherit;
  text-decoration:none;
  transition:color var(--t-fast);
}
.breadcrumbs__link:hover{
  color:var(--secondary-500);
}

.product-shell{
  padding:2.5rem 0 3.5rem;
}
.product-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,320px);
  gap:2rem;
  align-items:flex-start;
}
.product-grid__main{
  display:flex;
  flex-direction:column;
  gap:2rem;
}
.product-grid__sidebar{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  position:sticky;
  top:6.5rem;
}

.product-hero{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:2rem;
  background:var(--bg-surface);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:2rem;
  box-shadow:var(--shadow-md);
}
.product-hero__media{
  grid-column:span 5;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.product-hero__details{
  grid-column:span 7;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.product-gallery__stage{
  position:relative;
  background:var(--neutral-50);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:1.5rem;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-gallery__stage img{
  width:100%;
  max-height:500px;
  object-fit:contain;
}
.product-gallery__video-trigger{
  position:absolute;
  bottom:1rem;
  right:1rem;
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:0.5rem 1rem;
  border:none;
  border-radius:var(--r-8);
  background:rgba(var(--secondary-500-rgb),0.92);
  color:#fff;
  font-weight:600;
  font-size:var(--fs-14);
  cursor:pointer;
  transition:background var(--t-fast);
}
.product-gallery__video-trigger:hover{
  background:rgba(var(--secondary-500-rgb),1);
}
.product-gallery__caption{
  font-size:var(--fs-14);
  color:var(--neutral-500);
}
.product-gallery__thumbs{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(72px,1fr));
  gap:0.75rem;
}
.product-gallery__thumb{
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  background:var(--bg-surface);
  padding:0.5rem;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all var(--t-fast);
}
.product-gallery__thumb img{
  width:100%;
  height:64px;
  object-fit:cover;
  border-radius:var(--r-6);
}
.product-gallery__thumb:hover{
  border-color:var(--secondary-500);
}
.product-gallery__thumb.is-active{
  border-color:var(--secondary-500);
  box-shadow:0 0 0 2px rgba(40,75,156,0.16);
}
.product-gallery__thumb-video{
  font-size:var(--fs-14);
  font-weight:600;
  color:var(--secondary-500);
}

.product-hero__label{
  font-size:var(--fs-12);
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--secondary-500);
}
.product-hero__title{
  margin:0.3rem 0 0;
  font-size:var(--fs-36);
  line-height:1.15;
}
.product-hero__lead{
  margin:0.75rem 0 0;
  font-size:var(--fs-16);
  color:var(--neutral-500);
}
.product-hero__rating{
  margin-top:0.75rem;
  display:flex;
  align-items:center;
  gap:0.75rem;
  font-size:var(--fs-14);
  color:var(--neutral-500);
}
.product-hero__stars{
  font-size:1.1rem;
  letter-spacing:0.1em;
  color:#F59E0B;
}
.product-hero__price{
  display:flex;
  align-items:baseline;
  gap:1.5rem;
}
.product-hero__price-current{
  font-size:var(--fs-30);
  font-weight:700;
  color:var(--primary-500);
}
.product-hero__price-note{
  font-size:var(--fs-14);
  color:var(--neutral-500);
}
.product-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
}
.btn--ghost{
  border:1px solid transparent;
  background:transparent;
  color:var(--secondary-500);
  font-weight:600;
  padding:0.75rem 1.5rem;
  border-radius:var(--r-8);
  transition:all var(--t-fast);
}
.btn--ghost:hover,
.btn--ghost:focus{
  border-color:rgba(40,75,156,0.3);
  background:rgba(40,75,156,0.1);
}
.product-hero__benefits{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:0.75rem;
}
.product-hero__benefits li{
  display:flex;
  gap:0.75rem;
  font-size:var(--fs-14);
  color:var(--neutral-700,#374151);
}
.product-hero__benefits .icon-check{
  color:var(--secondary-500);
}
.product-hero__meta{
  display:grid;
  gap:1rem;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
}
.product-meta{
  display:flex;
  flex-direction:column;
  gap:0.25rem;
}
.product-meta__label{
  font-size:var(--fs-12);
  text-transform:uppercase;
  letter-spacing:0.05em;
  color:var(--neutral-500);
}
.product-meta__value{
  font-size:var(--fs-14);
}

.product-panel{
  background:var(--bg-surface);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:2rem;
  box-shadow:var(--shadow-sm);
}
.product-panel__title{
  margin:0;
  font-size:var(--fs-24);
}
.product-panel__subtitle{
  margin:0.5rem 0 1.5rem;
  font-size:var(--fs-16);
  color:var(--neutral-500);
}

.product-insights__grid{
  display:grid;
  gap:1.5rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.product-insights__item{
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}
.product-insights__item h3{
  margin:0;
  font-size:var(--fs-18);
}
.product-insights__item p{
  margin:0;
  color:var(--neutral-500);
}

.product-tabs{
  background:var(--bg-surface);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:1.5rem;
  box-shadow:var(--shadow-sm);
}
.product-tabs__nav{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  border-bottom:1px solid var(--neutral-100);
  padding-bottom:0.75rem;
  margin-bottom:1.5rem;
}
.product-tabs__btn{
  background:transparent;
  border:1px solid transparent;
  border-radius:var(--r-8);
  padding:0.5rem 1rem;
  font-size:var(--fs-14);
  font-weight:600;
  color:var(--neutral-500);
  cursor:pointer;
  transition:all var(--t-fast);
}
.product-tabs__btn.is-active{
  color:var(--secondary-500);
  border-color:rgba(40,75,156,0.2);
  background:rgba(40,75,156,0.08);
}
.product-tabs__btn:hover{
  color:var(--secondary-500);
}
.product-tabs__pane{
  display:none;
  line-height:var(--lh-relaxed);
  font-size:var(--fs-16);
  color:var(--neutral-700,#374151);
}
.product-tabs__pane.is-active{
  display:block;
}
.product-tabs__pane ul,
.product-tabs__pane ol{
  margin:0.75rem 0 0;
  padding-left:1.25rem;
}
.product-tabs__pane li{
  margin-bottom:0.5rem;
}
.product-tabs__grid{
  display:grid;
  gap:1.5rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.product-feature-card{
  background:var(--neutral-50);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  padding:1.25rem;
}
.product-feature-card h4{
  margin:0 0 0.5rem;
  font-size:var(--fs-16);
}
.product-feature-card ul{
  margin:0;
  padding-left:1.1rem;
}
.product-feature-card li{
  margin-bottom:0.4rem;
}

.product-metrics__grid{
  display:grid;
  gap:1.5rem;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  text-align:center;
}
.product-metric{
  background:var(--neutral-50);
  border-radius:var(--r-12);
  padding:1.5rem;
  border:1px solid var(--neutral-100);
  display:flex;
  flex-direction:column;
  gap:0.5rem;
  align-items:center;
}
.product-metric__value{
  font-size:var(--fs-30);
  font-weight:700;
  color:var(--secondary-500);
}
.product-metric__label{
  font-size:var(--fs-14);
  color:var(--neutral-500);
}

.product-proof__grid{
  display:grid;
  gap:1.5rem;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.testimonial-card{
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  padding:1.5rem;
  background:var(--bg-surface);
  box-shadow:var(--shadow-sm);
}
.testimonial-card blockquote{
  margin:0;
  font-size:var(--fs-16);
  color:var(--neutral-700,#374151);
}
.testimonial-card footer{
  margin-top:1rem;
  font-size:var(--fs-14);
  color:var(--neutral-500);
}

.logistics-grid{
  display:grid;
  gap:1.5rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.logistics-card{
  background:var(--neutral-50);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  padding:1.25rem;
}
.logistics-card h4{
  margin:0 0 0.5rem;
  font-size:var(--fs-16);
}
.logistics-card ul{
  margin:0;
  padding-left:1.2rem;
  color:var(--neutral-500);
}
.logistics-card li{
  margin-bottom:0.4rem;
}

.product-comparison__wrapper{
  overflow-x:auto;
}
.product-comparison__table{
  width:100%;
  border-collapse:collapse;
  font-size:var(--fs-14);
}
.product-comparison__table thead{
  background:var(--neutral-50);
}
.product-comparison__table th,
.product-comparison__table td{
  border:1px solid var(--neutral-100);
  padding:0.75rem;
  vertical-align:top;
  text-align:left;
}
.product-comparison__table th{
  font-weight:600;
  font-size:var(--fs-16);
}
.product-comparison__table tbody tr:nth-child(even){
  background:rgba(40,75,156,0.03);
}


@media (max-width: 640px){
  .product-comparison__table,
  .product-comparison__table thead,
  .product-comparison__table tbody,
  .product-comparison__table tr,
  .product-comparison__table th,
  .product-comparison__table td{
    display:block;
    width:100%;
  }
  .product-comparison__table thead{
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
  }
  .product-comparison__table tr{
    border:1px solid var(--neutral-100);
    border-radius:var(--r-8);
    background:var(--bg-surface);
    padding:1rem 1.25rem;
    margin-bottom:1rem;
  }
  .product-comparison__table tr:last-child{
    margin-bottom:0;
  }
  .product-comparison__table th[scope="row"]{
    padding:0 0 0.75rem;
    font-size:var(--fs-14);
    font-weight:600;
    color:var(--neutral-900);
    border:none;
  }
  .product-comparison__table td{
    display:flex;
    gap:0.75rem;
    align-items:flex-start;
    padding:0.5rem 0;
    border:none;
  }
  .product-comparison__table td::before{
    content:attr(data-label);
    flex:0 0 auto;
    min-width:120px;
    font-weight:600;
    color:var(--neutral-500);
  }
  .product-comparison__table td + td{
    border-top:1px solid var(--neutral-100);
  }
}
.product-faq{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.faq-item{
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  background:var(--bg-surface);
}
.faq-item button{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:none;
  border:none;
  padding:1rem 1.25rem;
  font-size:var(--fs-16);
  font-weight:600;
  cursor:pointer;
}
.faq-item__icon{
  transition:transform var(--t-fast);
}
.faq-item.is-open .faq-item__icon{
  transform:rotate(45deg);
}
.faq-item__content{
  padding:0 1.25rem 1.25rem;
  color:var(--neutral-500);
  font-size:var(--fs-14);
}

.product-cta{
  padding:0;
}
.product-cta__inner{
  background:linear-gradient(135deg, rgba(var(--secondary-500-rgb),0.12), rgba(var(--primary-500-rgb),0.12));
  border:1px solid rgba(40,75,156,0.15);
  border-radius:var(--r-12);
  padding:2.5rem;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.product-cta h2{
  margin:0;
  font-size:var(--fs-24);
}
.product-cta p{
  margin:0;
  font-size:var(--fs-16);
  color:var(--neutral-500);
}
.product-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
}

.sidebar-card{
  background:var(--bg-surface);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:1.5rem;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.sidebar-card--accent{
  background:linear-gradient(145deg, rgba(var(--secondary-500-rgb),0.08), rgba(var(--primary-500-rgb),0.05));
}
.sidebar-card__title{
  margin:0;
  font-size:var(--fs-18);
}
.sidebar-card__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  font-size:var(--fs-14);
}
.sidebar-card__list a{
  color:var(--secondary-500);
  font-weight:600;
  text-decoration:none;
}
.sidebar-manager{
  display:flex;
  gap:1rem;
}
.sidebar-manager__avatar{
  width:52px;
  height:52px;
  border-radius:var(--r-full);
  background:var(--secondary-500);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:var(--fs-16);
}
.sidebar-manager__meta{
  display:flex;
  flex-direction:column;
  gap:0.25rem;
  font-size:var(--fs-14);
}
.sidebar-manager__name{
  font-weight:700;
  font-size:var(--fs-16);
}
.sidebar-manager__meta a{
  color:var(--secondary-500);
  text-decoration:none;
}
.sidebar-products{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.sidebar-product{
  background:var(--neutral-50);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  padding:1rem;
}
.sidebar-product h4{
  margin:0;
  font-size:var(--fs-16);
}
.sidebar-product p{
  margin:0.5rem 0 1rem;
  color:var(--neutral-500);
  font-size:var(--fs-14);
}
.sidebar-product a{
  font-weight:600;
  color:var(--secondary-500);
  text-decoration:none;
}
.sidebar-form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.sidebar-form__field{
  display:flex;
  flex-direction:column;
  gap:0.25rem;
}
.sidebar-form__field label{
  font-size:var(--fs-14);
  font-weight:600;
}
.sidebar-form__field input,
.sidebar-form__field textarea{
  padding:0.65rem 0.75rem;
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  font-size:var(--fs-14);
  font-family:var(--ff-sans);
  background:#fff;
}
.sidebar-form__field textarea{
  min-height:88px;
  resize:vertical;
}
.form-error{
  font-size:var(--fs-12);
  color:var(--error);
}

.product-video-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
}
.product-video-modal.is-visible{
  display:flex;
}
.product-video-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(17,24,39,0.65);
}
.product-video-modal__dialog{
  position:relative;
  z-index:1;
  background:#000;
  border-radius:var(--r-12);
  max-width:800px;
  width:90%;
  outline:none;
}
.product-video-modal__close{
  position:absolute;
  top:0.75rem;
  right:0.75rem;
  border:none;
  background:rgba(0,0,0,0.6);
  color:#fff;
  cursor:pointer;
  border-radius:var(--r-full);
  padding:0.5rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.product-video-modal__frame{
  position:relative;
  padding-top:56.25%;
  border-radius:var(--r-12);
  overflow:hidden;
}
.product-video-modal__frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

@media (max-width:1200px){
  .product-hero__media{
    grid-column:span 6;
  }
  .product-hero__details{
    grid-column:span 6;
  }
}
@media (max-width:992px){
  .product-grid{
    grid-template-columns:1fr;
  }
  .product-grid__sidebar{
    position:static;
  }
  .product-hero{
    grid-template-columns:1fr;
  }
  .product-hero__media,
  .product-hero__details{
    grid-column:1/-1;
  }
}
@media (max-width:640px){
  .product-panel,
  .sidebar-card{
    padding:1.25rem;
  }
  .product-hero{
    padding:1.5rem;
  }
  .product-hero__title{
    font-size:var(--fs-30);
  }
  .product-cta__inner{
    padding:2rem;
  }
}

/* ==========================================================================
   Contacts page
   ========================================================================== */
.contacts-page{
  background:var(--bg-secondary);
}
.contact-shell{
  padding:3rem 0;
}
.section-heading{
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  margin-bottom:2.5rem;
  max-width:720px;
}
.section-heading .lead{
  margin-top:0.25rem;
}

.contact-hero{
  padding:clamp(2.5rem,4vw,4.5rem) 0;
  background:linear-gradient(180deg, rgba(var(--secondary-500-rgb),0.05) 0%, rgba(255,255,255,0) 60%);
}
.contact-hero__shell{
  background:linear-gradient(135deg, rgba(var(--secondary-500-rgb),0.07) 0%, rgba(255,255,255,0.92) 55%);
  border-radius:var(--r-12);
  padding:clamp(2rem,4vw,3.5rem);
  box-shadow:var(--shadow-lg);
  position:relative;
  overflow:hidden;
}
.contact-hero__shell::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(var(--primary-500-rgb),0.18), transparent 55%);
  opacity:0.8;
  pointer-events:none;
}
.contact-hero__body{
  position:relative;
  display:flex;
  align-items:stretch;
  gap:clamp(1.5rem,4vw,3rem);
  z-index:1;
}
.contact-hero__content{
  flex:1 1 52%;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.contact-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:0.35rem 0.75rem;
  border-radius:var(--r-full);
  background:rgba(var(--secondary-500-rgb),0.12);
  color:var(--secondary-500);
  font-size:var(--fs-12);
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.contact-hero__badge-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px rgba(22,163,74,0.18);
}
.contact-hero__headline{
  margin:0;
  font-size:clamp(2rem,4vw,2.75rem);
  line-height:1.15;
  color:var(--secondary-900);
}
.contact-hero__lead{
  margin:0;
  font-size:var(--fs-16);
  color:var(--neutral-500);
  max-width:34rem;
}
.contact-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
}
.contact-hero__cta{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  box-shadow:0 12px 30px rgba(var(--secondary-500-rgb),0.18);
}
.contact-hero__cta.btn--outline{
  box-shadow:none;
  background:rgba(255,255,255,0.9);
}
.contact-hero__note{
  margin:0;
  font-size:var(--fs-14);
  color:var(--neutral-500);
}
.contact-hero__quick-links{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
}
.contact-chip{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:0.625rem 1rem;
  border-radius:var(--r-full);
  border:1px solid rgba(var(--secondary-500-rgb),0.12);
  background:rgba(255,255,255,0.92);
  font-weight:600;
  color:var(--secondary-500);
  text-decoration:none;
  transition:transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.contact-chip--accent{
  background:rgba(16,185,129,0.12);
  border-color:rgba(16,185,129,0.18);
  color:#0F9F6A;
}
.contact-chip:hover,
.contact-chip:focus-visible{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
  border-color:rgba(var(--secondary-500-rgb),0.3);
  outline:none;
}
.contact-chip--accent:hover,
.contact-chip--accent:focus-visible{
  border-color:rgba(16,185,129,0.3);
}
.contact-chip__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1.75rem;
  height:1.75rem;
  border-radius:50%;
  background:rgba(var(--secondary-500-rgb),0.08);
  color:var(--secondary-500);
}
.contact-chip--accent .contact-chip__icon{
  background:rgba(16,185,129,0.18);
  color:#0F9F6A;
}
.contact-hero__media{
  flex:1 1 40%;
  display:flex;
  justify-content:flex-end;
}
.contact-hero__media-outer{
  width:100%;
  max-width:360px;
}
.contact-hero__media-inner{
  position:relative;
  padding:1rem;
  border-radius:var(--r-12);
  background:rgba(255,255,255,0.85);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.contact-hero__image{
  width:100%;
  display:block;
  border-radius:calc(var(--r-12) - 8px);
  object-fit:contain;
  object-position:center;
  aspect-ratio:3/4;
  box-shadow:0 16px 40px rgba(var(--secondary-500-rgb),0.18);
}
.contact-hero__bubble{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap:0.35rem;
  padding:6px 10px;
  border-radius:6px;
  background:rgba(231, 106, 46, 0.12);
  backdrop-filter:blur(12px);
  font-size:10px;
  font-weight:600;
  letter-spacing:0.02em;
  text-transform:uppercase;
  color:#E76A2E;
  box-shadow:0 2px 8px rgba(231, 106, 46, 0.15);
  border:1px solid rgba(231, 106, 46, 0.25);
}
.contact-hero__bubble strong{
  font-size:14px;
  font-weight:700;
  color:#E76A2E;
}
.contact-hero__bubble--top{
  top:12px;
  right:12px;
}
.contact-hero__bubble--top .icon-phone{
  font-size:12px;
}
.contact-hero__bubble--bottom{
  bottom:12px;
  left:12px;
  flex-direction:row;
  align-items:center;
  gap:0.4rem;
}
.contact-hero__bubble--bottom strong{
  line-height:1;
}

.contact-methods{
  background:var(--bg-surface);
  border-top:1px solid var(--neutral-100);
  border-bottom:1px solid var(--neutral-100);
}
.contact-methods__grid{
  display:grid;
  gap:1.5rem;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.contact-card{
  background:var(--bg-secondary);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:1.75rem;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  box-shadow:var(--shadow-sm);
  transition:transform var(--t-fast), box-shadow var(--t-fast);
}
.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}
.contact-card__title{
  margin:0;
  font-size:var(--fs-20);
}
.contact-card__text{
  margin:0;
  color:var(--neutral-500);
}
.contact-card__link{
  font-weight:600;
  color:var(--secondary-500);
  text-decoration:none;
}
.contact-card__meta{
  font-size:var(--fs-14);
  color:var(--neutral-500);
}

.contact-offices__layout{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:2rem;
}
.contact-offices__list{
  grid-column:span 6;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.contact-office{
  background:var(--bg-surface);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:1.75rem;
  box-shadow:var(--shadow-sm);
}
.contact-office__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.contact-office__header h3{
  margin:0;
  font-size:var(--fs-18);
}
.contact-office__tag{
  font-size:var(--fs-12);
  font-weight:600;
  color:var(--secondary-500);
  background:rgba(var(--secondary-500-rgb),0.12);
  padding:0.25rem 0.75rem;
  border-radius:var(--r-full);
}
.contact-office p{
  margin:0.75rem 0 0.75rem;
  color:var(--neutral-500);
}
.contact-office ul{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}
.contact-office li{
  display:flex;
  align-items:center;
  gap:0.5rem;
  font-size:var(--fs-14);
}
.contact-office a{
  color:inherit;
  text-decoration:none;
  font-weight:600;
}
.contact-offices__map{
  grid-column:span 6;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.contact-map{
  border-radius:var(--r-12);
  overflow:hidden;
  border:1px solid var(--neutral-100);
  box-shadow:var(--shadow-md);
}
.contact-map iframe{
  width:100%;
  height:360px;
  border:0;
}
.contact-map__notice{
  display:flex;
  gap:0.5rem;
  align-items:flex-start;
  font-size:var(--fs-14);
  color:var(--neutral-500);
}

.contact-form{
  background:var(--bg-surface);
}
.contact-form__layout{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:2rem;
  align-items:start;
}
.contact-form__intro{
  grid-column:span 5;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.contact-form__highlights{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
}
.contact-form__highlights li{
  display:flex;
  gap:0.5rem;
  align-items:flex-start;
  color:var(--neutral-500);
}
.contact-form__support{
  display:flex;
  gap:0.75rem;
  align-items:flex-start;
  background:var(--neutral-50);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:1rem 1.25rem;
}
.contact-form__support span{
  display:block;
  color:var(--neutral-500);
}
.contact-form__form{
  grid-column:span 7;
  background:var(--bg-surface);
  border:1px solid var(--neutral-100);
  border-radius:var(--r-12);
  padding:2rem;
  box-shadow:var(--shadow-md);
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.contact-form__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.25rem;
}
.contact-form__field{
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}
.contact-form__field label{
  font-size:var(--fs-14);
  font-weight:600;
}
.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select{
  padding:0.75rem 0.85rem;
  border:1px solid var(--neutral-100);
  border-radius:var(--r-8);
  font-size:var(--fs-14);
  font-family:var(--ff-sans);
  background:#fff;
}
.contact-form__field textarea{
  resize:vertical;
  min-height:120px;
}
.contact-form__field--full{
  grid-column:1/-1;
}
.contact-form__policy{
  display:flex;
  gap:0.75rem;
  font-size:var(--fs-14);
  color:var(--neutral-500);
  align-items:flex-start;
}
.contact-form__policy input{
  margin-top:0.35rem;
}
.contact-form__note{
  margin:0;
  font-size:var(--fs-12);
  color:var(--neutral-500);
}

.contact-faq{
  background:var(--bg-surface);
}

.contact-cta__inner{
  background:linear-gradient(135deg, rgba(var(--secondary-500-rgb),0.12), rgba(var(--primary-500-rgb),0.12));
  border:1px solid rgba(40,75,156,0.15);
  border-radius:var(--r-12);
  padding:2.5rem;
  display:flex;
  justify-content:space-between;
  gap:1.5rem;
  align-items:center;
}
.contact-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
}

@media (max-width:1200px){
  .contact-hero__body{ align-items:flex-start; }
}
@media (max-width:992px){
  .contact-shell{ padding:2.5rem 0; }
  .contact-offices__layout,
  .contact-form__layout{
    grid-template-columns:1fr;
  }
  .contact-offices__list,
  .contact-offices__map,
  .contact-form__intro,
  .contact-form__form{
    grid-column:1/-1;
  }
  .contact-hero__body{
    flex-direction:column;
    align-items:flex-start;
  }
  .contact-hero__content,
  .contact-hero__media{
    flex:1 1 auto;
  }
  .contact-hero__media{
    justify-content:center;
  }
  .contact-hero__media-outer{
    max-width:320px;
    margin:0 auto;
  }
  .contact-hero__cta{
    width:100%;
    justify-content:center;
  }
  .contact-form__form{ padding:1.75rem; }
  .contact-cta__inner{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:640px){
  .contact-hero{ padding:clamp(2rem,8vw,3rem) 0; }
  .contact-hero__shell{ padding:clamp(1.5rem,6vw,2.25rem); }
  .contact-hero__headline{ font-size:clamp(1.75rem,8vw,2.25rem); }
  .contact-hero__actions{
    flex-direction:column;
    align-items:stretch;
  }
  .contact-hero__cta{
    width:100%;
    justify-content:center;
  }
  .contact-hero__quick-links{
    flex-direction:column;
    align-items:stretch;
  }
  .contact-chip{
    width:100%;
    justify-content:center;
  }
  .contact-hero__media-outer{
    max-width:280px;
  }
  .contact-form__grid{ grid-template-columns:1fr; }
  .contact-form__form{ padding:1.5rem; }
  .contact-cta__inner{ padding:2rem; }
  .contact-map iframe{ height:280px; }
}

/* ============================================
   PRODUCT CARDS - Glassmorphism
   ============================================ */


.products-v3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.products-v3::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.products-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-v3 {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.product-v3:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.product-v3__ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--primary-500);
  color: white;
  padding: 6px 40px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.product-v3__ribbon--blue {
  background: var(--secondary-500);
}

.product-v3__ribbon--green {
  background: #50C878;
}

.product-v3__image-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.product-v3__img {
  width: 100%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.product-v3:hover .product-v3__img {
  transform: scale(1.08);
}

.product-v3__info {
  padding: 20px;
  color: white;
}

.product-v3__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-v3__volume {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.product-v3__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.product-v3__tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Вся карточка - кликабельная ссылка */
.product-v3__link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Простая цена по центру */
.product-v3__price-simple {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

/* Kaspi Button - яркая кнопка внутри карточки */
.product-v3__kaspi-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 16px 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #DC0A0A 0%, #B00808 100%);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(220, 10, 10, 0.3);
  z-index: 10;
}

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

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

.product-v3__kaspi-footer:hover {
  background: linear-gradient(135deg, #F01010 0%, #D00A0A 100%);
  box-shadow: 0 8px 20px rgba(220, 10, 10, 0.5);
  transform: translateY(-2px);
}

.product-v3__kaspi-footer:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(220, 10, 10, 0.4);
}

.product-v3__kaspi-footer svg {
  flex-shrink: 0;
}

.product-v3__kaspi-footer span {
  position: relative;
  z-index: 1;
}

/* Product v3 actions - для Kaspi кнопок */
.product-v3__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}

.product-v3__actions .btn-kaspi {
  flex: 2;
}

.product-v3__actions .btn {
  flex: 1;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .product-v3__actions {
    flex-direction: column;
  }

  .product-v3__actions .btn-kaspi,
  .product-v3__actions .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .products-grid-v3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   STEPS/HOW IT WORKS VARIANTS
   ============================================ */

/* ВАРИАНТ 1: Карточки с прогресс-линией */
.steps-v1 {
  background: #FAFAFA;
}

.steps-v1__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-v1__grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 16.66%;
  right: 16.66%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-500) 50%, #E5E7EB 50%, #E5E7EB 100%);
  z-index: 0;
}

.step-v1 {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.step-v1:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-v1__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500) 0%, #F97316 100%);
  color: white;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(231, 106, 46, 0.3);
}

.step-v1__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.step-v1__icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(51%) sepia(76%) saturate(2530%) hue-rotate(347deg) brightness(97%) contrast(90%);
}

.step-v1__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 12px;
}

.step-v1__text {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ВАРИАНТ 2: Вертикальный Timeline */
.steps-v2 {
  background: white;
}

.steps-v2__timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.step-v2 {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.step-v2:last-child {
  margin-bottom: 0;
}

.step-v2__marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.step-v2__marker::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 48px);
  background: linear-gradient(180deg, var(--primary-500) 0%, #E5E7EB 100%);
}

.step-v2:last-child .step-v2__marker::after {
  display: none;
}

.step-v2__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500) 0%, #F97316 100%);
  box-shadow: 0 4px 16px rgba(231, 106, 46, 0.3);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-v2__dot::after {
  content: '';
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
}

.step-v2__content {
  background: #F9FAFB;
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--primary-500);
  transition: all 0.3s ease;
}

.step-v2:hover .step-v2__content {
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.step-v2__badge {
  display: inline-block;
  background: var(--primary-500);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-v2__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 12px;
}

.step-v2__text {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ВАРИАНТ 3: Большие нумерованные карточки */
.steps-v3 {
  background: #FAFAFA;
}

.steps-v3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-v3 {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-v3:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-v3__number {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 120px;
  font-weight: 900;
  opacity: 0.08;
  line-height: 1;
}

.step-v3--orange {
  border-top: 4px solid var(--primary-500);
}

.step-v3--orange .step-v3__number {
  color: var(--primary-500);
}

.step-v3--blue {
  border-top: 4px solid var(--secondary-500);
}

.step-v3--blue .step-v3__number {
  color: var(--secondary-500);
}

.step-v3--green {
  border-top: 4px solid #50C878;
}

.step-v3--green .step-v3__number {
  color: #50C878;
}

.step-v3__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-v3__icon img {
  width: 32px;
  height: 32px;
}

.step-v3--orange .step-v3__icon img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(76%) saturate(2530%) hue-rotate(347deg) brightness(97%) contrast(90%);
}

.step-v3--blue .step-v3__icon img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(72%) saturate(1234%) hue-rotate(195deg) brightness(94%) contrast(91%);
}

.step-v3--green .step-v3__icon img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(39%) saturate(645%) hue-rotate(98deg) brightness(95%) contrast(85%);
}

.step-v3__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-v3__text {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .steps-v1__grid,
  .steps-v3__grid {
    grid-template-columns: 1fr;
  }

  .steps-v1__grid::before {
    display: none;
  }

  .step-v2 {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
}

/* ============================================
   HOW IT WORKS - STEPS SECTION
   ============================================ */

/* Soft Pastel with Waves */
.steps-new-v2 {
  background: linear-gradient(180deg, #FFFBF5 0%, #FFF5F7 100%);
  position: relative;
  overflow: hidden;
}

.steps-new-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: url("data:image/svg+xml,%3Csvg width='100%25' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:rgb(255,182,193);stop-opacity:0.15' /%3E%3Cstop offset='50%25' style='stop-color:rgb(221,160,221);stop-opacity:0.15' /%3E%3Cstop offset='100%25' style='stop-color:rgb(173,216,230);stop-opacity:0.15' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,200 Q250,100 500,200 T1000,200 T1500,200 T2000,200 L2000,0 L0,0 Z' fill='url(%23grad)' /%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.6;
  animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-50px); }
}

.steps-new-v2__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.step-new-v2 {
  position: relative;
  text-align: center;
  animation: floatIn 0.8s ease-out both;
}

.step-new-v2:nth-child(1) { animation-delay: 0.1s; }
.step-new-v2:nth-child(2) { animation-delay: 0.3s; }
.step-new-v2:nth-child(3) { animation-delay: 0.5s; }

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.step-new-v2__icon-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-new-v2__icon-box::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
}

.step-new-v2:hover .step-new-v2__icon-box {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.step-new-v2__icon-box--pink {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFD1DC 100%);
}

.step-new-v2__icon-box--purple {
  background: linear-gradient(135deg, #DDA0DD 0%, #E6D0F0 100%);
}

.step-new-v2__icon-box--blue {
  background: linear-gradient(135deg, #ADD8E6 0%, #B0E0E6 100%);
}

.step-new-v2__icon {
  width: 64px;
  height: 64px;
  display: block;
  transition: transform 0.3s ease;
}

.step-new-v2:hover .step-new-v2__icon {
  transform: scale(1.1);
}

.step-new-v2__content {
  margin-top: 8px;
}

.step-new-v2__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.step-new-v2__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.step-new-v2__text {
  font-size: 16px;
  color: var(--neutral-600);
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .steps-new-v2__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-new-v2__icon-box {
    width: 120px;
    height: 120px;
  }

  .step-new-v2__icon {
    width: 56px;
    height: 56px;
  }
}

/* ============================================
   TRUST BAR VARIANTS
   ============================================ */

/* ВАРИАНТ 1: Элегантные карточки с градиентными иконками */
.trust-new-v1 {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.trust-new-v1__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card-v1 {
  background: white;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trust-card-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card-v1:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.trust-card-v1:hover::before {
  opacity: 1;
}

.trust-card-v1__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
}

.trust-card-v1:hover .trust-card-v1__icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.trust-card-v1__icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.15;
  filter: blur(12px);
}

.trust-card-v1__icon-wrapper--orange {
  background: linear-gradient(135deg, rgba(231, 106, 46, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  color: #E76A2E;
}

.trust-card-v1__icon-wrapper--blue {
  background: linear-gradient(135deg, rgba(40, 75, 156, 0.1) 0%, rgba(70, 130, 180, 0.1) 100%);
  color: #284B9C;
}

.trust-card-v1__icon-wrapper--green {
  background: linear-gradient(135deg, rgba(80, 200, 120, 0.1) 0%, rgba(58, 166, 93, 0.1) 100%);
  color: #50C878;
}

.trust-card-v1__icon-wrapper--purple {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(142, 68, 173, 0.1) 100%);
  color: #9B59B6;
}

.trust-card-v1__icon {
  width: 48px;
  height: 48px;
}

.trust-card-v1__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.trust-card-v1__text {
  font-size: 14px;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* RESPONSIVE для Trust bar */
@media (max-width: 991px) {
  .trust-new-v1__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Отключаем hover эффекты на планшетах и мобильных */
  .trust-card-v1:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .trust-card-v1:hover .trust-card-v1__icon-wrapper {
    transform: none;
  }

  .trust-card-v1::before {
    display: none;
  }

  .trust-card-v1__icon-wrapper::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust-new-v1__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SCROLL ANIMATIONS - Плавная анимация при прокрутке страницы
   ========================================================================== */

/* Начальное состояние для всех элементов с анимацией */
/* ОТКЛЮЧЕНО: Scroll animations
 * Анимации при скролле отключены для лучшей производительности
 * и устранения рывков на мобильных устройствах
 */
/*
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-in"] {
  transform: translateY(0);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="250"] { transition-delay: 0.25s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="450"] { transition-delay: 0.45s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }

@media (max-width: 768px) {
  [data-animate="fade-up"] { transform: translateY(20px); }
  [data-animate] { transition-duration: 0.5s; }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
*/

/* ==========================================================================
   MOBILE OVERFLOW FIX - Prevent horizontal scrolling on all devices
   ========================================================================== */

/* Ensure all sections and containers stay within viewport */
section, main, article, aside, footer {
  max-width: 100%;
}

/* Fix for rows and flex containers */
.row {
  max-width: 100%;
}

/* ==========================================================================
   ENHANCED RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Extra Small Mobile (iPhone SE, small devices) - 320px to 480px */
@media (max-width: 480px) {
  .container, .container-wide, .container-narrow {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Reduce font sizes for very small screens */
  .h1, h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .h2, h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .h3, h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  /* Stack elements more aggressively */
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* Small Mobile / Large Phone - 481px to 640px */
@media (min-width: 481px) and (max-width: 640px) {
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}

/* Tablet Portrait - 641px to 768px */
@media (min-width: 641px) and (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Optimize product grid for tablet */
  .products-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile-specific fixes (all mobile devices) */
@media (max-width: 768px) {
  /* Container padding adjustments */
  .container, .container-wide, .container-narrow {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Fix navbar - ensure it doesn't cause overflow */
  .navbar__container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar__content {
    max-width: 100%;
  }

  .navbar__actions {
    flex-shrink: 0;
  }

  /* Prevent specific elements from overflowing */
  section > *,
  .hero__content > *,
  .grid {
    max-width: 100%;
  }

  /* Improve touch targets for mobile (min 44x44px per WCAG) */
  button, a.btn, .btn-icon {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Tablet Landscape / Small Desktop - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Optimize grid layouts for tablet landscape */
  .products-grid-v3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

/* Large Desktop - 1025px to 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

/* Extra Large Desktop / 4K - 1441px+ */
@media (min-width: 1441px) {
  .container {
    max-width: 1400px;
  }

  /* Prevent content from being too wide on large screens */
  .hero__content {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Retina Displays - High DPI optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Subtle improvements for high-DPI screens */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Thinner borders on Retina */
  .btn, .card, .product-v3 {
    border-width: 0.5px;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Reduce vertical spacing in landscape */
  .py-48 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .py-20 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* ==========================================================================
   FLIP CARDS - Problem → Solution Interactive Component
   ========================================================================== */

/* ============================================
   SLIDE REVEAL CARDS SECTION
   ============================================ */
.slide-cards-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

/* Grid Layout */
.slide-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Slide Card Container */
.slide-card {
  position: relative;
  height: 520px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.slide-card:hover {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transform: translateY(-12px) scale(1.02);
}

/* Before Side (Left) */
.before-after-slider__before {
  position: relative;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  padding: 3rem 2.5rem;
  overflow: hidden;
}

.before-after-slider__before::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(239, 68, 68, 0.05) 100%);
  pointer-events: none;
}

/* After Side (Right) */
.before-after-slider__after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2.5rem;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.before-after-slider__after::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, transparent 0%, rgba(34, 197, 94, 0.05) 100%);
  pointer-events: none;
}

/* Labels */
.before-after-slider__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.before-label {
  background: rgba(239, 68, 68, 0.15);
  color: #991b1b;
  border: 2px solid rgba(239, 68, 68, 0.3);
}

.after-label {
  background: rgba(34, 197, 94, 0.15);
  color: #065f46;
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.label-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* Content */
.before-after-slider__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Symptom Items */
.symptom-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.symptom-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.symptom-icon {
  grid-row: 1 / 3;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.25rem;
}

.before-after-slider__before .symptom-icon::before {
  color: #dc2626;
}

.before-after-slider__after .symptom-icon::before {
  color: #16a34a;
}

.symptom-text {
  grid-column: 2;
}

.symptom-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin: 0;
  line-height: 1.3;
}

.symptom-desc {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin: 0.25rem 0 0 0;
}

.symptom-meter {
  grid-column: 2;
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 0.5rem;
}

.meter-bar {
  height: 100%;
  border-radius: 1rem;
  transition: width 1s ease;
}

.meter-bar.danger {
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.meter-bar.success {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Slider Handle */
.before-after-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
  user-select: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider-handle__line {
  flex: 1;
  width: 3px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 10%,
    rgba(255, 255, 255, 0.9) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.slider-handle__button {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--neutral-700);
  transition: all 0.3s ease;
  border: 3px solid var(--primary-500);
}

.slider-handle__button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.slider-arrow {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--primary-500);
}

.slider-divider {
  font-size: 1.25rem;
  color: var(--primary-500);
}

/* Instruction */
.before-after-slider__instruction {
  text-align: center;
  margin-top: 2rem;
}

.instruction-text {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--neutral-600);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.instruction-text .icon-hand-pointer::before {
  color: var(--primary-500);
  font-size: 1.25rem;
}

/* CTA Section */
.before-after-slider__cta {
  margin-top: 3rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-500) 0%, #d97706 100%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(231, 106, 46, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2.5rem 0;
}

.cta-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.cta-product-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-product-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.product-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.product-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .before-after-slider__container {
    min-height: 600px;
  }

  .before-after-slider__before,
  .before-after-slider__after {
    padding: 2rem 1.5rem;
  }

  .symptom-item {
    padding: 1rem;
  }

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

@media (max-width: 768px) {
  .before-after-slider__container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .before-after-slider__before {
    position: relative;
    min-height: 400px;
  }

  .before-after-slider__after {
    position: relative;
    width: 100%;
    min-height: 400px;
  }

  .before-after-slider__handle {
    display: none;
  }

  .before-after-slider__label {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .symptom-title {
    font-size: 1rem;
  }

  .symptom-desc {
    font-size: 0.8125rem;
  }

  .cta-products {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-desc {
    font-size: 1rem;
  }

  .instruction-text {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}



/* Flip Card Inner Container */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front and Back Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Front Side (Problem) */
.flip-card-front {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: var(--neutral-900);
}

.flip-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Back Side (Solution) */
.flip-card-back {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: var(--neutral-900);
  transform: rotateY(180deg);
}

.flip-card-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Fix mirrored content on flip-card-back */
.flip-card-back > * {
  transform: scaleX(-1);
}

/* Icon */
.flip-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.flip-card-icon.problem {
  background: rgba(239, 68, 68, 0.2);
  border: 3px solid rgba(239, 68, 68, 0.4);
}

.flip-card-icon.solution {
  background: rgba(34, 197, 94, 0.2);
  border: 3px solid rgba(34, 197, 94, 0.4);
}

.flip-card-icon span::before {
  font-size: 2.5rem;
}

.flip-card-icon.problem span::before {
  color: #dc2626;
}

.flip-card-icon.solution span::before {
  color: #16a34a;
}

/* Title */
.flip-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* Description */
.flip-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-700);
  margin: 0 0 1.5rem 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Badge */
.flip-card-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.problem-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #991b1b;
  border: 2px solid rgba(239, 68, 68, 0.4);
}

/* Benefits List */
.flip-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  width: 100%;
  flex: 1;
  position: relative;
  z-index: 1;
}

.flip-card-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--neutral-800);
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.2);
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Product Recommendation */
.flip-card-product {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(34, 197, 94, 0.3);
  position: relative;
  z-index: 1;
}

.product-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--neutral-600);
  margin-bottom: 0.25rem;
}

.product-name {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-900);
}

/* Button */
.flip-card-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--neutral-900);
  border: 2px solid var(--neutral-300);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.flip-card-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.flip-card-button span::before {
  font-size: 1rem;
}

.flip-back-btn {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #065f46;
}

.flip-back-btn:hover {
  background: rgba(34, 197, 94, 0.25);
}

/* CTA Section */
.flip-cards-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary-500) 0%, #d97706 100%);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(231, 106, 46, 0.3);
  position: relative;
  overflow: hidden;
}

.flip-cards-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.flip-cards-cta .cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.flip-cards-cta .cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 1;
}

.flip-cards-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-500);
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flip-cards-cta .cta-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .flip-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .flip-card {
    height: 420px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 2rem 1.5rem;
  }

  .flip-card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .flip-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flip-card {
    height: auto;
    min-height: 400px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 2rem 1.5rem;
    position: relative;
  }

  .flip-card-icon {
    width: 64px;
    height: 64px;
  }

  .flip-card-icon span::before {
    font-size: 2rem;
  }

  .flip-card-title {
    font-size: 1.375rem;
  }

  .flip-card-desc {
    font-size: 0.9375rem;
  }

  .flip-card-benefits li {
    font-size: 0.875rem;
  }

  .flip-cards-cta .cta-title {
    font-size: 1.5rem;
  }

  .flip-cards-cta .cta-subtitle {
    font-size: 1rem;
  }

  .flip-cards-cta .cta-button {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

/* ==========================================================================
   Product Page Enhancements - Sticky CTA, Messenger Buttons, Animations
   ========================================================================== */

/* Sticky CTA Bar */
.product-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 0;
}

.product-sticky-cta.is-visible {
  transform: translateY(0);
}

.product-sticky-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-sticky-cta__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-sticky-cta__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-900);
}

.product-sticky-cta__price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-sticky-cta__price .price-old {
  font-size: 0.875rem;
  color: var(--neutral-500);
  text-decoration: line-through;
}

.product-sticky-cta__price .price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-500);
}

@media (max-width: 768px) {
  .product-sticky-cta__content {
    flex-direction: column;
    align-items: stretch;
  }

  .product-sticky-cta__title {
    font-size: 0.875rem;
  }

  .product-sticky-cta__price .price-current {
    font-size: 1rem;
  }
}

/* Floating Messenger Buttons */
.messenger-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.messenger-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.messenger-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.messenger-button--whatsapp {
  background: #25D366;
}

.messenger-button--telegram {
  background: #0088cc;
}

.messenger-button svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .messenger-buttons {
    right: 16px;
    bottom: 90px; /* Above sticky CTA */
  }

  .messenger-button {
    width: 48px;
    height: 48px;
  }

  .messenger-button svg {
    width: 24px;
    height: 24px;
  }
}

/* Fade-in-up Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for children */
.fade-in-up.is-visible > * {
  animation: fadeInUpChild 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.fade-in-up.is-visible > *:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up.is-visible > *:nth-child(2) { animation-delay: 0.15s; }
.fade-in-up.is-visible > *:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up.is-visible > *:nth-child(4) { animation-delay: 0.25s; }
.fade-in-up.is-visible > *:nth-child(5) { animation-delay: 0.3s; }

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

/* ==========================================================================
   ИСПРАВЛЕНИЕ LAYOUT SHIFT - Уменьшение рывков при прокрутке
   ========================================================================== */

/* Оптимизация производительности для длинных секций */
.products-section,
.articles-section,
.testimonials-section,
.steps-section {
  /* content-visibility: auto; */
  /* contain-intrinsic-height: 600px; */
}

/* Улучшение рендеринга шрифтов */
html {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Резервирование места для изображений без размеров */
img:not([width]):not([height]) {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Оптимизация анимаций - GPU-ускорение для плавности */
[class*="fade"],
[class*="slide"],
[class*="animate"],
.product-card,
.article-card,
.testimonial-card {
  will-change: opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Отключаем анимации на медленных устройствах */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

