/* ========================================
   VK Sales Agency - Premium Design System
   ======================================== */

/* === Google Fonts - Montserrat with Cyrillic Support === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap&subset=cyrillic,cyrillic-ext,latin,latin-ext');

/* === CSS Variables - Color Palette === */
:root {
  /* 60% - Neutral/Primary Colors */
  --color-white: #FFFFFF;
  --color-light-gray: #E6E9EF;
  --color-dark-blue: #0F172A;

  /* 30% - Secondary Colors */
  --color-blue: #0F4C81;

  /* 10% - Accent Colors */
  --color-green: #0FA47E;
  --color-yellow: #FEC52E;

  /* Semantic Colors */
  --color-background: var(--color-white);
  --color-foreground: var(--color-dark-blue);
  --color-primary: var(--color-blue);
  --color-secondary: var(--color-light-gray);
  --color-accent: var(--color-green);
  --color-accent-yellow: var(--color-yellow);

  /* Border & Muted */
  --color-border: #E2E8F0;
  --color-muted: #64748B;
  --color-muted-foreground: #475569;

  /* Navbar Colors */
  --color-navbar-dark: #171e3a;
  --color-navbar-charcoal: #242d2d;
  --color-light-blue: #4B8EC3;
  --color-light-blue-text: #A8D5F2;

  /* Background Colors */
  --color-bg-light: #f7fafb;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
}

/* === Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-md);
}

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

a:hover {
  color: var(--color-accent);
}

/* Override for button links - prevent green accent */
a.btn-primary,
a.btn-secondary,
a.btn-accent,
a.btn-gold-premium,
a.btn-blue-premium {
  color: inherit !important;
}

a.btn-primary:hover,
a.btn-secondary:hover,
a.btn-accent:hover,
a.btn-gold-premium:hover,
a.btn-blue-premium:hover {
  color: inherit !important;
}

/* Explicit override for btn-premium to prevent any inheritance issues */
a.btn-premium,
a.btn-premium:visited,
a.btn-premium:focus,
a.btn-premium:active {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

a.btn-premium:hover {
  color: var(--color-light-blue-text) !important;
  text-decoration: none !important;
}

/* Explicit override for btn-product-premium to prevent any inheritance issues */
a.btn-product-premium,
a.btn-product-premium:visited,
a.btn-product-premium:focus,
a.btn-product-premium:active {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

a.btn-product-premium:hover {
  color: var(--color-light-blue-text) !important;
  text-decoration: none !important;
}

/* Font Style Variants */
em, i {
  font-style: italic;
  font-weight: inherit;
}

strong, b {
  font-weight: 700;
}

strong em,
b em,
strong i,
b i,
em strong,
i strong,
em b,
i b {
  font-weight: 700;
  font-style: italic;
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 44px;
}

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

.btn-primary:hover {
  background-color: #0d3f6a;
  border-color: #0d3f6a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: #0d8a69;
  border-color: #0d8a69;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-height: 56px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* === Badges === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

.badge-yellow {
  background-color: var(--color-accent-yellow);
  color: var(--color-dark-blue);
}

.badge-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.badge-lg {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
}

/* === Cards === */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
}

.card-elevated {
  box-shadow: var(--shadow-lg);
}

.card-bordered {
  border: 1px solid var(--color-border);
}

.card-gradient {
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.05) 0%, rgba(15, 164, 126, 0.05) 100%);
}

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

/* === New Hero Navigation === */
.navbar-hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 1.5rem 0;
}

/* Scrolled state - Glossy effect */
.navbar-hero.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 0;
}

.navbar-container-hero {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo-hero {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-base);
  flex: 0 0 auto;
  margin-right: auto;
}

.navbar-logo-hero:hover {
  transform: scale(1.05);
}

.navbar-logo-hero img {
  height: 50px;
  width: auto;
  transition: all var(--transition-base);
}

.navbar-hero.scrolled .navbar-logo-hero img {
  height: 40px;
}

.navbar-menu-hero {
  display: none;
  list-style: none;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  margin-left: auto;
}

.navbar-menu-hero li.separator {
  color: var(--color-navbar-dark);
  font-weight: 300;
  opacity: 0.3;
  user-select: none;
  padding: 0 0.5rem;
}

.navbar-menu-hero a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-navbar-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.3px;
}

.navbar-menu-hero a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-navbar-charcoal);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.navbar-menu-hero a:hover::after,
.navbar-menu-hero a.active::after {
  width: 80%;
}

.navbar-menu-hero a:hover {
  color: var(--color-navbar-charcoal);
}

.navbar-menu-hero a.active {
  color: var(--color-navbar-charcoal);
}

.navbar-toggle-hero {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex: 0 0 auto;
  margin-left: auto;
}

.navbar-toggle-hero span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-navbar-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.navbar-mobile-hero {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 6rem 2rem 2rem;
  z-index: 999;
}

.navbar-mobile-hero.active {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeInMobile 0.3s ease-out;
}

.navbar-mobile-hero a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-navbar-dark);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
}

.navbar-mobile-hero a:hover,
.navbar-mobile-hero a.active {
  background-color: var(--color-navbar-dark);
  color: var(--color-white);
  transform: translateX(10px);
}

@keyframes fadeInMobile {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .navbar-menu-hero {
    display: flex;
  }

  .navbar-toggle-hero {
    display: none;
  }
}

