/* ====================================
   MODERN B2B WEBSITE - ULTRA PREMIUM CSS
   Features: CSS Variables, Grid, Flexbox, 
   Animations, Glassmorphism, 3D Effects
   ==================================== */

:root {
  /* Color System - Modern Palette */
  --bg-primary: #0a0e13;
  --bg-secondary: #0f1419;
  --bg-tertiary: #141b22;
  
  /* Surface Colors with Transparency */
  --surface-glass: rgba(255, 255, 255, 0.03);
  --surface-glass-hover: rgba(255, 255, 255, 0.06);
  --surface-elevated: rgba(255, 255, 255, 0.08);
  
  /* Border System */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  
  /* Text Hierarchy */
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-tertiary: rgba(255, 255, 255, 0.60);
  
  /* Accent Colors - Vibrant Gradient System */
  --accent-primary: #5dd9a0;
  --accent-secondary: #4fbfe0;
  --accent-tertiary: #9270d9;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #5dd9a0 0%, #4fbfe0 100%);
  --gradient-premium: linear-gradient(135deg, #5dd9a0 0%, #4fbfe0 50%, #9270d9 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(93, 217, 160, 0.15), transparent 70%);
  
  /* Shadows - Layered System */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 32px rgba(93, 217, 160, 0.3);
  --shadow-glow-strong: 0 0 48px rgba(93, 217, 160, 0.5);
  
  /* Blur Effects */
  --blur-glass: blur(24px) saturate(180%);
  --blur-strong: blur(40px) saturate(200%);
  
  /* Radius System */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Animation Timing */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ====================================
   BASE & RESET
   ==================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text-primary);
  background: 
    radial-gradient(ellipse 1200px 800px at 15% 10%, rgba(93, 217, 160, 0.08), transparent 50%),
    radial-gradient(ellipse 1000px 700px at 85% 20%, rgba(79, 191, 224, 0.07), transparent 50%),
    radial-gradient(ellipse 1000px 700px at 50% 90%, rgba(146, 112, 217, 0.06), transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Animated Background Gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 800px 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(116, 243, 181, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* Noise Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====================================
   UTILITY CLASSES
   ==================================== */

.container {
  width: min(1200px, calc(100% - var(--space-2xl)));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: var(--transition-fast);
}

.skip-link:focus {
  left: var(--space-md);
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ====================================
   TOPBAR / NAVIGATION
   ==================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: var(--blur-glass);
  background: rgba(10, 14, 19, 0.7);
  transition: var(--transition-base);
}

.topbar.scrolled {
  background: rgba(10, 14, 19, 0.9);
  border-bottom-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: var(--transition-base);
}

.brand:hover {
  transform: translateY(-2px);
}

.brand__mark {
  width: 60px;
  height: 60px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand__tag {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Navigation */
.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  cursor: pointer;
  transition: var(--transition-base);
}

.nav__toggle:hover {
  background: var(--surface-glass-hover);
  border-color: var(--border-strong);
  transform: scale(1.05);
}

.nav__toggleLine {
  display: block;
  height: 2px;
  width: 20px;
  margin: 5px auto;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__menu a {
  position: relative;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.nav__menu a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.nav__menu a:hover {
  color: var(--text-primary);
  background: var(--surface-glass);
}

.nav__menu a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
  padding: 4px;
  background: var(--surface-glass);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.lang-btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-base);
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--text-primary);
  background: var(--surface-glass-hover);
}

.lang-btn.active {
  color: var(--bg-primary);
  background: var(--accent-primary);
  box-shadow: 0 2px 8px rgba(93, 217, 160, 0.3);
}

/* ====================================
   BUTTONS - ULTRA MODERN
   ==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--gradient-primary);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  will-change: transform;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: var(--shadow-md);
}

.btn:active::after {
  width: 300px;
  height: 300px;
  transition: width 0s, height 0s;
}

.btn--ghost {
  background: var(--surface-glass);
  color: var(--text-primary);
  border-color: var(--border-medium);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--surface-elevated);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md), 0 0 24px rgba(116, 243, 181, 0.2);
}

.btn--small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--wide {
  width: 100%;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
  padding: var(--space-3xl) 0;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__copy {
  animation: fadeInUp 0.8s ease-out;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: var(--space-lg) var(--space-2xl);
  align-items: start;
}

.hero__copy > .pill,
.hero__copy > h1,
.hero__copy > .typing-text,
.hero__copy > .lead,
.hero__copy > .hero__cta,
.hero__copy > .hero__meta {
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: var(--space-md) 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

.accent {
  color: var(--accent-primary);
  position: relative;
  display: inline-block;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  opacity: 0.5;
}

.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: var(--space-lg) 0;
}

.typing-text {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--accent-primary);
  max-width: 60ch;
  margin: var(--space-lg) 0;
  font-weight: 500;
  min-height: 1.5em;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  position: relative;
  width: calc(100% + min(34vw, 420px));
  z-index: 1;
}

.metaCard {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.metaCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(116, 243, 181, 0.1), transparent);
  transition: left 0.6s;
}

.metaCard:hover {
  transform: translateY(-4px);
  background: var(--surface-glass-hover);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-md), 0 0 20px rgba(116, 243, 181, 0.2);
}

.metaCard:hover::before {
  left: 100%;
}

.metaCard__title {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.metaCard__value {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent-primary);
  margin: var(--space-xs) 0;
  line-height: 1;
}

.metaCard__hint {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  animation: none;
  grid-column: 2;
  grid-row: 1 / span 6;
  align-self: start;
  margin-top: clamp(120px, 12vw, 160px);
  margin-inline: 0;
  margin-left: clamp(100px, 14vw, 180px);
  width: 100%;
  max-width: 850px;
  justify-self: end;
  z-index: 2;
}

.visualFrame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(116, 243, 181, 0.4);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  box-shadow: var(--shadow-xl), 0 0 48px rgba(116, 243, 181, 0.25), inset 0 0 20px rgba(116, 243, 181, 0.1);
  position: relative;
  transform-style: preserve-3d;
  transition: var(--transition-slow);
  width: 100%;
  aspect-ratio: 16 / 10;
}

.visualFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.visualFrame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(116, 243, 181, 0.1), rgba(103, 215, 255, 0.1));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.visualFrame:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(2deg) translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 64px rgba(116, 243, 181, 0.4), inset 0 0 20px rgba(116, 243, 181, 0.15);
  border-color: rgba(116, 243, 181, 0.6);
}

.visualFrame:hover::before {
  opacity: 1;
}

.glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(116, 243, 181, 0.25), transparent 70%);
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
}

/* ====================================
   SECTIONS
   ==================================== */

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--alt {
  padding: var(--space-3xl) 0;
  position: relative;
}

.sectionHead {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
}

.sectionHead h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  background: var(--gradient-premium);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  position: relative;
}

.sectionHead h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
}

.sectionHead p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 70ch;
  margin: var(--space-lg) auto 0;
}

