/* VARIABLES & RESET*/
:root {
  /* Renkler config.js'den inject edilecek */
  --color-primary: #0F4C81;
  --color-primary-dark: #0A3A63;
  --color-primary-light: #1E5A8E;
  --color-secondary: #2C5F8D;
  --color-accent: #3A7CA5;
  --color-text: #1A202C;
  --color-text-muted: #6B7A99;
  --color-background: #FFFFFF;
  --color-background-alt: #FAFBFC;
  
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 1px 2px rgba(15, 76, 129, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 76, 129, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 76, 129, 0.12);
  --shadow-xl: 0 24px 48px rgba(15, 76, 129, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

/* NAVIGATION*/
#navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15, 76, 129, 0.06);
  transition: var(--transition-base);
  height: 70px;
  padding: 0.3rem 0,5rem; 
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(15, 76, 129, 0.1);
}

.logo-container h1 {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
}

.logo-container h1::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  transition: var(--transition-fast);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  gap: 0.25rem;
  background: rgba(15, 76, 129, 0.08);
  padding: 0.25rem;
  border-radius: 6px;
  border: 1px solid rgba(15, 76, 129, 0.1);
}

.lang-btn {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-btn:hover {
  color: var(--color-primary);
  background: rgba(15, 76, 129, 0.05);
}

.lang-btn.active {
  color: white;
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(15, 76, 129, 0.25);
}

/*  3. SLIDER SECTION*/
.slider-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  margin-top: 72px;
}

.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
  touch-action: pan-y;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide.prev {
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(15, 76, 129, 0.88) 0%, 
    rgba(10, 58, 99, 0.92) 100%);
  z-index: 2;
  opacity: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; 
  text-align: left;
  padding: 4rem 2rem 4rem 4rem;
  color: white;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0s backwards;
}

.slide.active .trust-badge {
  animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0s backwards;
}

.slide.active .slide-content h2 {
  animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.slide.active .slide-content p {
  animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.slide.active .slide-button {
  animation: slideInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

.slide-content h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 900px;
}

.slide-content p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 650px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
  letter-spacing: -0.01em;
  opacity: 0.95;
}

.slide-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.75rem;
  background: white;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.slide-button::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  color: white;
}

.slide-button:hover::before {
  transform: translateX(0);
}

.slide-button:hover::after {
  transform: translateX(4px);
}

.slide-button:active {
  transform: translateY(-1px);
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  pointer-events: none;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  opacity: 0.7;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.4);
}

.slider-arrow:active {
  transform: scale(0.98);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  padding: 12px;
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  z-index: 10;
  display: flex;
  gap: 10px;
  flex-direction: column; 
}

.slider-dot {
  padding: 12px;
  width: 2px;
  height: 32px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.slider-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  width: 10px;
  height: 100%;
  background: transparent;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  width: 3px;
}

.slider-dot.active {
  background: white;
  height: 56px;
  width: 3px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: white;
  width: 0%;
  transition: width linear;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* UTILITIES & COMPONENTS*/
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary::after {
  content: '→';
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.25rem;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-item {
  animation: staggerFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.count-up {
  animation: countUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom {
  overflow: hidden;
  border-radius: 8px;
}

.image-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-zoom:hover img {
  transform: scale(1.08);
}

.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 5. SECTIONS */

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

/* PRODUCT SECTION 1 */
.product-section-1 {
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}

.product-section-1::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.03) 0%, 
    rgba(59, 130, 246, 0.05) 100%);
  z-index: 0;
  pointer-events: none;
}

.product-section-1 .container {
  position: relative;
  z-index: 1;
}

.product-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.1) 0%, 
    transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-image:hover::before {
  opacity: 1;
}

.product-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.25);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image:hover img {
  transform: scale(1.05);
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.product-content h3 {
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  opacity: 0.9;
}

.product-content h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  animation: underlineGrow 0.8s ease 0.3s forwards;
}

@keyframes underlineGrow {
  to {
    width: 100%;
  }
}

.product-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  position: relative;
}

.product-content h2:hover {
  background: linear-gradient(135deg, 
    var(--color-text) 0%, 
    var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.6s ease;
}

.product-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.features-grid {
  margin-bottom: 2.5rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, 
    var(--color-primary) 0%, 
    var(--color-accent) 100%);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item::after {
  content: attr(data-number);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: rgba(15, 76, 129, 0.05);
  line-height: 1;
  transition: all 0.4s ease;
  pointer-events: none;
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: rgba(15, 76, 129, 0.15);
  box-shadow: var(--shadow-md);
}

.feature-item:hover::before {
  height: 100%;
}

.feature-item:hover::after {
  color: rgba(15, 76, 129, 0.15);
  transform: scale(1.1);
}

.feature-item h4 {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  padding-right: 3rem;
}

.feature-item:hover h4 {
  color: var(--color-primary);
}

.feature-item p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.product-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  padding: 1.125rem 2.25rem;
  position: relative;
  overflow: hidden;
}

.product-content .btn-primary::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.product-content .btn-primary:hover::after {
  transform: translateX(5px);
}

