/* 
 * Shopkix - Premium SaaS Ecommerce Builder Platform Stylesheet
 * Inspired by Shopify, Stripe, Linear, and Webflow
 *
 * Color Architecture:
 * - Brand Primary: #5147E8
 * - Brand Primary Hover: #4338CA
 * - Accent Purple: #7168F2, #8B83F5, #3B28CC
 * - Light Purple Tint: #F5F3FF (Section Alternating Background)
 * - Soft Purple Borders: rgba(81, 71, 232, 0.12)
 * - Dark Canvas: #0F1023, #181938, #2A216A
 * - Text Main: #111329, Text Muted: #646680
 */

:root {
  --sk-primary: #5147E8;
  --sk-primary-hover: #4338CA;
  --sk-primary-light: #7168F2;
  --sk-primary-soft: #8B83F5;
  --sk-primary-deep: #3B28CC;
  
  --sk-purple-bg: #F5F3FF;
  --sk-purple-tint: #EEECFE;
  --sk-purple-border: rgba(81, 71, 232, 0.12);
  --sk-purple-glow: rgba(81, 71, 232, 0.25);
  
  --sk-dark: #111329;
  --sk-dark-card: #181938;
  --sk-text-main: #111329;
  --sk-text-muted: #646680;
  --sk-bg-light: #FAFAFE;
  --sk-white: #FFFFFF;
  
  /* Shadows */
  --sk-shadow-xs: 0 2px 8px rgba(81, 71, 232, 0.04);
  --sk-shadow-sm: 0 8px 20px -4px rgba(81, 71, 232, 0.08);
  --sk-shadow-md: 0 16px 36px -8px rgba(81, 71, 232, 0.12);
  --sk-shadow-lg: 0 28px 64px -12px rgba(81, 71, 232, 0.18);
  --sk-shadow-glow: 0 0 50px rgba(81, 71, 232, 0.3);
  
  /* Unified 16px-24px Radii */
  --sk-radius-sm: 16px;
  --sk-radius-md: 20px;
  --sk-radius-lg: 24px;
  --sk-radius-pill: 100px;
  
  --sk-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sk-font-main);
  color: var(--sk-text-main);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: var(--sk-dark);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.18;
}