/* ====================================
   GRID LAYOUTS
   ==================================== */

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

/* Keep the two service cards centered when there are only 2 items */
#services .grid3 {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  max-width: 900px;
  margin-inline: auto;
  margin-top: var(--space-xl);
}

/* ====================================
   CARDS - PREMIUM DESIGN
   ==================================== */

.card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-12px) perspective(1000px) rotateX(2deg);
  box-shadow: var(--shadow-xl), 0 0 48px rgba(116, 243, 181, 0.2);
  border-color: var(--accent-primary);
  background: var(--surface-elevated);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover::after {
  opacity: 1;
}

.card:active {
  transform: translateY(-6px) scale(0.98);
  opacity: 0.9;
}

.card h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.card--service .iconCircle {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  margin-bottom: var(--space-md);
  font-size: 32px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: var(--transition-bounce);
}

.card--service:hover .iconCircle {
  transform: rotate(360deg) scale(1.15);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ====================================
   PRICING CARDS
   ==================================== */

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.pricingGrid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin-inline: auto;
}

.priceCard {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}

.priceCard::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.priceCard::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
}

.priceCard > * {
  position: relative;
  z-index: 1;
}

.priceCard:hover {
  transform: translateY(-16px) scale(1.02) perspective(1000px) rotateX(3deg);
  background: linear-gradient(135deg, #2C6B5F 0%, #256B7A 50%, #216585 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.priceCard:hover .priceCard__top h3 {
  color: #ffffff;
}

.priceCard:hover .muted {
  color: rgba(255, 255, 255, 0.85);
}

.priceCard:hover .list li {
  color: rgba(255, 255, 255, 0.85);
}

.priceCard:hover .priceMetric {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.priceCard:hover .priceMetric__big {
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.priceCard:hover .priceMetric__label {
  color: rgba(255, 255, 255, 0.85);
}

.priceCard:hover .btn {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.priceCard:hover::before {
  opacity: 1;
}

.priceCard:hover::after {
  opacity: 0.12;
}

.priceCard:active {
  transform: translateY(-8px) scale(1);
  opacity: 0.88;
}

.priceCard--featured {
  background: linear-gradient(135deg, rgba(116, 243, 181, 0.12), rgba(103, 215, 255, 0.08));
  border: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-xl), 0 0 14px rgba(116, 243, 181, 0.08);
  transform: scale(1.05);
}

.priceCard--featured .priceCard__top h3 {
  color: var(--text-primary);
}

.priceCard--featured .muted {
  color: var(--text-secondary);
}

.priceCard--featured .list li {
  color: var(--text-secondary);
}

.priceCard--featured .priceMetric {
  background: var(--surface-elevated);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.priceCard--featured .priceMetric__big {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.priceCard--featured .priceMetric__label {
  color: var(--text-secondary);
}

.priceCard--featured .badge {
  background: var(--gradient-primary);
  color: var(--bg-primary);
}

.priceCard--featured:hover {
  background: linear-gradient(135deg, #7DF2C0 0%, #70EED8 50%, #6AEAFF 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-16px) scale(1.08) perspective(1000px) rotateX(3deg);
  color: #ffffff;
}

.priceCard--featured:hover .priceCard__top h3 {
  color: #ffffff;
}

.priceCard--featured:hover .muted {
  color: rgba(255, 255, 255, 0.9);
}

.priceCard--featured:hover .list li {
  color: rgba(255, 255, 255, 0.9);
}

.priceCard--featured:hover .priceMetric {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.priceCard--featured:hover .priceMetric__big {
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

.priceCard--featured:hover .priceMetric__label {
  color: rgba(255, 255, 255, 0.9);
}

.priceCard--featured:hover .badge {
  background: rgba(255, 255, 255, 0.8);
  color: #0a0e13;
}

.priceCard--featured:active {
  transform: translateY(-8px) scale(1.04);
  opacity: 0.88;
}

.badge {
  position: absolute;
  top: calc(var(--space-md) - 12px);
  right: var(--space-md);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
  animation: pulse 2s ease-in-out infinite;
}

.priceCard__top {
  margin-bottom: var(--space-lg);
}

.priceCard__top h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.priceMetric {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--surface-elevated);
  border: 1px solid var(--border-strong);
  margin: var(--space-lg) 0;
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  transition: var(--transition-base);
}

.priceCard:hover .priceMetric {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(116, 243, 181, 0.15), rgba(103, 215, 255, 0.12));
  box-shadow: var(--shadow-md), inset 0 0 24px rgba(116, 243, 181, 0.1);
}

.priceMetric__big {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 32px rgba(116, 243, 181, 0.5);
}

.priceMetric__label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
}

/* ====================================
   LOGISTICS SECTION
   ==================================== */

.section--logistics {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.logisticsWrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.logisticsIntro {
  text-align: left;
  display: block;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(116, 243, 181, 0.12) 0%, transparent 48%),
    radial-gradient(100% 100% at 100% 100%, rgba(103, 215, 255, 0.12) 0%, transparent 46%),
    var(--surface-glass);
  backdrop-filter: var(--blur-strong);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-xl), 0 0 48px rgba(116, 243, 181, 0.15);
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.logisticsIntro::before {
  content: '';
  position: absolute;
  inset: -35% -15% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(116, 243, 181, 0.18), transparent 68%);
  pointer-events: none;
}

.logisticsIntro::after {
  content: '';
  position: absolute;
  inset: auto auto -45% -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(103, 215, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.iconCircle--large {
  width: 88px;
  height: 88px;
  font-size: 42px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #62e4ba 0%, #4dcde3 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg), 0 0 38px rgba(77, 205, 227, 0.4);
  animation: float 6s ease-in-out infinite;
}

.logisticsIntro h3 {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.14;
  max-width: 24ch;
  margin-inline: auto;
}

.logisticsIntro p {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 70ch;
  margin: 0 auto var(--space-md);
}

.logisticsIntro .mini {
  margin: 0;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7f7eb;
  background: rgba(93, 217, 160, 0.14);
  border: 1px solid rgba(93, 217, 160, 0.35);
  border-radius: var(--radius-full);
  padding: 8px 14px;
}

.logisticsIntro .list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.logisticsIntro .list li {
  margin: 0 0 10px;
  padding: 10px 12px 10px 34px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  position: relative;
  line-height: 1.6;
}

.logisticsIntro .list li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 12px rgba(116, 243, 181, 0.65);
}

.logisticsIntro .list li::marker {
  content: '';
}

.logisticsIntro__header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.logisticsIntro__icon {
  margin: 0 auto var(--space-md);
}

.logisticsIntro__header h3 {
  max-width: 700px;
  margin: 0 auto var(--space-sm);
  text-align: center;
}

.logisticsIntro__accent {
  margin: 0 auto var(--space-sm);
  color: var(--accent-primary);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.25;
  text-align: center;
}

.logisticsIntro__subline {
  margin: 0 auto var(--space-xl);
  color: var(--text-primary);
  font-size: 17px;
  max-width: 700px;
  text-align: center;
}

.logisticsIntro__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.logisticsIntro__columns > div {
  min-width: 0;
}

.logisticsIntro__columns .mini {
  margin-bottom: var(--space-md);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-primary);
}

.logisticsOptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.logisticsCard {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}

.logisticsCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.logisticsCard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.logisticsCard > * {
  position: relative;
  z-index: 1;
}

.logisticsCard:hover {
  transform: translateY(-10px) perspective(1000px) rotateX(2deg);
  box-shadow: var(--shadow-xl), 0 0 48px rgba(116, 243, 181, 0.2);
  border-color: var(--accent-primary);
}

.logisticsCard:hover::before {
  transform: scaleX(1);
}

.logisticsCard:hover::after {
  opacity: 1;
}

.logisticsCard:active {
  transform: translateY(-5px) scale(0.98);
  opacity: 0.88;
}

.logisticsCard--featured {
  border: 2px solid var(--accent-primary);
  background: linear-gradient(135deg, rgba(116, 243, 181, 0.1), rgba(103, 215, 255, 0.08));
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.logisticsCard--featured:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

.logisticsCard--featured:active {
  transform: translateY(-7px) scale(1);
  opacity: 0.88;
}

.logisticsCard__header {
  margin-bottom: var(--space-lg);
}

.logisticsCard__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--surface-elevated);
  border: 1px solid var(--border-strong);
  color: var(--accent-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.logisticsCard__badge--pro {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  border: none;
  box-shadow: var(--shadow-md);
  animation: pulse 2s ease-in-out infinite;
}

.logisticsCard__header h4 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
}

.logisticsCard__body {
  flex: 1;
  margin-bottom: var(--space-lg);
}

.logisticsCard__duration {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(116, 243, 181, 0.15), rgba(103, 215, 255, 0.12));
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: var(--space-md);
}

/* ====================================
   LISTS
   ==================================== */

.list {
  padding-left: var(--space-lg);
  margin: var(--space-md) 0;
  line-height: 1.8;
}

.list li {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.list li::marker {
  color: var(--accent-primary);
}

.list--compact li {
  font-size: 14px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

/* ====================================
   FEATURES
   ==================================== */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(116, 243, 181, 0.1), transparent);
  transition: left 0.7s;
}

.feature:hover {
  transform: translateX(12px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(116, 243, 181, 0.2);
}

.feature:hover::before {
  left: 100%;
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.feature:hover .feature__icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature__title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: var(--space-xs);
}

/* ====================================
   CTA BAND
   ==================================== */

.ctaBand {
  margin-top: var(--space-xl);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-strong);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.ctaBand::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: var(--gradient-glow);
  animation: float 10s ease-in-out infinite;
  z-index: 0;
}

.ctaBand > * {
  position: relative;
  z-index: 1;
}

.ctaBand:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--accent-primary);
}

.ctaBand h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

/* ====================================
   FORMS
   ==================================== */

.form {
  padding: var(--space-xl);
}

.form label {
  display: block;
  margin-bottom: var(--space-lg);
}

.form span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: var(--transition-base);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-primary);
  background: var(--surface-elevated);
  box-shadow: 0 0 0 4px rgba(116, 243, 181, 0.1), 0 0 24px rgba(116, 243, 181, 0.2);
  transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-tertiary);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: none;
  background-color: #2a2a3e;
  color: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235dd9a0' stroke-width='3'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/csvg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
  font-weight: 500;
  border: 1px solid rgba(93, 217, 160, 0.3);
}