/* === White Navbar Variant (for blue B2C hero) === */
/* White variant ONLY when NOT scrolled */
.navbar-hero-white:not(.scrolled) .navbar-menu-hero a {
  color: var(--color-white);
}

.navbar-hero-white:not(.scrolled) .navbar-menu-hero li.separator {
  color: var(--color-white);
  opacity: 0.5;
}

.navbar-hero-white:not(.scrolled) .navbar-menu-hero a::after {
  background: var(--color-white);
}

.navbar-hero-white:not(.scrolled) .navbar-menu-hero a:hover {
  color: var(--color-white);
  opacity: 0.8;
}

.navbar-hero-white:not(.scrolled) .navbar-menu-hero a.active {
  color: var(--color-white);
}

.navbar-hero-white:not(.scrolled) .navbar-toggle-hero span {
  background-color: var(--color-white);
}

/* When scrolled - revert to dark color */
.navbar-hero-white.scrolled .navbar-menu-hero a {
  color: var(--color-navbar-dark);
}

.navbar-hero-white.scrolled .navbar-menu-hero li.separator {
  color: var(--color-navbar-dark);
  opacity: 0.3;
}

.navbar-hero-white.scrolled .navbar-menu-hero a::after {
  background: var(--color-light-blue);
}

.navbar-hero-white.scrolled .navbar-toggle-hero span {
  background-color: var(--color-navbar-dark);
}

/* Mobile styles for white variant */
.navbar-hero-white .navbar-mobile-hero {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.navbar-hero-white .navbar-mobile-hero a {
  color: var(--color-white);
}

.navbar-hero-white .navbar-mobile-hero a:hover,
.navbar-hero-white .navbar-mobile-hero a.active {
  background-color: rgba(254, 197, 46, 0.2);
  color: var(--color-white);
}

/* === Old Navigation (keep for other pages) === */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-base);
} */

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-foreground);
  text-decoration: none;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-menu {
  display: none;
  list-style: none;
  gap: var(--spacing-sm);
}

.navbar-menu a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--color-foreground);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-foreground);
  transition: all var(--transition-base);
}

.navbar-mobile {
  display: none;
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--color-border);
}

.navbar-mobile.active {
  display: block;
}

.navbar-mobile a {
  display: block;
  padding: var(--spacing-md);
  color: var(--color-foreground);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.navbar-mobile a:hover,
.navbar-mobile a.active {
  background-color: var(--color-secondary);
}

@media (min-width: 1024px) {
  .navbar-menu {
    display: flex;
  }

  .navbar-toggle {
    display: none;
  }
}

/* === Footer === */
.footer {
  background-color: var(--color-navbar-charcoal);
  color: var(--color-white);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
}

.footer a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* === Sections === */
.section {
  padding: var(--spacing-3xl) 0;
}

/* === New Hero Section === */
.section-hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg,
    #545956 0%,
    #858382 100%);
  overflow: hidden;
}

/* White navbar background for default hero */
.section-hero .navbar-hero:not(.navbar-hero-white) {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-content-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
}

.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.hero-text-content {
  max-width: 600px;
}

/* Premium Badge with Yellow Background & Glow */
.hero-premium-badge {
  display: inline-block;
  background: var(--color-navbar-charcoal);
  color: var(--color-bg-light);
  padding: 0.625rem 1.5rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  /* box-shadow: 0 0 30px rgba(254, 197, 46, 0.4),
              0 4px 12px rgba(254, 197, 46, 0.3);
  animation: pulseGlow 3s ease-in-out infinite; */
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer effect on badge */
.hero-premium-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-premium-badge:hover::before {
  left: 100%;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(254, 197, 46, 0.4),
                0 4px 12px rgba(254, 197, 46, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(254, 197, 46, 0.6),
                0 6px 20px rgba(254, 197, 46, 0.4);
  }
}

.hero-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--color-white);
  opacity: 0.95;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Simple Hero Button - Minimal Design */
.btn-hero-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navbar-dark) !important;
  background: #04df82;
  border: none;
  border-radius: 50px;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
}

a.btn-hero-simple,
a.btn-hero-simple:visited,
a.btn-hero-simple:focus,
a.btn-hero-simple:active {
  color: var(--color-navbar-dark) !important;
  text-decoration: none !important;
}

a.btn-hero-simple:hover {
  color: var(--color-navbar-dark) !important;
  text-decoration: none !important;
}

.btn-hero-simple:hover {
  background: #8dd4ad;
}

.btn-hero-simple svg {
  transition: transform 0.3s ease;
  stroke: currentColor;
  color: var(--color-navbar-dark);
}

.btn-hero-simple:hover svg {
  transform: translateX(5px);
}

.btn-hero-simple:active {
  transform: scale(0.98);
}

/* Premium CTA Button */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3f6a 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.25),
              0 4px 12px rgba(15, 76, 129, 0.15);
  min-height: 60px;
}

/* Animated gradient overlay */
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-premium:hover::before {
  left: 100%;
}

/* Glow effect on hover */
.btn-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-light-blue), var(--color-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 76, 129, 0.35),
              0 6px 16px rgba(15, 76, 129, 0.2),
              0 0 40px rgba(75, 142, 195, 0.3);
  color: var(--color-light-blue-text) !important;
}

