:root {
  --color-midnight: #0E1A23;
  --color-amber: #E6B65C;
  --color-stone: #8E9498;
  --color-fog: #F3F4F4;
  --color-dark: #1A252E;
  --color-light: #FFFFFF;
  
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(230, 182, 92, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-fog);
  background-color: var(--color-midnight);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-toggle {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-fog);
}

h1 {
  font-size: clamp(1.25rem, 3.5vw, 1.875rem);
}

h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

h4 {
  font-size: clamp(0.875rem, 1.75vw, 1.125rem);
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

a {
  color: var(--color-amber);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background: linear-gradient(180deg, rgba(26, 37, 46, 0.95) 0%, rgba(14, 26, 35, 0.9) 100%);
  padding: var(--space-xs) 0;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(230, 182, 92, 0.15);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: var(--space-sm);
}

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, var(--color-amber) 0%, transparent 100%);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu li a {
  color: var(--color-fog);
  font-size: 0.8125rem;
  padding: var(--space-xs) var(--space-sm);
  transition: all var(--transition-fast);
  position: relative;
  font-weight: 500;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-amber);
  transition: width var(--transition-base);
}

.nav-menu li a:hover {
  color: var(--color-amber);
}

.nav-menu li a:hover::after {
  width: 80%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-fog);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 102;
  position: relative;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-dark);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  z-index: 101;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: block;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu .nav-menu {
  display: flex !important;
  flex-direction: column;
  padding: var(--space-xxl) var(--space-lg);
  gap: var(--space-md);
  align-items: flex-start;
  list-style: none;
  margin: 0;
  width: 100%;
}

.mobile-menu .nav-menu li {
  width: 100%;
  list-style: none;
  margin: 0;
}

.mobile-menu .nav-menu li a {
  display: block !important;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-fog) !important;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(230, 182, 92, 0.1);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-menu .nav-menu li a:hover {
  color: var(--color-amber) !important;
  background-color: rgba(230, 182, 92, 0.05);
  padding-left: var(--space-lg);
}

.mobile-menu .nav-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu .close-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--color-fog);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: var(--space-xxl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 26, 35, 0.92) 0%, rgba(14, 26, 35, 0.75) 50%, rgba(26, 37, 46, 0.65) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 182, 92, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-fog);
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(230, 182, 92, 0.15);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.1;
  position: relative;
}

.hero p {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: var(--space-xl);
  color: var(--color-fog);
  max-width: none;
  line-height: 1.7;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-animation {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.2;
  animation: rotateSlow 20s linear infinite;
}

.hero-animation::before,
.hero-animation::after {
  content: '';
  position: absolute;
  border: 3px solid var(--color-amber);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-animation::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation-delay: 0s;
  box-shadow: 0 0 30px rgba(230, 182, 92, 0.3);
}

.hero-animation::after {
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  animation-delay: 2s;
  box-shadow: 0 0 40px rgba(230, 182, 92, 0.2);
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.4;
  }
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-amber);
  color: var(--color-midnight);
  border: 2px solid var(--color-amber);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
}

.btn:hover {
  background-color: transparent;
  color: var(--color-amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-amber);
  border-color: var(--color-amber);
}

.btn-secondary:hover {
  background-color: var(--color-amber);
  color: var(--color-midnight);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(230, 182, 92, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-alt {
  background: linear-gradient(135deg, rgba(14, 26, 35, 0.6) 0%, rgba(26, 37, 46, 0.85) 50%, rgba(14, 26, 35, 0.7) 100%);
  position: relative;
}

.section-alt::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(230, 182, 92, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-spotlight {
  background: radial-gradient(ellipse 100% 50% at 50% 50%, rgba(230, 182, 92, 0.08) 0%, transparent 70%);
  position: relative;
}

.section-spotlight::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(230, 182, 92, 0.3) 50%, transparent 100%);
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: flex-start;
  text-align: left;
  max-width: 750px;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 2;
}

.content-block.centered {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.content-block p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  opacity: 0.9;
  font-weight: 400;
  max-width: none;
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  margin: var(--space-xxl) 0;
}

.split-content.reverse {
  direction: rtl;
}

.split-content.reverse > * {
  direction: ltr;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.split-visual {
  position: relative;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(26, 37, 46, 0.6) 0%, rgba(14, 26, 35, 0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230, 182, 92, 0.2);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-box {
  background: linear-gradient(145deg, rgba(230, 182, 92, 0.1) 0%, rgba(230, 182, 92, 0.05) 100%);
  border-left: 5px solid var(--color-amber);
  padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xxl);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-xl) 0;
  position: relative;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-amber) 0%, rgba(230, 182, 92, 0.5) 100%);
  border-radius: 0 3px 3px 0;
}