.text-highlight {
  color: var(--sk-primary);
  background: linear-gradient(135deg, #5147E8 0%, #7168F2 50%, #3B28CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted-custom {
  color: var(--sk-text-muted);
  font-weight: 500;
  line-height: 1.65;
}

.bg-purple-tint {
  background-color: var(--sk-purple-bg) !important;
}

/* Ambient Purple Radial Glow Blurs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.glow-blob-hero-1 {
  top: -120px;
  right: -80px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(81, 71, 232, 0.22) 0%, rgba(113, 104, 242, 0.08) 50%, transparent 75%);
  filter: blur(80px);
}

.glow-blob-hero-2 {
  bottom: 0px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(139, 131, 245, 0.18) 0%, rgba(245, 243, 255, 0) 70%);
  filter: blur(75px);
}

.glow-blob-section {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(81, 71, 232, 0.15) 0%, transparent 70%);
  filter: blur(70px);
}

/* Premium Buttons & Eyebrow Badges */
.btn-primary-purple {
  background: linear-gradient(135deg, #5147E8 0%, #6357F2 100%);
  color: var(--sk-white);
  border: none;
  border-radius: var(--sk-radius-pill);
  padding: 13px 30px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(81, 71, 232, 0.32), 0 2px 6px rgba(81, 71, 232, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-purple:hover {
  background: linear-gradient(135deg, #4338CA 0%, #5147E8 100%);
  color: var(--sk-white);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 36px rgba(81, 71, 232, 0.42), 0 4px 10px rgba(81, 71, 232, 0.25);
}

.btn-outline-purple {
  background: rgba(255, 255, 255, 0.88);
  color: var(--sk-primary);
  border: 1.5px solid rgba(81, 71, 232, 0.22);
  border-radius: var(--sk-radius-pill);
  padding: 13px 30px;
  font-weight: 700;
  font-size: 0.98rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-purple:hover {
  background-color: var(--sk-purple-bg);
  border-color: var(--sk-primary);
  color: var(--sk-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(81, 71, 232, 0.15);
}

.btn-white {
  background-color: var(--sk-white);
  color: var(--sk-primary);
  border-radius: var(--sk-radius-pill);
  padding: 15px 36px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  background-color: #F8F7FF;
  color: var(--sk-primary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--sk-purple-bg);
  color: var(--sk-primary);
  border: 1px solid rgba(81, 71, 232, 0.2);
  border-radius: var(--sk-radius-pill);
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(81, 71, 232, 0.06);
}

.badge-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--sk-primary);
  box-shadow: 0 0 8px var(--sk-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Header & Navigation */
.navbar-shopkix {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(81, 71, 232, 0.08);
  padding: 18px 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-shopkix.scrolled {
  padding: 12px 0;
  box-shadow: 0 10px 30px -5px rgba(81, 71, 232, 0.08);
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(81, 71, 232, 0.15);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0;
}

.logo-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .logo-icon-wrap {
  transform: translateY(-2px) scale(1.06);
}

.brand-text {
  font-weight: 800;
  font-size: 1.75rem;
  color: #090A12;
  letter-spacing: -0.035em;
  line-height: 1;
}

@media (min-width: 992px) {
  .navbar-nav-main {
    margin-left: 40px !important;
  }
}

.nav-link-custom {
  color: var(--sk-text-main) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 10px;
  background: transparent !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.nav-link-custom:hover {
  color: var(--sk-primary) !important;
  background: transparent !important;
  transform: scale(1.05);
}

.nav-link-custom.active {
  color: var(--sk-primary) !important;
  background: transparent !important;
  font-weight: 700;
  transform: scale(1.12);
}

.dropdown-menu-custom {
  border: 1px solid var(--sk-purple-border);
  border-radius: var(--sk-radius-sm);
  box-shadow: var(--sk-shadow-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  min-width: 160px;
}

@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDropdown 0.2s ease forwards;
  }
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item-custom {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sk-text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
  background-color: var(--sk-purple-bg);
  color: var(--sk-primary);
  transform: translateX(3px);
}

/* SECTION 1: HERO SECTION */
.hero-section {
  padding: 155px 0 95px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
  overflow: hidden;
}

.hero-perk-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sk-dark);
}

.hero-perk-item i {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sk-primary);
  -webkit-text-stroke: 0.5px var(--sk-primary);
}

/* HERO VISUAL STAGE & MOCKUPS */
.hero-visual-stage {
  position: relative;
  perspective: 1200px;
  padding: 20px 10px;
}

/* LAPTOP CONTAINER & BASE */
.laptop-container {
  position: relative;
  width: 100%;
}

.laptop-frame {
  background: #FFFFFF;
  border-radius: 16px 16px 4px 4px;
  border: 2px solid #2B2A3D;
  box-shadow: 0 30px 80px -15px rgba(81, 71, 232, 0.28), 0 0 0 1px rgba(81, 71, 232, 0.12);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.laptop-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px -15px rgba(81, 71, 232, 0.35);
}

.laptop-keyboard-base {
  height: 14px;
  background: linear-gradient(180deg, #E2E1EA 0%, #B2AFBF 100%);
  border-radius: 0 0 16px 16px;
  position: relative;
  margin: 0 -14px;
  box-shadow: 0 14px 28px rgba(18, 14, 58, 0.22);
  border-top: 1px solid #D1CEDC;
  border-bottom: 2px solid #8E8A9C;
}

.laptop-base-notch {
  width: 60px;
  height: 5px;
  background: #8E8A9C;
  border-radius: 0 0 5px 5px;
  margin: 0 auto;
}

.laptop-browser-bar {
  background: #F4F3FD;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(81, 71, 232, 0.1);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot.red { background-color: #FF5F56; }
.browser-dot.yellow { background-color: #FFBD2E; }
.browser-dot.green { background-color: #27C93F; }

.browser-url-bar {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 5px 16px;
  font-size: 0.78rem;
  color: var(--sk-text-muted);
  flex-grow: 1;
  max-width: 280px;
  margin-left: 12px;
  border: 1px solid rgba(81, 71, 232, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.mockup-store-content {
  background: #FFFFFF;
}

.mockup-inner-nav {
  padding: 12px 20px;
  border-bottom: 1px solid #F0EEFE;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.mockup-hero-banner {
  background: linear-gradient(135deg, #EEECFE 0%, #E3E0FD 100%);
  padding: 22px 26px;
  border-radius: var(--sk-radius-sm);
  margin: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(81, 71, 232, 0.08);
}

.mockup-banner-content h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--sk-dark);
  line-height: 1.2;
}

.mockup-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 14px 18px 14px;
}

.mockup-product-card {
  background: #FAFAFE;
  border: 1px solid rgba(81, 71, 232, 0.1);
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mockup-product-card:hover {
  transform: translateY(-3px);
  border-color: var(--sk-primary);
  background: #FFFFFF;
}

.mockup-product-img {
  width: 100%;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 6px;
}

.mockup-product-title {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--sk-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-product-price {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--sk-primary);
}

/* OVERLAPPING PHONE FRAME */
.phone-frame {
  position: absolute;
  bottom: -18px;
  right: -10px;
  width: 190px;
  background: #FFFFFF;
  border-radius: 28px;
  border: 3px solid #1F1D2B;
  box-shadow: 0 24px 50px -5px rgba(17, 19, 41, 0.32), 0 0 0 1px rgba(81, 71, 232, 0.15);
  padding: 10px 10px 12px 10px;
  z-index: 10;
  animation: floatSlow1 6s ease-in-out infinite;
}

.phone-notch {
  width: 44px;
  height: 5px;
  background: #1F1D2B;
  border-radius: 6px;
  margin: 0 auto 8px auto;
}

.phone-card {
  background: #F8F7FF;
  border-radius: 18px;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(81, 71, 232, 0.08);
}

.phone-card-img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
}

.phone-btn {
  background: linear-gradient(135deg, #5147E8 0%, #6357F2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 12px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(81, 71, 232, 0.3);
  transition: transform 0.2s ease;
}

.phone-btn:hover {
  transform: scale(1.02);
}

/* FLOATING STAT BADGES */
.floating-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(81, 71, 232, 0.16);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 14px 36px rgba(81, 71, 232, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-stat-badge:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 18px 40px rgba(81, 71, 232, 0.26);
}

.floating-stat-badge.badge-top-right {
  top: 10px;
  right: -25px;
  animation: floatSlow1 5s ease-in-out infinite 0.5s;
}

.floating-stat-badge.badge-bottom-left {
  bottom: 0px;
  left: -28px;
  animation: floatSlow2 6s ease-in-out infinite 1.5s;
}

.floating-stat-badge.badge-bottom-right {
  bottom: -35px;
  right: 140px;
  animation: floatSlow3 5.5s ease-in-out infinite 1s;
}

.badge-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--sk-purple-bg);
  color: var(--sk-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(81, 71, 232, 0.12);
}

.badge-stat-num {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--sk-primary);
  line-height: 1.1;
}

.badge-stat-label {
  font-size: 0.78rem;
  color: var(--sk-text-muted);
  font-weight: 600;
}

@keyframes floatSlow1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes floatSlow2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes floatSlow3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* SECTION 2: STATS BAR */
.stats-bar-container {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 16px 48px -12px rgba(81, 71, 232, 0.12), 0 0 1px rgba(0, 0, 0, 0.08);
  border: none;
  padding: 28px 24px;
  margin-top: -30px;
  position: relative;
  z-index: 20;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  border-right: 1px solid rgba(81, 71, 232, 0.12);
  transition: transform 0.25s ease;
}

.col-6:nth-child(2n) .stat-item {
  border-right: none;
}

@media (min-width: 992px) {
  .col-6:nth-child(2n) .stat-item {
    border-right: 1px solid rgba(81, 71, 232, 0.12);
  }
  .col-lg-3:last-child .stat-item {
    border-right: none;
  }
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 2.3rem;
  color: var(--sk-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  -webkit-text-stroke: 0.2px var(--sk-primary);
}

.stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--sk-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 0.88rem;
  font-weight: 600;
  color: #585C6E;
  margin-top: 3px;
  white-space: nowrap;
}

/* SECTION COMMON STYLING */
.section-padding {
  padding: 110px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

/* SECTION 3: WHY SHOPKIX (FEATURE CARDS) */
.feature-card {
  background: linear-gradient(90deg, #F7F5FF 0%, #FAFAFF 50%, #FFFFFF 100%);
  border: none;
  border-radius: 20px;
  padding: 42px 20px 38px 20px;
  height: 100%;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 32px -8px rgba(81, 71, 232, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -8px rgba(81, 71, 232, 0.14), 0 0 1px rgba(81, 71, 232, 0.2);
  border: none;
}

.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 3.2rem;
  color: var(--sk-primary);
  line-height: 1;
  display: inline-block;
  transition: transform 0.35s ease;
  -webkit-text-stroke: 0.2px var(--sk-primary);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111329;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.88rem;
  color: #585C6E;
  margin-bottom: 0;
  line-height: 1.6;
}

/* SECTION 4: GLOBAL COMMERCE SECTION */
#global-commerce {
  padding-bottom: 100px !important;
}

.global-commerce-box {
  background: linear-gradient(135deg, #FAF8FF 0%, #F1EFFF 100%);
  border-radius: 24px;
  padding: 46px 44px;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -10px rgba(81, 71, 232, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
}

.map-visual-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.map-visual-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(81, 71, 232, 0.08));
  transition: transform 0.4s ease;
}

.map-visual-img:hover {
  transform: scale(1.02);
}

.badge-global-tag {
  background: rgba(81, 71, 232, 0.12);
  color: var(--sk-primary);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 5px 14px;
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.global-heading {
  font-size: 2.1rem;
  font-weight: 800;
  color: #111329;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
}

.global-subtext {
  font-size: 0.95rem;
  color: #585C6E;
  line-height: 1.6;
}

.global-item-icon {
  font-size: 1.75rem;
  color: var(--sk-primary);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-text-stroke: 0.2px var(--sk-primary);
}

.global-item-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111329;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.global-item-desc {
  font-size: 0.78rem;
  color: #6C7084;
  margin-bottom: 0;
  line-height: 1.4;
}

.btn-global-action {
  background: linear-gradient(135deg, #5147E8 0%, #6357F2 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  box-shadow: 0 8px 22px rgba(81, 71, 232, 0.32);
  transition: all 0.25s ease;
}

.btn-global-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(81, 71, 232, 0.42);
  color: #FFFFFF;
}

/* SECTION 5: WEBSITE BUILDER SECTION */
#builder {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  position: relative;
  z-index: 1;
}

.builder-card-outer {
  background: #FAF9FE;
  border: none;
  border-radius: 24px;
  padding: 48px 48px 90px 48px;
  box-shadow: 0 10px 40px rgba(81, 71, 232, 0.03);
  position: relative;
  z-index: 1;
}

.badge-eyebrow-pill {
  display: inline-block;
  background: #ECE8FF;
  color: #5147E8;
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.builder-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0F0A38;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
}

.builder-desc {
  font-size: 0.95rem;
  color: #5C5E70;
  line-height: 1.6;
}

.builder-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1A1D36;
}

.builder-check-item .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ECE8FF;
  color: #5147E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* UI SHOWCASE GRID & MOCKUP */
.builder-ui-showcase {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 12px;
  align-items: stretch;
}

.editor-main-window {
  background: #FFFFFF;
  border: 1px solid #E6E1FA;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 10, 56, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.editor-header-bar {
  background: #F8F7FD;
  border-bottom: 1px solid #EAE6FA;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.editor-logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #5147E8;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.editor-address-pill {
  background: #FFFFFF;
  border: 1px solid #E2DCFA;
  border-radius: 50px;
  padding: 3px 14px;
  font-size: 0.68rem;
  color: #615C7A;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.editor-device-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: #8C88A6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
}

.editor-device-btn.active {
  background: #ECE8FF;
  color: #5147E8;
}

.editor-workspace {
  display: grid;
  grid-template-columns: 105px 1fr;
  flex-grow: 1;
  min-height: 230px;
}

.editor-sidebar-tree {
  background: #FAF9FF;
  border-right: 1px solid #EAE6FA;
  padding: 10px 8px;
}

.tree-item {
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #6C6885;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.tree-item.active {
  background: #ECE8FF;
  color: #5147E8;
  font-weight: 700;
}

.editor-canvas-preview {
  padding: 12px;
  background: #FFFFFF;
  overflow: hidden;
}

.canvas-hero-banner {
  background: linear-gradient(135deg, #EBE6FF 0%, #D8CDFF 100%);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.hero-banner-image {
  width: 85px;
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(81, 71, 232, 0.15);
}

.hero-banner-image img.model-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.canvas-prod-card {
  background: #F8F7FD;
  border: 1px solid #EAE6FA;
  border-radius: 8px;
  padding: 4px;
  text-align: center;
}

.canvas-prod-card img.prod-img {
  width: 100%;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

/* RIGHT INSPECTOR PANEL */
.editor-inspector-panel {
  background: #FFFFFF;
  border: 1px solid #E6E1FA;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(15, 10, 56, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inspector-block {
  border-bottom: 1px solid #EAE6FA;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.inspector-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #1A173B;
}

.text-format-toolbar {
  display: flex;
  gap: 3px;
}

.format-btn {
  border: 1px solid #E2DCFA;
  background: #F8F7FD;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 0.65rem;
  color: #383454;
  cursor: pointer;
}

.color-swatches-grid {
  display: flex;
  gap: 4px;
}

.color-swatch-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.color-swatch-circle.active {
  box-shadow: 0 0 0 2px #5147E8;
  transform: scale(1.1);
}

.layout-picker-box {
  background: #F8F7FD;
  border: 1px solid #E2DCFA;
  border-radius: 6px;
  padding: 5px;
  cursor: pointer;
}

.layout-picker-box.active {
  border-color: #5147E8;
  background: #ECE8FF;
}

.layout-grid-preview {
  height: 18px;
  border-radius: 3px;
  background: #C4B8FF;
}

/* SECTION 6: SMART MARKETING SECTION */
#marketing {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 2;
}

.smart-marketing-card {
  margin-top: -65px;
  margin-bottom: 0;
  background: linear-gradient(135deg, #4B3AFF 0%, #3828E5 50%, #2A17DB 100%);
  border-radius: 24px;
  padding: 44px 40px;
  color: #FFFFFF;
  box-shadow: 0 25px 60px rgba(42, 23, 219, 0.28);
  position: relative;
  z-index: 2;
}

.badge-marketing-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.marketing-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
}

.marketing-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.marketing-feature-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 12px;
  backdrop-filter: blur(8px);
  height: 100%;
}

.pill-num-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #3828E5;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.pill-title {
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pill-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  margin-bottom: 0;
  line-height: 1.35;
}

/* MARKETING ANALYTICS MOCKUP CARD */
.marketing-dashboard-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 24px;
  color: #0F0A38;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dash-metric-box {
  background: #F8F7FD;
  border: 1px solid #EAE6FA;
  border-radius: 12px;
  padding: 12px 10px;
}

.dash-metric-label {
  font-size: 0.68rem;
  color: #6C6885;
  font-weight: 600;
}

.dash-metric-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F0A38;
  line-height: 1.15;
  margin-top: 2px;
}

.dash-metric-growth {
  font-size: 0.72rem;
  font-weight: 800;
  color: #5147E8;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.dash-chart-container {
  background: #F8F7FD;
  border: 1px solid #EAE6FA;
  border-radius: 12px;
  padding: 12px;
}

.chart-tooltip-badge {
  position: absolute;
  top: 10px;
  left: 60%;
  transform: translateX(-50%);
  background: #5147E8;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 0.68rem;
  box-shadow: 0 4px 12px rgba(81, 71, 232, 0.35);
  z-index: 2;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* SECTION 7: OMNICHANNEL SECTION RE-DESIGN */
.omni-section-title {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .omni-section-title {
    white-space: normal;
  }
}

.omnichannel-diagram-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 280px;
  margin: 0 auto;
}

.omnichannel-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Center SHOPKIX Hub */
.omni-hub-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.omni-hub-orbit {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px dashed #C3BBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 243, 255, 0.4);
}

.omni-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5147E8;
}

.omni-orbit-dot.dot-top {
  top: -3px;
  left: calc(50% - 3px);
}

.omni-orbit-dot.dot-bottom {
  bottom: -3px;
  left: calc(50% - 3px);
}

.omni-hub-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4B3AFF 0%, #3828E5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(75, 58, 255, 0.35);
}

.omni-hub-brand {
  margin-top: 8px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #3828E5;
}

/* Pill Cards */
.omni-pill-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 10px 22px 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(81, 71, 232, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(239, 235, 253, 0.8);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.omni-pill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(81, 71, 232, 0.15);
}

.omni-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #F4F2FF;
  color: #4B3AFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.omni-pill-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1A1A2E;
  letter-spacing: -0.01em;
}

/* Positions for 4 Pill Cards */
.omni-pill-tl {
  top: 18px;
  left: 10px;
}

.omni-pill-bl {
  bottom: 22px;
  left: 0px;
}

.omni-pill-tr {
  top: 18px;
  right: 10px;
}

.omni-pill-br {
  bottom: 22px;
  right: 0px;
}

/* SECTION 8: SUCCESS STORIES (CASES) */
.case-card-horizontal {
  background: linear-gradient(135deg, #FAF9FF 0%, #F5F3FF 100%);
  border: none;
  border-radius: 18px;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(81, 71, 232, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.case-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(81, 71, 232, 0.12);
}

.case-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-brand-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: #0F0A38;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-brand-sub {
  font-size: 0.82rem;
  color: #6C6885;
  margin-top: 2px;
}

.case-stat-num {
  font-weight: 800;
  font-size: 1.7rem;
  color: #3828E5;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.case-stat-desc {
  font-size: 0.78rem;
  color: #514E70;
  margin-top: 3px;
  font-weight: 500;
}

.case-card-img-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.case-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card-horizontal:hover .case-card-img {
  transform: scale(1.06);
}

.cases-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #B4AEFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
}

.cases-nav-btn:hover {
  color: #4B3AFF;
  background: rgba(75, 58, 255, 0.06);
}

.cases-nav-prev {
  left: -24px;
}

.cases-nav-next {
  right: -24px;
}

/* SECTION 9: TRUST SECTION */
.trust-container-card {
  background: linear-gradient(180deg, #F9F8FF 0%, #F4F0FF 100%);
  border: none;
  border-radius: 20px;
  padding: 38px 24px 34px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(81, 71, 232, 0.03);
}

.trust-main-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0F0A38;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  white-space: nowrap;
}

.trust-grid-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, rgba(200, 190, 255, 0) 0%, rgba(200, 190, 255, 0.7) 50%, rgba(200, 190, 255, 0) 100%);
}

.trust-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 224, 255, 0.7);
  color: #4B3AFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(75, 58, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.trust-item:hover .trust-icon-circle {
  transform: translateY(-3px);
  background: #4B3AFF;
  color: #FFFFFF;
}