.btn-premium:active,
.btn-premium:focus,
.btn-premium:visited {
  color: #FFFFFF !important;
}

.btn-premium:hover::after {
  opacity: 1;
}

.btn-premium svg {
  transition: transform 0.3s ease, stroke 0.3s ease;
  stroke: currentColor;
  color: #FFFFFF;
}

.btn-premium:hover svg {
  transform: translateX(4px);
  color: var(--color-light-blue-text);
  stroke: var(--color-light-blue-text);
}

.btn-premium:active {
  transform: translateY(-1px);
}

.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* === Premium B2B Yellow Hero (Text-Only, Centered) === */
.hero-premium-b2b {
  background: linear-gradient(135deg,
    #04df82 0%,
    #04df92 50%,
    #04df82 100%);
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem !important;
  grid-template-columns: 1fr !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Moving glow effect - Top left to top right */
.hero-premium-b2b::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    transparent 70%
  );
  animation: glowMove 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes glowMove {
  0% {
    transform: translate(-20%, -20%);
    opacity: 0.5;
  }
  50% {
    transform: translate(20%, -20%);
    opacity: 0.8;
  }
  100% {
    transform: translate(-20%, -20%);
    opacity: 0.5;
  }
}

.hero-b2b-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-b2b-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-dark-blue);
  letter-spacing: -0.02em;
  animation: pulsateTitle 4s ease-in-out infinite;
}

/* Slow pulsation animation */
@keyframes pulsateTitle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

.hero-b2b-description {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--color-dark-blue);
  opacity: 0.85;
  max-width: 900px;
  margin: 0 auto;
}

/* === Premium B2C Blue Hero (Text-Only, Centered) === */
.hero-premium-b2c {
  background: linear-gradient(135deg,
    var(--color-blue) 0%,
    #0d3f6a 50%,
    var(--color-blue) 100%);
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem !important;
  grid-template-columns: 1fr !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Moving glow effect - Top left to top right */
.hero-premium-b2c::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.08) 30%,
    transparent 70%
  );
  animation: glowMove 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-b2c-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-b2c-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  letter-spacing: -0.02em;
  animation: pulsateTitle 4s ease-in-out infinite;
}

.hero-b2c-description {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--color-white);
  opacity: 0.9;
  max-width: 900px;
  margin: 0 auto;
}

/* Mobile Hero Styles */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 120px;
    padding-bottom: 2rem;
    min-height: auto;
    top: -100px
  }

  .hero-left {
    order: 1;
    padding: 1rem 0;
  }

  .hero-right {
    order: 2;
    max-height: 400px;
  }

  .hero-image {
    max-height: 400px;
  }

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

  .hero-cta {
    justify-content: center;
  }

  .section-hero {
    min-height: auto;
  }

  /* B2B Premium Hero Mobile */
  .hero-premium-b2b {
    padding: 120px 1.5rem 3rem !important;
  }

  /* B2C Premium Hero Mobile */
  .hero-premium-b2c {
    padding: 120px 1.5rem 3rem !important;
  }
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 1rem 1.5rem 0rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-right {
    max-height: 300px;
  }

  .hero-image {
    max-height: 300px;
  }
}

/* === Premium Dark Founder Section === */
.section-description {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  background-color: #1d1d1d;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.founder-content-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.founder-image-side {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.7;
  animation: slowFloat 20s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes slowFloat {
  0%, 100% {
    transform: scale(1.05) translateY(0);
  }
  50% {
    transform: scale(1.08) translateY(-10px);
  }
}

.founder-image-side:hover .founder-image {
  mix-blend-mode: normal;
  opacity: 0.9;
}

.founder-text-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  position: relative;
}

.founder-text-content {
  max-width: 600px;
}

.founder-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.founder-description {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.founder-description:last-child {
  margin-bottom: 0;
}

/* Mobile Founder Section */
@media (max-width: 1024px) {
  .section-description {
    min-height: auto;
  }

  .founder-content-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .founder-image-side {
    min-height: 50vh;
    order: 1;
  }

  .founder-text-side {
    order: 2;
    padding: 3rem 2rem;
  }

  .founder-image {
    animation: none;
  }
}

@media (max-width: 768px) {
  .founder-image-side {
    min-height: 40vh;
  }

  .founder-text-side {
    padding: 2.5rem 1.5rem;
  }

  .founder-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
  }

  .founder-description {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

/* === Simple Expertise Card - Image Top, Text Bottom === */
.profi-card .card-gradient {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: white;
}

/* Image Wrapper */
.expertise-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.expertise-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.3s ease;
}

.profi-card .card-gradient:hover .expertise-image {
  transform: scale(1.02);
}

/* Badge on Top of Image */
.expertise-badge {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Text Content Below Image */
.expertise-text-content {
  padding: 2rem 2.5rem;
  background: white;
}

.expertise-text-content p {
  color: var(--color-dark-blue);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.expertise-text-content p:last-child {
  margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .expertise-image-wrapper {
    height: 300px;
  }

  .expertise-badge {
    top: 1.5rem;
  }

  .expertise-text-content {
    padding: 1.5rem;
  }

  .expertise-text-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* === Client Logo Cards === */
.client-card {
  background: white;
  padding: 2rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.client-card:hover {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.client-card img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Mobile client cards */
@media (max-width: 768px) {
  .client-card {
    padding: 1.5rem;
  }

  .client-card img {
    max-width: 85%;
    max-height: 85%;
  }
}

/* === Apple-Style Stats Section === */
.section-stats {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(230, 233, 239, 0.2) 0%, rgba(255, 255, 255, 1) 100%);
}

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  background: black;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image on each card - Use CSS variable for easy customization */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--card-bg-image, url('../images/turgovci.jpg'));
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  border-radius: 24px;
}

.stat-card:hover::before {
  opacity: 0.99;
}


.stat-card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state - content moves to bottom with dark overlay */
.stat-card:hover .stat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state - smaller number */
.stat-card:hover .stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.stat-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state - smaller title */
.stat-card:hover .stat-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 0.25rem;
  color: var(--color-white);
}

.stat-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state - smaller description */
.stat-card:hover .stat-description {
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

/* Tablet Stats Layout - 2 columns */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stat-card {
    min-height: 350px;
  }
}

/* Mobile Stats Layout - 1 column */
@media (max-width: 768px) {
  .section-stats {
    padding: 3rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    min-height: 300px;
    border-radius: 20px;
  }

  .stat-card-content {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: clamp(3rem, 12vw, 4rem);
  }
}

.section-alt {
  background-color: rgba(230, 233, 239, 0.3);
}

.section-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(15, 76, 129, 0.8) 100%);
  color: var(--color-white);
}