.timeline-section {
  position: relative;
  padding: var(--space-xxl) 0;
}

.timeline-item {
  position: relative;
  padding-left: var(--space-xxl);
  margin-bottom: var(--space-xxl);
  border-left: 2px solid rgba(230, 182, 92, 0.3);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-amber);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(230, 182, 92, 0.5);
}

.timeline-item:last-child {
  border-left: none;
}

.timeline-content {
  background: linear-gradient(145deg, rgba(26, 37, 46, 0.7) 0%, rgba(14, 26, 35, 0.85) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230, 182, 92, 0.15);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  transform: translateX(10px);
  border-color: rgba(230, 182, 92, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(230, 182, 92, 0.1);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(26, 37, 46, 0.8) 0%, rgba(14, 26, 35, 0.9) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-amber);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-size: 4rem;
  color: rgba(230, 182, 92, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 25px rgba(230, 182, 92, 0.1);
}

.feature-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.comparison-item {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(26, 37, 46, 0.5) 0%, rgba(14, 26, 35, 0.7) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(230, 182, 92, 0.2);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.comparison-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-amber), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.comparison-item:hover {
  border-color: rgba(230, 182, 92, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.comparison-item:hover::after {
  transform: scaleX(1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(26, 37, 46, 0.6) 0%, rgba(14, 26, 35, 0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230, 182, 92, 0.15);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(230, 182, 92, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all var(--transition-slow);
}

.stat-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(230, 182, 92, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(230, 182, 92, 0.15);
}

.stat-item:hover::before {
  width: 300%;
  height: 300%;
}

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-amber);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-stone);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
}

.visual-showcase.asymmetrical {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xxl);
}

@media (min-width: 769px) {
  .visual-showcase.asymmetrical .showcase-item:nth-child(1) {
    margin-top: 0;
  }
  
  .visual-showcase.asymmetrical .showcase-item:nth-child(2) {
    margin-top: var(--space-xxl);
  }
  
  .visual-showcase.asymmetrical .showcase-item:nth-child(3) {
    margin-top: 0;
  }
  
  .visual-showcase.asymmetrical .showcase-item:nth-child(4) {
    margin-top: var(--space-xxl);
  }
}

.showcase-item {
  position: relative;
  padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xxl);
  background: linear-gradient(145deg, rgba(26, 37, 46, 0.7) 0%, rgba(14, 26, 35, 0.85) 100%);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-left: 5px solid var(--color-amber);
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform-origin: left center;
}

.showcase-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--color-amber) 0%, rgba(230, 182, 92, 0.5) 100%);
  transition: width var(--transition-base);
  z-index: -1;
}

.showcase-item:hover {
  transform: translateX(10px) scale(1.02);
  border-left-width: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 25px rgba(230, 182, 92, 0.15);
}

.showcase-item:hover::before {
  width: 100%;
}

.section-title {
  text-align: left;
  margin-bottom: var(--space-xl);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: var(--space-lg);
  line-height: 1.2;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-amber) 0%, rgba(230, 182, 92, 0.3) 100%);
  border-radius: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: var(--space-lg);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-amber) 0%, transparent 100%);
}

.section-title.centered {
  text-align: center;
  padding-left: 0;
}

.section-title.centered::before {
  left: 50%;
  transform: translateX(-50%);
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--color-amber) 50%, transparent 100%);
}

.section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
  z-index: 2;
}