.trust-item-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0F0A38;
  margin-bottom: 4px;
  white-space: nowrap;
}

.trust-item-sub {
  font-size: 0.75rem;
  color: #6C6885;
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .trust-grid-row {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .trust-item {
    flex: 0 0 33.333%;
    margin-bottom: 12px;
  }
  .trust-item::after {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .trust-item {
    flex: 0 0 50%;
  }
}

/* SECTION 10: FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, #5147E8 0%, #7168F2 60%, #3B28CC 100%);
  padding: 100px 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.final-cta-box,
.final-cta-content {
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.cta-bullets {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 0.98rem;
  font-weight: 700;
  opacity: 0.95;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer-dark {
  background-color: var(--sk-dark);
  color: #A0A2BA;
  padding: 85px 0 32px 0;
  font-size: 0.92rem;
}

.footer-grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.footer-brand-col {
  flex: 1 1 300px;
  max-width: 380px;
}

.footer-nav-col {
  flex: 0 0 auto;
  min-width: 120px;
}

.footer-hotline-col {
  margin-left: auto;
  text-align: right;
}

.footer-hotline-title {
  color: #A0A2BA;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.footer-hotline-number {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}

@media (max-width: 991.98px) {
  .footer-grid-row {
    gap: 40px;
  }
  .footer-brand-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-hotline-col {
    margin-left: 0;
    text-align: left;
    flex: 0 0 100%;
  }
}

@media (max-width: 575.98px) {
  .footer-grid-row {
    gap: 32px;
  }
  .footer-nav-col {
    flex: 0 0 100%;
  }
}

.footer-brand-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.footer-col-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 22px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #A0A2BA;
  transition: color 0.25s ease;
}

.footer-links-list a:hover {
  color: #FFFFFF;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  margin-right: 8px;
}

.social-icon-btn:hover {
  background: var(--sk-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  margin-top: 64px;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* BACK TO TOP BUTTON */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sk-primary);
  color: white;
  border: none;
  box-shadow: 0 10px 25px rgba(81, 71, 232, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--sk-primary-hover);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(81, 71, 232, 0.5);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 130px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(81, 71, 232, 0.12);
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .hero-visual-stage {
    margin-top: 30px;
  }
  .builder-ui-mockup {
    grid-template-columns: 1fr;
  }
  .builder-card-outer {
    padding: 32px 24px 75px 24px;
  }
  .smart-marketing-card {
    margin-top: -45px;
    padding: 32px 20px;
  }
  .builder-sidebar-left, .builder-sidebar-right {
    display: none;
  }
  .floating-stat-badge.badge-top-right {
    right: 0px;
    top: -10px;
  }
  .floating-stat-badge.badge-bottom-left {
    left: 0px;
  }
  .floating-stat-badge.badge-bottom-right {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 110px;
  }
  .phone-frame {
    display: none;
  }
  .floating-stat-badge {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 12px;
    animation: none !important;
    width: 100%;
    justify-content: flex-start;
  }
  .hero-visual-stage {
    padding: 0;
  }
  .final-cta-box {
    padding: 55px 22px;
  }
  .marketing-card-container {
    padding: 40px 22px;
  }
  .global-commerce-box {
    padding: 40px 22px;
  }
  .omnichannel-diagram-wrap {
    transform: scale(0.82);
    transform-origin: center center;
    margin: -15px auto;
  }
}