.section-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, rgba(15, 164, 126, 0.8) 100%);
  color: var(--color-white);
}

/* === Forms === */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  color: var(--color-foreground);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  min-height: 48px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

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

/* === Utilities === */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-muted-foreground);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }
.gap-4 { gap: var(--spacing-xl); }

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

/* === Animations === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.fade-in-delay-1 {
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.fade-in-delay-2 {
  animation: fadeIn 0.6s ease-out 0.4s both;
}

.fade-in-delay-3 {
  animation: fadeIn 0.6s ease-out 0.6s both;
}

/* === Responsive === */
@media (max-width: 767px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }

  .section-hero {
    padding: 6rem 0 0;
  }
}


/* ============================================
   PREMIUM GLASSMORPHISM TIMELINE
   ============================================ */

.timeline-section {
  background: white;
  overflow-x: hidden;
}

.timeline-premium-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0;
  position: relative;
}

/* Vertical Timeline Line */
.timeline-premium-container::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    var(--color-primary) 0%,
    var(--color-accent) 50%,
    var(--color-primary) 100%);
  border-radius: 2px;
  opacity: 0.3;
  z-index: 5;
}

/* Timeline Item */
.timeline-premium-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
}

/* Active state (controlled by JS scroll animation) */
.timeline-premium-item.active .timeline-premium-card {
  opacity: 1;
  transform: scale(1);
}

/* Premium Dot - Fixed position, not affected by card scale */
.timeline-premium-dot {
  position: absolute;
  left: 1.5px;
  top: 2rem;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(15, 76, 129, 0.1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 15;
  transform-origin: center;
}

/* Color-coded dots based on year */
.timeline-premium-item[data-color="#0F4C81"] .timeline-premium-dot {
  border-color: #0F4C81;
  box-shadow: 0 0 0 8px rgba(15, 76, 129, 0.1);
}

.timeline-premium-item[data-color="#0FA47E"] .timeline-premium-dot {
  border-color: #0FA47E;
  box-shadow: 0 0 0 8px rgba(15, 164, 126, 0.1);
}

.timeline-premium-item[data-color="#FEC52E"] .timeline-premium-dot {
  border-color: #FEC52E;
  box-shadow: 0 0 0 8px rgba(254, 197, 46, 0.1);
}

.timeline-premium-item[data-color="#0D3F6A"] .timeline-premium-dot {
  border-color: #0D3F6A;
  box-shadow: 0 0 0 8px rgba(13, 63, 106, 0.1);
}

.timeline-premium-item.active .timeline-premium-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 12px rgba(15, 164, 126, 0.15);
}

/* Glassmorphism Card */
.timeline-premium-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08),
              0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0.93;
  transform: scale(0.92);
  transform-origin: left center;
}

/* Colored accent border (using data-color) */
.timeline-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color, var(--color-primary));
  transition: height 0.3s ease;
}

/* Set accent color from data attribute */
.timeline-premium-item[data-color="#0F4C81"] .timeline-premium-card::before {
  background: #0F4C81;
}

.timeline-premium-item[data-color="#0FA47E"] .timeline-premium-card::before {
  background: #0FA47E;
}

.timeline-premium-item[data-color="#FEC52E"] .timeline-premium-card::before {
  background: #FEC52E;
}

.timeline-premium-item[data-color="#0D3F6A"] .timeline-premium-card::before {
  background: #0D3F6A;
}

/* Hover effects */
.timeline-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12),
              0 4px 16px rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.85);
}

.timeline-premium-card:hover::before {
  height: 6px;
}