select:hover {
  border-color: var(--accent-primary);
  background-color: #323246;
  box-shadow: 0 0 0 3px rgba(93, 217, 160, 0.1);
}

select:focus {
  border-color: var(--accent-primary) !important;
  background-color: #323246;
  box-shadow: 0 0 0 4px rgba(93, 217, 160, 0.2), 0 0 24px rgba(93, 217, 160, 0.15) !important;
  outline: none;
}

select option {
  color: #ffffff;
  background-color: #2a2a3e;
  padding: 10px;
  line-height: 1.5;
}

select option:checked {
  background: #5dd9a0;
  color: #2a2a3e;
  font-weight: 600;
}

/* ====================================
   CHIPS
   ==================================== */

.chips {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin: var(--space-md) 0;
}

.chip {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--surface-glass);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition-base);
}

.chip:hover {
  background: var(--surface-elevated);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* ====================================
   TIMELINE
   ==================================== */

.timeline {
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
  opacity: 0.3;
}

.timelineItem {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.timelineDot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--bg-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  z-index: 2;
  transition: var(--transition-bounce);
}

.timelineItem:hover .timelineDot {
  transform: scale(1.2) rotate(360deg);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

.timelineContent {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.timelineContent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.timelineContent > * {
  position: relative;
  z-index: 1;
}

.timelineItem:hover .timelineContent {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(116, 243, 181, 0.2);
}

.timelineItem:hover .timelineContent::before {
  opacity: 1;
}

.timelineContent h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.timelineMeta {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ====================================
   STATS
   ==================================== */

.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.statItem {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.statItem::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.statItem:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg), 0 0 32px rgba(116, 243, 181, 0.2);
}

.statItem:hover::before {
  transform: scaleX(1);
}

.statNumber {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-sm);
}

.statLabel {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ====================================
   TESTIMONIALS
   ==================================== */

.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.testimonial {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.testimonial:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(116, 243, 181, 0.2);
}

.testimonial:hover::before {
  transform: scaleX(1);
}

.testimonialQuote {
  font-size: 72px;
  line-height: 0.5;
  color: var(--accent-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: var(--space-md);
}

.testimonial p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonialAuthor {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.authorAvatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  flex-shrink: 0;
}

.authorName {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.authorRole {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-3xl);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
  position: relative;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.footer__brand {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer__links a,
.linkLike {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-base);
}

.footer__links a:hover,
.linkLike:hover {
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.linkLike {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

/* ====================================
   EFFECTS & ANIMATIONS
   ==================================== */

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--accent-primary), transparent);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) scale(1);
    opacity: 0;
  }
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(116, 243, 181, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.98);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* ====================================
   UTILITY CLASSES
   ==================================== */

.muted {
  color: var(--text-secondary);
}

.small {
  font-size: 13px;
}

.mini {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: var(--space-sm) 0;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 1024px) {
  :root {
    --space-3xl: 48px;
    --space-2xl: 32px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero__copy {
    display: block;
    padding-right: 0;
  }

  .hero__visual {
    position: relative;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
    margin-left: 0;
    margin-inline: 0;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    animation: none;
    transform: none;
    z-index: 10;
  }

  .visualFrame {
    aspect-ratio: 4 / 3;
  }

  .pricingGrid {
    grid-template-columns: 1fr;
  }

  .pricingGrid--two {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .logisticsOptions {
    grid-template-columns: 1fr;
  }

  .logisticsIntro {
    grid-template-columns: 1fr;
    padding: var(--space-xl);
  }

  .logisticsIntro__columns {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .statsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonialsGrid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 24px;
  }

  .timelineItem {
    grid-template-columns: 60px 1fr;
    gap: var(--space-lg);
  }

  .timelineDot {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .ctaBand {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: var(--space-xl);
    align-items: flex-start;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.15;
    margin: var(--space-sm) 0;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .pill,
  .typing-text,
  .lead {
    max-width: 100%;
  }

  .hero__cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav__menu {
    position: absolute;
    right: var(--space-lg);
    top: 70px;
    width: min(320px, calc(100vw - var(--space-2xl)));
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: rgba(10, 14, 19, 0.95);
    backdrop-filter: var(--blur-strong);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .nav__menu.is-open {
    display: flex;
    animation: fadeInUp 0.3s ease-out;
  }

  .nav__menu a {
    padding: var(--space-sm) var(--space-md);
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
  }

  .statsGrid {
    grid-template-columns: 1fr;
  }

  .logisticsIntro {
    gap: var(--space-sm);
    padding: var(--space-lg);
  }

  .logisticsIntro h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .logisticsIntro .list li {
    padding: 10px 10px 10px 30px;
  }

  .logisticsIntro__subline {
    margin-bottom: var(--space-lg);
  }

  /* Disable heavy animations on mobile */
  .hero__visual {
    animation: none;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-lg);
    width: 100%;
  }

  .particles {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  body::before {
    display: none;
  }
}

/* ====================================
   PRINT STYLES
   ==================================== */

@media print {
  .topbar,
  .nav,
  .btn,
  .particles,
  .cursor-glow {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .card,
  .priceCard {
    break-inside: avoid;
  }
}

/* ====================================
   ACCESSIBILITY
   ==================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* ====================================
   DARK MODE ENHANCEMENTS (Optional)
   ==================================== */

@media (prefers-color-scheme: light) {
  /* If user prefers light mode, invert some colors */
  /* This is optional - adjust as needed */
}

.topbar {
  border-bottom: none;
  position: sticky; /* имаш го */
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.35;              /* увеличи до 0.5 ако пак е слабо */
  box-shadow: 0 0 18px rgba(116,243,181,0.25);
  pointer-events: none;
}

.topbar {
  border-bottom: 1px solid var(--border-subtle);
}

.sectionHead h2::after {
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
}

.topbar.scrolled {
  border-bottom: none;
}
/* ====================================
   TERMS & CONDITIONS SECTION
   ==================================== */

.termsContent {
  position: relative;
  z-index: 2;
}

.termsHeader {
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.termsHeader h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.termsHeader p {
  color: var(--text-secondary);
  margin: var(--space-sm) 0;
}

.termsSection {
  margin-bottom: var(--space-2xl);
}

.termsSection h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.termsSection p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.termsSection ul.list {
  margin-bottom: var(--space-md);
}

.termsSection ul.list li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

/* ====================================
   RESPONSIVE GRID - SERVICES
   ==================================== */

/* Mobile devices - 1 column */
@media (max-width: 768px) {
  .grid3 {
    grid-template-columns: 1fr;
  }

  #services .grid3 {
    grid-template-columns: 1fr;
    max-width: min(560px, 100%);
  }

  #services .card--service {
    padding: var(--space-lg);
  }
}

/* Tablet devices - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }

  #services .grid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
  }
}

/* Desktop - 3 columns already defined above */

.form-hint {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.form-hint.success {
  color: #5dd9a0;
}

.form-hint.error {
  color: #ff6b6b;
}

button.is-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

button.is-loading::after {
  content: "⏳";
  margin-left: 8px;
}