/* PRODUCT SECTION 2 */
.product-section-2 {
  background: var(--color-background-alt);
  position: relative;
  overflow: hidden;
}

.product-section-2::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, 
    rgba(37, 99, 235, 0.08) 0%, 
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-section-2::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, 
    rgba(6, 182, 212, 0.06) 0%, 
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-section-2 .container {
  position: relative;
  z-index: 1;
}

.product-section-2 .text-center h3 {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.product-section-2 .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-section-2 .section-subtitle {
  font-size: 1.125rem;
  max-width: 800px;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-feature-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(37, 99, 235, 0.05);
}

.product-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
  border-color: var(--color-primary);
}

.product-feature-card:hover::before {
  transform: scaleX(1);
}

.product-feature-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-background-alt);
}

.product-feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.product-feature-card:hover .product-feature-card-image img {
  transform: scale(1.1) rotate(2deg);
}

.product-feature-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-feature-card:hover .product-feature-card-image::after {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.product-feature-card-content {
  padding: 1.75rem;
}

.product-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.product-feature-card:hover h4 {
  color: var(--color-primary);
}

.product-feature-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.card-learn-more:hover {
  gap: 0.875rem;
}

.card-learn-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-learn-more:hover::after {
  transform: translateX(3px);
}

.product-section-2 .text-center:last-child {
  margin-top: 1rem;
}

/* 3D INTERACTIVE PRODUCT */
.interactive-product-section {
  background: linear-gradient(135deg, #6B8CFF 0%, #8FA5FF 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.interactive-product-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.interactive-product-section::after {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.05);
  }
}

.interactive-product-section .container {
  position: relative;
  z-index: 1;
}

.interactive-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 600px;
}

.interactive-product-content {
  color: white;
}

.interactive-product-subtitle {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.interactive-product-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.interactive-product-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 500px;
}

.interactive-product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.interactive-product-features li {
  font-size: 1rem;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  opacity: 0.9;
}

.interactive-product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: white;
}

.interactive-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.75rem;
  background: #DC2626;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
  border: none;
  cursor: pointer;
}

.interactive-product-cta:hover {
  background: #B91C1C;
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
}

.interactive-product-image-container {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.interactive-product-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.interactive-product-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;
}

.interactive-product-image-wrapper:hover .interactive-product-image {
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.4));
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: floatIcon 3s ease-in-out infinite;
  z-index: 2;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 5%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { bottom: 15%; right: 10%; animation-delay: 1s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.05); }
}

/* VIDEO SECTION */
.video-section {
  background: linear-gradient(180deg, 
    var(--color-background) 0%, 
    var(--color-background-alt) 100%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, 
    rgba(37, 99, 235, 0.05) 0%, 
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-section .text-center h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.video-section .section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 4rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.2);
  background: var(--color-text);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(37, 99, 235, 0.3);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.custom-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.7) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.video-wrapper:hover .custom-video-controls {
  opacity: 1;
}