/* Year Badge */
.timeline-premium-year {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Title */
.timeline-premium-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

/* List */
.timeline-premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-premium-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.timeline-premium-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.timeline-premium-list li:hover {
  color: var(--color-dark-blue);
  padding-left: 2.25rem;
}

.timeline-premium-list li:hover::before {
  width: 12px;
  height: 12px;
  top: 0.5rem;
}

/* Mobile Timeline */
@media (max-width: 768px) {
  .timeline-premium-container {
    padding: 2rem 0;
  }

  .timeline-premium-container::before {
    left: 7px;
    width: 2px;
  }

  .timeline-premium-item {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
  }

  .timeline-premium-dot {
    left: 0;
    width: 16px;
    height: 16px;
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 0 6px rgba(15, 76, 129, 0.1);
  }

  .timeline-premium-card {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .timeline-premium-year {
    font-size: 2rem;
  }

  .timeline-premium-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .timeline-premium-list li {
    font-size: 0.95rem;
    padding-left: 1.75rem;
  }
}

/* === Premium Gold CTA Section === */
.section-cta-gold {
  padding: 0;
  background: linear-gradient(135deg,
    #551a12 0%,
    #641f16 50%,
    #481610 100%);
  position: relative;
  overflow: hidden;
}

/* Animated gradient overlay */
.section-cta-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 75%,
    transparent 100%);
  background-size: 200% 200%;
  animation: goldShimmer 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes goldShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* 2-Column Layout */
.cta-gold-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 600px;
}

.cta-gold-content {
  padding: 4rem 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-gold-image {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.cta-gold-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin: 0;
  padding: 0;
}

.cta-gold-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cta-gold-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-white);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Premium White Glowing Button */
.btn-gold-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  background-size: 200% 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
              0 8px 24px rgba(254, 197, 46, 0.3),
              0 4px 12px rgba(0, 0, 0, 0.1);
  animation: pulseGlowWhite 3s ease-in-out infinite;
  min-height: 64px;
}

/* Pulsing glow animation */
@keyframes pulseGlowWhite {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
                0 8px 24px rgba(254, 197, 46, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6),
                0 12px 32px rgba(254, 197, 46, 0.4),
                0 6px 16px rgba(0, 0, 0, 0.15);
  }
}

/* Gradient background shift on hover */
.btn-gold-premium:hover {
  background-position: 100% 0;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.7),
              0 16px 40px rgba(254, 197, 46, 0.5),
              0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Shimmer effect */
.btn-gold-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-gold-premium:hover::before {
  left: 100%;
}

/* Animated border glow */
.btn-gold-premium::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.8),
    rgba(254, 197, 46, 0.6),
    rgba(255, 255, 255, 0.8)
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-gold-premium:hover::after {
  opacity: 1;
}

.btn-gold-premium svg {
  transition: transform 0.3s ease;
}

.btn-gold-premium:hover svg {
  transform: translateX(5px);
}

.btn-gold-premium:active {
  transform: translateY(-2px) scale(0.98);
}

/* Mobile CTA Gold */
@media (max-width: 1024px) {
  .cta-gold-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cta-gold-content {
    order: 1;
    padding: 3rem 2rem;
    text-align: center;
    align-items: center;
  }

  .cta-gold-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-gold-image {
    order: 2;
    height: auto;
    margin: 0;
    padding: 0;
    align-items: flex-end;
  }

  .cta-gold-image img {
    max-height: 400px;
    margin: 0;
    padding: 0;
    display: block;
  }
}

@media (max-width: 768px) {
  .cta-gold-content {
    padding: 3rem 1.5rem 2rem;
  }

  .btn-gold-premium {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
  }

  .cta-gold-image {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .cta-gold-image img {
    max-height: 350px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    vertical-align: bottom;
  }
}

/* === Premium B2B Logic Cards - 2 Column Layout === */
.logic-b2b {
  background: white;
  padding: 5rem 0;
}

.logic-b2b-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left Column - Stacked Cards */
.logic-cards-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Right Column - Image */
.logic-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logic-image-column img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
}

/* Glassmorphism Card - Rectangular Horizontal Layout */
.logic-card {
  position: relative;
  padding: 2rem 2.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(15, 76, 129, 0.08),
              0 2px 8px rgba(15, 76, 129, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  min-height: auto;
}

/* Glowing effect on card border */
.logic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg,
    rgba(15, 76, 129, 0.2),
    rgba(15, 76, 129, 0.05),
    rgba(15, 76, 129, 0.2)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Sequential glowing animation - 1, then 2, then 3, repeat */
.logic-card[data-step="1"] {
  animation: sequentialGlow 9s ease-in-out infinite;
}

.logic-card[data-step="2"] {
  animation: sequentialGlow 9s ease-in-out infinite 3s;
}

.logic-card[data-step="3"] {
  animation: sequentialGlow 9s ease-in-out infinite 6s;
}

@keyframes sequentialGlow {
  0%, 33.33%, 100% {
    box-shadow: 0 8px 32px rgba(15, 76, 129, 0.08),
                0 2px 8px rgba(15, 76, 129, 0.04);
  }
  16.66% {
    box-shadow: 0 12px 40px rgba(15, 76, 129, 0.15),
                0 4px 12px rgba(15, 76, 129, 0.08),
                0 0 60px rgba(15, 76, 129, 0.2);
  }
}

.logic-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 40px rgba(15, 76, 129, 0.15),
              0 6px 16px rgba(15, 76, 129, 0.1);
}

.logic-card:hover::before {
  opacity: 1;
}