.section-content.asymmetrical {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.section-content.asymmetrical .card:nth-child(2) {
  margin-top: var(--space-xl);
}

.section-content.staggered {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.section-content.staggered .card:nth-child(even) {
  margin-left: auto;
  max-width: 85%;
}

.section-content.staggered .card:nth-child(odd) {
  margin-right: auto;
  max-width: 85%;
}

.card {
  background: linear-gradient(145deg, rgba(26, 37, 46, 0.85) 0%, rgba(14, 26, 35, 0.95) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(230, 182, 92, 0.15);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-amber), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 182, 92, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(230, 182, 92, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(230, 182, 92, 0.4);
}

.card.featured {
  background: linear-gradient(145deg, rgba(26, 37, 46, 0.9) 0%, rgba(230, 182, 92, 0.08) 50%, rgba(14, 26, 35, 0.95) 100%);
  border: 2px solid rgba(230, 182, 92, 0.25);
  position: relative;
}

.card.featured::before {
  opacity: 1;
}

.card-title {
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card-content {
  color: var(--color-stone);
  font-size: 0.875rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
}

.feature-grid.masonry {
  column-count: 3;
  column-gap: var(--space-xl);
  column-fill: balance;
}

.feature-grid.masonry .feature-item {
  break-inside: avoid;
  margin-bottom: var(--space-xl);
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  background: linear-gradient(135deg, rgba(26, 37, 46, 0.4) 0%, rgba(14, 26, 35, 0.6) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230, 182, 92, 0.1);
  transition: all var(--transition-base);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(230, 182, 92, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all var(--transition-slow);
  pointer-events: none;
}

.feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(230, 182, 92, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(230, 182, 92, 0.1);
}

.feature-item:hover::before {
  width: 200%;
  height: 200%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-amber);
  margin-bottom: var(--space-md);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-dark);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-fog);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-midnight);
  border: 1px solid var(--color-stone);
  border-radius: var(--radius-md);
  color: var(--color-fog);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-amber);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.8125rem;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.footer {
  background-color: var(--color-dark);
  padding: var(--space-xl) 0;
  margin-top: var(--space-xxl);
  border-top: 1px solid rgba(142, 148, 152, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  color: var(--color-amber);
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.footer-section p,
.footer-section a {
  color: var(--color-stone);
  font-size: 0.8125rem;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--space-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(142, 148, 152, 0.1);
  color: var(--color-stone);
  font-size: 0.75rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.legal-content h1 {
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  margin-bottom: var(--space-xl);
  color: var(--color-amber);
  font-weight: 700;
}

.legal-content h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-fog);
  font-weight: 600;
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--color-stone);
  font-size: 0.875rem;
  max-width: none;
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-stone);
  font-size: 0.875rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.875rem;
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.legal-content table th,
.legal-content table td {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-stone);
  text-align: left;
}

.legal-content table th {
  background-color: var(--color-dark);
  color: var(--color-amber);
  font-weight: 600;
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-amber);
  color: var(--color-midnight);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
}

.home-button:hover {
  background-color: transparent;
  color: var(--color-amber);
  border: 2px solid var(--color-amber);
}

.thank-you-content,
.error-content {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-content p,
.error-content p {
  max-width: none !important;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--color-stone);
  margin-bottom: var(--space-lg);
}

.thank-you-content h1,
.error-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-xl);
  color: var(--color-amber);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background-color: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 250px;
  background-color: var(--color-midnight);
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
}

.product-price {
  color: var(--color-fog);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: var(--space-md);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  border-top: 2px solid var(--color-amber);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.privacy-popup p {
  margin: 0;
  color: var(--color-fog);
  font-size: 0.875rem;
  max-width: none;
  flex: 1;
  min-width: 200px;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
}

.privacy-popup-btn {
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.privacy-popup-btn.accept {
  background-color: var(--color-amber);
  color: var(--color-midnight);
}

.privacy-popup-btn.accept:hover {
  background-color: var(--color-light);
  color: var(--color-midnight);
}

.privacy-popup-btn.decline {
  background-color: transparent;
  color: var(--color-fog);
  border: 1px solid var(--color-stone);
}

.privacy-popup-btn.decline:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

@media (max-width: 768px) {
  .header .nav-menu {
    display: none !important;
  }
  
  .mobile-menu {
    display: block !important;
  }
  
  .mobile-menu .nav-menu {
    display: flex !important;
  }
  
  .menu-toggle {
    display: block !important;
  }
  
  body.menu-open .menu-toggle {
    display: none !important;
  }
  
  .menu-toggle.hidden {
    display: none !important;
  }
  
  .hero {
    min-height: 75vh;
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    padding-left: 0;
  }
  
  .section-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .content-block {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  
  .section-content,
  .section-content.asymmetrical,
  .section-content.staggered,
  .feature-grid,
  .products-grid,
  .visual-showcase,
  .visual-showcase.asymmetrical {
    grid-template-columns: 1fr;
  }
  
  .section-content.staggered .card {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  
  .visual-showcase.asymmetrical .showcase-item:first-child {
    margin-top: 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .split-content.reverse {
    direction: ltr;
  }
  
  .testimonial-grid,
  .feature-comparison {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .privacy-popup-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-popup-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .card,
  .contact-form {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  
  .hero-animation {
    width: 150px;
    height: 150px;
  }
}