.video-play-btn {
  background: var(--color-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.video-play-btn:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
}

.video-play-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.video-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.video-progress-fill {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  transition: width 0.1s linear;
}

.video-time {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 5;
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-overlay-btn {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-play-overlay:hover .video-play-overlay-btn {
  transform: scale(1.15);
  background: white;
}

.video-play-overlay-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent var(--color-primary);
  margin-left: 6px;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 129, 0.05);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, 
    var(--color-primary) 0%, 
    var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* FAQ SECTION */
.faq-section {
  background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.faq-header p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #E4E9F0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(15, 76, 129, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question-text {
  flex: 1;
  padding-left: 0.5rem;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 1.75rem 1.5rem 2.25rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item::after {
  content: attr(data-index);
  position: absolute;
  right: 1.75rem;
  top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #C5CFE0;
  opacity: 0.5;
}

/* FOOTER */
.footer-section {
  background: linear-gradient(180deg, 
    var(--color-text) 0%, 
    #0A0E14 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(15, 76, 129, 0.5) 50%, 
    transparent 100%);
}

.footer-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, 
    rgba(15, 76, 129, 0.08) 0%, 
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-section .container {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-company {
  max-width: 400px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.3);
}

.footer-social-link:hover::before {
  transform: translateY(0);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: white;
  padding-left: 8px;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-legal li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -1.125rem;
  color: rgba(255, 255, 255, 0.3);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 76, 129, 0.4);
  background: var(--color-primary-light);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .interactive-product-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .interactive-product-image-container {
    height: 500px;
  }
  
  .interactive-product-content {
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-company {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .product-section-1 .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .product-image {
    order: -1;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slider-section {
    height: 80vh;
    min-height: 500px;
  }
  
  .slider-controls {
    padding: 0 1rem;
  }
  
  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .video-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .faq-question {
    padding: 1.25rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .product-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .interactive-product-section {
    min-height: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .slider-controls {
    display: none;
  }
  
  .floating-icon {
    display: none;
  }
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].visible {
  opacity: 1;
}

[data-aos="fade-right"] { transform: translateX(-50px); }
[data-aos="fade-right"].visible { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(50px); }
[data-aos="fade-left"].visible { transform: translateX(0); }

[data-aos="fade-up"] { transform: translateY(50px); }
[data-aos="fade-up"].visible { transform: translateY(0); }

[data-aos-delay="100"].visible { transition-delay: 0.1s; }
[data-aos-delay="200"].visible { transition-delay: 0.2s; }
[data-aos-delay="300"].visible { transition-delay: 0.3s; }
[data-aos-delay="400"].visible { transition-delay: 0.4s; }

/* ====================================== */
/* MINIMAL COOKIE CONSENT BANNER */
/* ====================================== */

/* Cookie Banner - Minimal Design */
.cookie-consent {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    max-width: 420px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    z-index: 999999 !important;
    padding: 1.25rem !important;
    border-radius: 16px !important;
    border: 1px solid rgba(15, 76, 129, 0.1) !important;
    animation: slideInRight 0.4s ease-out !important;
}

@keyframes slideInRight {
    from {
        transform: translateX(450px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-consent.hidden {
    display: none !important;
}

.cookie-content {
    max-width: 100%;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cookie-icon {
    width: 20px;
    height: 20px;
    color: #0F4C81;
    flex-shrink: 0;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1A202C;
}

.cookie-content p {
    color: #4A5568;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.cookie-link {
    color: #0F4C81;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.cookie-link:hover {
    color: #0A3A63;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.cookie-btn {
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
}

.cookie-btn-primary {
    background: #0F4C81;
    color: white;
}

.cookie-btn-primary:hover {
    background: #0A3A63;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
}

.cookie-btn-secondary {
    background: transparent;
    color: #4A5568;
    border: 1px solid #E2E8F0;
}

.cookie-btn-secondary:hover {
    background: #F7FAFC;
    border-color: #CBD5E0;
}

.cookie-btn-outline {
    background: transparent;
    color: #718096;
    border: none;
    font-size: 0.8125rem;
    padding: 0.5rem;
}

.cookie-btn-outline:hover {
    color: #4A5568;
    text-decoration: underline;
}

/* Privacy Modal - Minimal */
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease-out;
}

.privacy-modal.hidden {
    display: none;
}

.privacy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.privacy-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.2s ease-out;
    z-index: 10;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #1A202C;
    font-weight: 600;
}

.privacy-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #718096;
    transition: all 0.2s;
    border-radius: 6px;
}

.privacy-modal-close:hover {
    background: #F7FAFC;
    color: #2D3748;
}

.privacy-modal-close svg {
    width: 20px;
    height: 20px;
}

.privacy-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    color: #4A5568;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.privacy-modal-body h3 {
    color: #2D3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.privacy-modal-body h3:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    margin-bottom: 0.875rem;
}

.privacy-modal-body ul {
    margin-left: 1.25rem;
    margin-bottom: 0.875rem;
}

.privacy-modal-body li {
    margin-bottom: 0.375rem;
}

.privacy-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: flex-end;
}

/* Cookie Settings Modal - Minimal */
.cookie-category {
    padding: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s;
}

.cookie-category:hover {
    border-color: #CBD5E0;
}

.cookie-category-header {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9375rem;
    color: #2D3748;
    font-weight: 600;
}

.cookie-category-desc {
    color: #718096;
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: #E2E8F0;
    color: #4A5568;
    margin-left: 0.5rem;
}

.cookie-badge-required {
    background: #FEE;
    color: #C53030;
}

/* Toggle Switch - Minimal */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E2E8F0;
    transition: 0.2s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #0F4C81;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        max-width: 100% !important;
        border-radius: 16px 16px 0 0 !important;
        animation: slideUp 0.4s ease-out !important;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .privacy-modal-content {
        max-width: 100%;
        max-height: 90vh;
        margin: 0.5rem;
        border-radius: 12px;
    }
    
    .privacy-modal-header,
    .privacy-modal-body,
    .privacy-modal-footer {
        padding: 1.25rem;
    }
}

/* Z-Index Hierarchy */
#navbar {
    z-index: 9999;
}

.cookie-consent {
    z-index: 999999 !important;
}

.privacy-modal {
    z-index: 9999999 !important;
}

.footer-section {
    position: relative;
    z-index: 1;
}

/* ====================================== */
/* Notification Modal Styles */
/* ====================================== */

.notification-modal {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease-out;
}

.notification-modal.hidden {
    display: none;
}

.notification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.notification-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease-out;
    z-index: 10;
}

.notification-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content.success .notification-icon {
    background: #D1FAE5;
    color: #047857;
}

.notification-content.error .notification-icon {
    background: #FEE2E2;
    color: #DC2626;
}

.notification-icon svg {
    width: 40px;
    height: 40px;
}

.notification-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A202C;
    margin: 0 0 0.75rem 0;
}

.notification-message {
    color: #4A5568;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 0.9375rem;
}

.notification-message a {
    color: #0F4C81;
    text-decoration: underline;
    font-weight: 500;
}

.notification-btn {
    background: #0F4C81;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.notification-btn:hover {
    background: #0A3A63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .notification-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .notification-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .notification-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .notification-title {
        font-size: 1.25rem;
    }
}