/* Number Badge - Left Side */
.logic-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3f6a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.25);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin: 0;
}

.logic-card:hover .logic-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(15, 76, 129, 0.35);
}

/* Text Content Area */
.logic-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title */
.logic-title {
  font-weight: 900;
  font-size: 1.375rem;
  color: var(--color-dark-blue);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  margin-top: 0;
}

/* Description */
.logic-description {
  font-size: 1.05rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Logic Layout */
@media (max-width: 1024px) {
  .logic-b2b-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .logic-image-column {
    display: none;
  }

  .logic-cards-column {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .logic-b2b {
    padding: 3rem 0;
  }

  .logic-card {
    padding: 2rem;
    flex-direction: row;
    gap: 1.5rem;
  }

  .logic-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .logic-title {
    font-size: 1.25rem;
  }

  .logic-description {
    font-size: 1rem;
  }
}

/* === Premium Audit B2B Section - Yellow Background === */
.audit-b2b {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 2rem;
  background: linear-gradient(135deg,
  #04df82 0%,
  #04df92 50%,
  #04df82 100%);
  position: relative;
  overflow: hidden;
}

.audit-b2b-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Badge + Title */
.audit-b2b-left {
  display: flex;
  flex-direction: column;
}

.audit-step-badge {
  display: inline-block;
  background: var(--color-dark-blue);
  color: var(--color-bg-light);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.audit-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-dark-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Right Side - Summary + List + CTA */
.audit-b2b-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.audit-summary-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0.9;
}

.audit-summary-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-dark-blue);
  opacity: 0.85;
  margin: 0;
}

/* Premium List with Styled Bullets */
.audit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.audit-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-dark-blue);
  opacity: 0.85;
}

.audit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background: var(--color-dark-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(15, 23, 42, 0.3);
}

.audit-result {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin: 0;
  padding-top: 0.5rem;
}

/* Audit Note Box */
.audit-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.08);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-top: 0.5rem;
}

.audit-note i {
  font-size: 1.25rem;
  color: var(--color-dark-blue);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.audit-note p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin: 0;
  line-height: 1.5;
}

/* Audit Price Box */
.audit-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.06);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-dark-blue);
}

.audit-price-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.audit-price-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Mobile Audit Section */
@media (max-width: 1024px) {
  .audit-b2b {
    padding: 3rem 1.5rem;
  }

  .audit-b2b-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .audit-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .audit-b2b {
    padding: 3rem 1.5rem;
  }

  .audit-b2b-wrapper {
    gap: 2rem;
  }

  .audit-summary-text,
  .audit-list li {
    font-size: 1rem;
  }

  .audit-result {
    font-size: 1.05rem;
  }

  .audit-price {
    padding: 1rem 1.25rem;
  }

  .audit-price-amount {
    font-size: 1.5rem;
  }
}

/* === B2C Service Section - Blue Background (Same structure as B2B but blue/white) === */
.service-b2c {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 2rem;
  background: linear-gradient(135deg,
    var(--color-blue) 0%,
    #0d3f6a 50%,
    var(--color-blue) 100%);
  position: relative;
  overflow: hidden;
}

.service-b2c-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Badge + Title */
.service-b2c-left {
  display: flex;
  flex-direction: column;
}

.service-step-badge {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-bg-light);
  padding: 0.5rem 1.25rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.service-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Right Side - Summary + List + CTA */
.service-b2c-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-summary-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-white);
  opacity: 0.9;
  margin: 0;
}

/* Premium List with White Dots */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.service-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.9;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-result {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  padding-top: 0.5rem;
}

/* Service Price Box - For Blue B2C Sections */
.service-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-white);
}

.service-price-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.service-price-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Premium White Button for Blue Background */
.btn-blue-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  background-size: 200% 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
              0 8px 24px rgba(15, 76, 129, 0.3),
              0 4px 12px rgba(0, 0, 0, 0.1);
  animation: pulseGlowWhiteBlue 3s ease-in-out infinite;
  min-height: 64px;
  width: fit-content;
}

@keyframes pulseGlowWhiteBlue {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
                0 8px 24px rgba(15, 76, 129, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5),
                0 12px 32px rgba(15, 76, 129, 0.4),
                0 6px 16px rgba(0, 0, 0, 0.15);
  }
}

.btn-blue-premium:hover {
  background-position: 100% 0;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.6),
              0 16px 40px rgba(15, 76, 129, 0.5),
              0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

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

.btn-blue-premium:hover::before {
  left: 100%;
}

.btn-blue-premium svg {
  transition: transform 0.3s ease;
}

.btn-blue-premium:hover svg {
  transform: translateX(5px);
}

.btn-blue-premium:active {
  transform: translateY(-2px) scale(0.98);
}

/* Mobile B2C Service Section */
@media (max-width: 1024px) {
  .service-b2c {
    padding: 3rem 1.5rem;
  }

  .service-b2c-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .service-b2c {
    padding: 3rem 1.5rem;
  }

  .service-b2c-wrapper {
    gap: 2rem;
  }

  .service-summary-text,
  .service-list li {
    font-size: 1rem;
  }

  .service-result {
    font-size: 1.05rem;
  }

  .service-price {
    padding: 1rem 1.25rem;
  }

  .service-price-amount {
    font-size: 1.5rem;
  }

  .btn-blue-premium {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
  }
}

/* === Premium Accordion Section - Glassmorphism === */
.audit-b2b-description {
  background: white;
}

/* Special Info Section - Always Visible */
.special-info-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(15, 76, 129, 0.08);
}

.special-info-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.special-info-intro {
  font-size: 1.125rem;
  color: var(--color-dark-blue);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

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

.special-info-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-dark-blue);
  opacity: 0.85;
}

.special-info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Premium Accordion */
.premium-accordion {
  margin-bottom: 1.5rem;
}

/* Accordion Header - Clickable */
.accordion-header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.accordion-header:hover {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 76, 129, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.accordion-header.active {
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.75);
}

.accordion-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-header-content i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.accordion-header h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  margin: 0;
}

.accordion-chevron {
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-chevron {
  transform: rotate(180deg);
}

/* Accordion Content - Collapsible */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.accordion-content.active {
  max-height: 2000px;
}

.accordion-content-inner {
  padding: 2rem;
}

/* Accordion Item Box (for items inside accordion) */
.accordion-item-box {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.accordion-item-box:last-child {
  margin-bottom: 0;
}

.accordion-item-box i {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.accordion-item-box h5 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-dark-blue);
  margin-bottom: 0.5rem;
}

.accordion-item-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
  margin: 0;
}

/* Accordion Text */
.accordion-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-dark-blue);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.accordion-text:last-child {
  margin-bottom: 0;
}

/* Accordion Subsection Title */
.accordion-subsection-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.accordion-subsection-title:first-child {
  margin-top: 0;
}

/* Accordion List */
.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-list:last-child {
  margin-bottom: 0;
}

.accordion-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-dark-blue);
  opacity: 0.85;
}

.accordion-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Mobile Accordion */
@media (max-width: 768px) {
  .special-info-section {
    padding: 2rem 1.5rem;
  }

  .special-info-title {
    font-size: 1.5rem;
  }

  .accordion-header {
    padding: 1.5rem 1.25rem;
  }

  .accordion-header-content i {
    font-size: 1.25rem;
  }

  .accordion-header h4 {
    font-size: 1.125rem;
  }

  .accordion-content-inner {
    padding: 1.5rem 1.25rem;
  }

  .accordion-item-box {
    gap: 1rem;
  }

  .accordion-item-box i {
    font-size: 1.25rem;
  }
}

/* === Premium Products Section === */
.products-section {
  background: var(--color-light-gray);
}

/* Product Box with Image (Book) */
.product-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(15, 76, 129, 0.08);
  transition: all 0.4s ease;
}

.product-box:hover {
  box-shadow: 0 12px 40px rgba(15, 76, 129, 0.12);
}

.product-image-side {
  overflow: hidden;
  border-radius: 16px;
}

.product-image-side img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.product-box:hover .product-image-side img {
  transform: scale(1.03);
}

.product-content-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--color-dark-blue);
  line-height: 1.2;
  margin: 0;
}

.product-author {
  font-size: 1.25rem;
  color: var(--color-dark-blue);
  opacity: 0.8;
  margin: 0;
}

.product-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted-foreground);
  margin: 0;
}

.product-highlight {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-dark-blue);
  opacity: 0.9;
  margin: 0;
}

/* Glass Box Products (Notebook, Business Club) */
.product-box-glass {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(15, 76, 129, 0.06);
}

.product-box-glass:hover {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(15, 76, 129, 0.12);
  transform: translateY(-4px);
}

.product-glass-header {
  padding: 2.5rem 3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.product-glass-header i {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.product-glass-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--color-dark-blue);
  margin: 0;
}

.product-glass-content {
  padding: 0 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-glass-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted-foreground);
  margin: 0;
}

.product-glass-subtitle {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-glass-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-glass-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-dark-blue);
  opacity: 0.85;
}

.product-glass-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Premium Product Button with Glow */
.btn-product-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3f6a 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.25);
  animation: productButtonGlow 3s ease-in-out infinite;
  width: fit-content;
}

@keyframes productButtonGlow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.25),
                0 0 30px rgba(15, 76, 129, 0.15);
  }
  50% {
    box-shadow: 0 12px 32px rgba(15, 76, 129, 0.35),
                0 0 40px rgba(15, 76, 129, 0.25);
  }
}

.btn-product-premium i {
  font-size: 1.25rem;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.btn-product-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 76, 129, 0.4),
              0 0 50px rgba(75, 142, 195, 0.25);
  color: var(--color-light-blue-text) !important;
}

.btn-product-premium:hover i {
  color: var(--color-light-blue-text);
}

.btn-product-premium:active,
.btn-product-premium:focus,
.btn-product-premium:visited {
  color: #FFFFFF !important;
}

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

.btn-product-premium:hover::before {
  left: 100%;
}

.btn-product-premium svg {
  transition: transform 0.3s ease, stroke 0.3s ease;
  stroke: currentColor;
  color: #FFFFFF;
}

.btn-product-premium:hover svg {
  transform: translateX(3px);
  color: var(--color-light-blue-text);
  stroke: var(--color-light-blue-text);
}

/* Mobile Products */
@media (max-width: 1024px) {
  .product-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
  }

  .product-image-side {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .product-box {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .product-glass-header {
    padding: 2rem 1.5rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .product-glass-content {
    padding: 0 1.5rem 2rem;
  }

  .btn-product-premium {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

/* === Combined Number One + VSL Section === */
.vsl-combined-section {
  background: var(--color-bg-light);
  padding: 4rem 0;
}

.vsl-combined-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Number One Content - Simple Text */
.number-one-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.number-one-content {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.number-one-hash {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-navbar-charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.number-one-text {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navbar-charcoal);
  line-height: 1.3;
}

.number-one-text div {
  line-height: 1.3;
}

/* Mobile Number One */
@media (max-width: 768px) {
  .vsl-combined-section {
    padding: 3rem 0;
  }

  .number-one-wrapper {
    margin-bottom: 2rem;
  }

  .number-one-content {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .number-one-hash {
    font-size: 3rem;
  }

  .number-one-text {
    font-size: 1.25rem;
    text-align: center;
  }
}

.vsl-combined-section .vsl-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg,
    rgba(15, 76, 129, 0.05) 0%,
    rgba(15, 164, 126, 0.05) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08),
              0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.vsl-combined-section .vsl-video-wrapper:hover {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12),
              0 4px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-4px);
}

/* Placeholder with gradient background */
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(15, 76, 129, 0.03) 0%,
    rgba(230, 233, 239, 0.5) 50%,
    rgba(15, 164, 126, 0.03) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Premium Play Button */
.vsl-play-button {
  position: relative;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d3f6a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(15, 76, 129, 0.3),
              0 4px 16px rgba(15, 76, 129, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: vslPulse 3s ease-in-out infinite;
}

/* Pulsing glow animation */
@keyframes vslPulse {
  0%, 100% {
    box-shadow: 0 12px 40px rgba(15, 76, 129, 0.3),
                0 4px 16px rgba(15, 76, 129, 0.2),
                0 0 40px rgba(15, 76, 129, 0.2);
  }
  50% {
    box-shadow: 0 16px 48px rgba(15, 76, 129, 0.4),
                0 6px 20px rgba(15, 76, 129, 0.3),
                0 0 60px rgba(15, 76, 129, 0.3);
  }
}

.vsl-video-wrapper:hover .vsl-play-button {
  transform: scale(1.1);
  box-shadow: 0 16px 48px rgba(15, 76, 129, 0.4),
              0 6px 20px rgba(15, 76, 129, 0.3),
              0 0 60px rgba(75, 142, 195, 0.35);
}

/* Play icon (triangle) */
.vsl-play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent white;
  margin-left: 6px;
}

/* Outer ring effect */
.vsl-play-button::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(15, 76, 129, 0.3);
  border-radius: 50%;
  animation: vslRingPulse 3s ease-in-out infinite;
}

@keyframes vslRingPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* YouTube iframe (hidden by default, shown when video is added) */
.vsl-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* HTML5 Video Element */
.vsl-video-wrapper video.vsl-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  object-fit: cover;
  background: #000;
}

/* Hide placeholder when iframe or video exists */
.vsl-video-wrapper:has(iframe) .vsl-placeholder,
.vsl-video-wrapper:has(video) .vsl-placeholder {
  display: none;
}

/* Mobile Combined VSL Section */
@media (max-width: 768px) {
  .vsl-combined-section .container {
    padding: 0 1.5rem;
  }

  .vsl-combined-section .vsl-video-wrapper {
    border-radius: 16px;
  }

  .vsl-play-button {
    width: 70px;
    height: 70px;
  }

  .vsl-play-button::before {
    border-width: 12px 0 12px 20px;
    margin-left: 5px;
  }

  .vsl-play-button::after {
    inset: -10px;
  }
}

/* === Premium Publika Banner - Full Width (Optimized) === */
.publika-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/publica_banner.jpg');
  background-size: cover;
  background-position: 50% 37%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}

/* Simplified overlay for better performance */
.publika-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.25);
  z-index: 1;
}

/* Content container */
.publika-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

/* Optimized Glowing Headline - Reduced animations */
.publika-banner-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
               0 2px 8px rgba(0, 0, 0, 0.6);
  animation: publikaGlowOptimized 6s ease-in-out infinite;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Simplified glowing animation - GPU optimized */
@keyframes publikaGlowOptimized {
  0%, 100% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
}

/* Mobile Publika Banner */
@media (max-width: 768px) {
  .publika-banner {
    min-height: 40vh;
    background-attachment: scroll;
  }

  .publika-banner-content {
    padding: 3rem 1.5rem;
  }

  .publika-banner-headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.4;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .publika-banner-headline {
    animation: none;
  }
}

/* === Premium Modal === */
.premium-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

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

.premium-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.premium-modal-content {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  text-align: center;
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.premium-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.premium-modal-icon.success {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-light-blue) 100%);
  color: white;
}

.premium-modal-icon.error {
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
  color: white;
}

.premium-modal-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
}

.premium-modal-message {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

.premium-modal-content .btn-premium {
  min-width: 150px;
}

/* Mobile Modal */
@media (max-width: 768px) {
  .premium-modal-content {
    padding: 2.5rem 2rem;
    width: 92%;
  }

  .premium-modal-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .premium-modal-title {
    font-size: 1.5rem;
  }

  .premium-modal-message {
    font-size: 1rem;
  }
}

/* Stats Counter Animation */
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }
}

