/* 
  VERGEANALYSIS Agency - Main Stylesheet
  Cyberpunk Neon Grid Theme with Circular Focal Design
*/


@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;700&display=swap');


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  
  --primary-dark: #0D0221;
  --secondary-dark: #1A0B2E;
  --background: #000000;
  --neon-cyan: #00F0FF;
  --neon-magenta: #FF00FF;
  --neon-yellow: #FFFF00;
  --text-light: #FFFFFF;
  --text-secondary: #B4B4B4;
  --grid-lines: rgba(74, 74, 106, 0.3);
  --accent: #7D12FF;
  
  
  --font-primary: 'Figtree', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-circle: 50%;
  
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  
  --z-background: -1;
  --z-default: 1;
  --z-header: 100;
  --z-modal: 1000;
  --z-tooltip: 1500;
  --z-cookie: 2000;
}


html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--grid-lines) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-lines) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: var(--z-background);
  pointer-events: none;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

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

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover, a:focus {
  color: var(--neon-cyan);
  text-decoration: none;
}


.neon-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan),
               0 0 10px var(--neon-cyan),
               0 0 20px var(--neon-cyan);
}

.neon-text-magenta {
  color: var(--neon-magenta);
  text-shadow: 0 0 5px var(--neon-magenta),
               0 0 10px var(--neon-magenta),
               0 0 20px var(--neon-magenta);
}

.neon-text-yellow {
  color: var(--neon-yellow);
  text-shadow: 0 0 5px var(--neon-yellow),
               0 0 10px var(--neon-yellow),
               0 0 20px var(--neon-yellow);
}


.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: var(--neon-cyan);
  z-index: -1;
  animation: glitch-animation 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  animation-delay: 0.1s;
}

.glitch-text::after {
  color: var(--neon-magenta);
  z-index: -2;
  animation: glitch-animation 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  animation-delay: 0.2s;
}

@keyframes glitch-animation {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: var(--z-default);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  z-index: -1;
}

.btn:hover::before, 
.btn:focus::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  color: var(--background);
}

.btn-primary:hover, 
.btn-primary:focus {
  background: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));
  color: var(--background);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.btn-outline:hover, 
.btn-outline:focus {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: var(--space-sm) 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grid-lines);
  transition: transform var(--transition-normal);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  z-index: var(--z-header);
}

.logo img {
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: var(--space-md);
}

.nav-link {
  position: relative;
  padding: var(--space-xs) 0;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 100%;
}

.contact-phone {
  display: flex;
  align-items: center;
  margin-left: var(--space-md);
  color: var(--text-light);
  font-weight: 500;
}

.contact-phone i {
  margin-right: var(--space-xs);
  color: var(--neon-cyan);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: calc(var(--z-header) + 1);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  transition: all var(--transition-normal);
}


@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--space-md) var(--space-md);
    transition: right var(--transition-normal);
    z-index: var(--z-header);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-item {
    margin: var(--space-sm) 0;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.25rem;
  }
  
  .contact-phone {
    margin: var(--space-md) 0 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}


.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--space-xl) * 1.5) 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--primary-dark) 0%, var(--background) 70%);
  z-index: var(--z-background);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: var(--z-default);
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin: var(--space-xl) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  animation: pulse 3s infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid var(--neon-magenta);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  animation: pulse 3s infinite 1.5s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}


.circular-section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.circular-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-default);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: var(--text-secondary);
}


.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.service-card {
  position: relative;
  background: linear-gradient(145deg, var(--secondary-dark), var(--primary-dark));
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grid-lines);
}

.service-card:hover, 
.service-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
  border-color: var(--neon-cyan);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(0, 240, 255, 0.1), 
    rgba(255, 0, 255, 0.1));
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.service-card:hover::before, 
.service-card:focus-within::before {
  opacity: 1;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  background: var(--background);
  color: var(--neon-cyan);
  font-size: 1.75rem;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.service-title {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--neon-cyan);
  margin-top: auto;
}

.service-link i {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.service-link:hover i, 
.service-link:focus i {
  transform: translateX(5px);
}


.process-section {
  position: relative;
  padding: var(--space-xl) 0;
}

.process-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.radial-process {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  margin: 0 auto;
}

.process-center {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--secondary-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.process-center::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-magenta));
  z-index: -1;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.process-step {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--secondary-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  z-index: 1;
}

.process-step:nth-child(1) { transform: translate(0, -200px); }
.process-step:nth-child(2) { transform: translate(190px, -120px); }
.process-step:nth-child(3) { transform: translate(190px, 120px); }
.process-step:nth-child(4) { transform: translate(0, 200px); }
.process-step:nth-child(5) { transform: translate(-190px, 120px); }
.process-step:nth-child(6) { transform: translate(-190px, -120px); }

.process-step::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-magenta));
  z-index: -1;
}

.process-step-icon {
  font-size: 2rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.process-step-title {
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

.process-connector {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed var(--neon-cyan);
  z-index: 0;
  opacity: 0.3;
}

@media (max-width: 767px) {
  .radial-process {
    height: auto;
    flex-direction: column;
  }
  
  .process-center {
    position: relative;
    margin-bottom: var(--space-lg);
  }
  
  .process-step {
    position: relative;
    transform: none !important;
    margin-bottom: var(--space-md);
  }
  
  .process-connector {
    display: none;
  }
}


.cases-section {
  padding: var(--space-xl) 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.case-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--secondary-dark);
  transition: transform var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-card:hover, 
.case-card:focus-within {
  transform: translateY(-10px);
}

.case-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.case-card:hover .case-image img, 
.case-card:focus-within .case-image img {
  transform: scale(1.05);
}

.case-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.case-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--neon-cyan);
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.case-title {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.case-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.case-metrics {
  display: flex;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}

.case-metric {
  background: rgba(0, 240, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  text-align: center;
  flex: 1;
}

.case-metric-value {
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 1.25rem;
}

.case-metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.case-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--neon-cyan);
  margin-top: auto;
}

.case-link i {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.case-link:hover i, 
.case-link:focus i {
  transform: translateX(5px);
}


.services-deep-dive {
  padding: var(--space-xl) 0;
}

.service-deep {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--grid-lines);
}

.service-deep:last-child {
  border-bottom: none;
}

.service-deep-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.service-deep-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-right: var(--space-md);
  border-radius: 50%;
  background: var(--background);
  color: var(--neon-magenta);
  font-size: 1.5rem;
  border: 2px solid var(--neon-magenta);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
  flex-shrink: 0;
}

.service-deep-content {
  flex-grow: 1;
}

.service-deep-title {
  margin-bottom: var(--space-sm);
}

.service-deep-description {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.service-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-detail {
  background: rgba(10, 2, 33, 0.5);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--grid-lines);
}

.service-detail-title {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--neon-cyan);
}

.service-detail-title i {
  margin-right: var(--space-xs);
}

.service-detail-list {
  list-style: none;
  padding-left: var(--space-md);
}

.service-detail-list li {
  position: relative;
  margin-bottom: var(--space-xs);
}

.service-detail-list li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--neon-cyan);
}


.roi-section {
  padding: var(--space-xl) 0;
  text-align: center;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.metric-circle {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 150px;
}

.metric-disclaimer {
  margin-top: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-style: italic;
}


.news-section {
  padding: var(--space-xl) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.news-card {
  background: var(--secondary-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grid-lines);
}

.news-card:hover, 
.news-card:focus-within {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
}

.news-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  color: var(--neon-cyan);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.news-title {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.news-excerpt {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--neon-cyan);
  margin-top: auto;
}

.news-link i {
  margin-left: var(--space-xs);
  transition: transform var(--transition-fast);
}

.news-link:hover i, 
.news-link:focus i {
  transform: translateX(5px);
}


.contact-section {
  padding: var(--space-xl) 0;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--primary-dark) 0%, var(--background) 70%);
  z-index: var(--z-background);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.contact-form {
  background: var(--secondary-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--grid-lines);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-magenta));
  z-index: -1;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  border: 1px solid var(--grid-lines);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.form-check-input {
  margin-right: var(--space-xs);
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-check-label a {
  color: var(--neon-cyan);
}

.form-check-label a:hover, 
.form-check-label a:focus {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
}

.form-privacy {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  z-index: var(--z-modal);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--secondary-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  border: 1px solid var(--grid-lines);
}

.modal-content::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-magenta));
  z-index: -1;
}

.modal-title {
  margin-bottom: var(--space-md);
}

.modal-body {
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover, 
.modal-close:focus {
  color: var(--neon-cyan);
}


.cases-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--grid-lines);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, 
.filter-btn:focus {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.filter-btn.active {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: var(--background);
}


.case-detail {
  padding: var(--space-lg);
  background: var(--secondary-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--grid-lines);
}

.case-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.case-detail-title {
  margin-bottom: 0;
}

.case-detail-industry {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--neon-magenta);
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.case-detail-section {
  margin-bottom: var(--space-md);
}

.case-detail-section-title {
  color: var(--neon-cyan);
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.case-detail-section-content {
  color: var(--text-secondary);
}

.case-detail-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.case-detail-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.case-detail-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.case-detail-result {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  text-align: center;
}

.case-detail-result-value {
  color: var(--neon-cyan);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.case-detail-result-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}


.service-detail-section {
  padding: var(--space-lg);
  background: var(--secondary-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--grid-lines);
}

.service-detail-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.service-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-right: var(--space-md);
  border-radius: 50%;
  background: var(--background);
  color: var(--neon-cyan);
  font-size: 1.5rem;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  flex-shrink: 0;
}

.service-detail-title {
  margin-bottom: 0;
}

.service-detail-description {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.service-deliverables {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-deliverables-title {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--neon-cyan);
}

.service-deliverables-title i {
  margin-right: var(--space-xs);
}

.service-deliverables-list {
  list-style: none;
  padding-left: var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xs) var(--space-md);
}

.service-deliverables-list li {
  position: relative;
}

.service-deliverables-list li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--neon-cyan);
}

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.service-info-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.service-info-title {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--neon-cyan);
}

.service-info-title i {
  margin-right: var(--space-xs);
}

.service-info-content {
  color: var(--text-secondary);
}


.about-section {
  padding: var(--space-xl) 0;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.about-mission {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.about-approach {
  margin-bottom: var(--space-xl);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.approach-item {
  text-align: center;
}

.approach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--background);
  color: var(--neon-magenta);
  font-size: 2rem;
  border: 2px solid var(--neon-magenta);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.approach-title {
  margin-bottom: var(--space-sm);
  color: var(--neon-magenta);
}

.approach-description {
  color: var(--text-secondary);
}

.why-us {
  margin-bottom: var(--space-xl);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.why-item {
  background: var(--secondary-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--grid-lines);
}

.why-title {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  color: var(--neon-cyan);
}

.why-title i {
  margin-right: var(--space-xs);
}

.why-description {
  color: var(--text-secondary);
}

.compliance-section {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.careers-cta {
  text-align: center;
  margin-top: var(--space-xl);
}


.contacts-section {
  padding: var(--space-xl) 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.contact-info {
  margin-bottom: var(--space-lg);
}

.contact-info-item {
  display: flex;
  margin-bottom: var(--space-md);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: var(--space-md);
  border-radius: 50%;
  background: var(--background);
  color: var(--neon-cyan);
  font-size: 1.25rem;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  flex-shrink: 0;
}

.contact-info-content {
  flex-grow: 1;
}

.contact-info-label {
  color: var(--neon-cyan);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: var(--text-light);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 400px;
  margin-bottom: var(--space-lg);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.3)
  );
  pointer-events: none;
}

.contact-form-link {
  text-align: center;
  margin-top: var(--space-lg);
}


.legal-section {
  padding: var(--space-xl) 0;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-date {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--neon-cyan);
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  color: var(--text-secondary);
}

.legal-content ul li {
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.legal-content a:hover, 
.legal-content a:focus {
  text-decoration: none;
}

.legal-content .table-container {
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
}

.legal-content table th, 
.legal-content table td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--grid-lines);
}

.legal-content table th {
  background: var(--secondary-dark);
  color: var(--text-light);
}

.legal-content table td {
  color: var(--text-secondary);
}


.thanks-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) 0;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--neon-cyan);
  margin-bottom: var(--space-lg);
}

.thanks-title {
  margin-bottom: var(--space-md);
}

.thanks-message {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: var(--text-secondary);
}


.footer {
  position: relative;
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--grid-lines);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--primary-dark) 0%, var(--background) 70%);
  z-index: var(--z-background);
}

.footer-container {
  position: relative;
  z-index: var(--z-default);
}

.footer-circular {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.footer-center {
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.footer-center img {
  width: 100%;
  height: auto;
}

.footer-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed var(--neon-cyan);
}

.footer-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
}

.footer-item:nth-child(1) { transform: translate(0, -175px); }
.footer-item:nth-child(2) { transform: translate(150px, -100px); }
.footer-item:nth-child(3) { transform: translate(150px, 100px); }
.footer-item:nth-child(4) { transform: translate(0, 175px); }
.footer-item:nth-child(5) { transform: translate(-150px, 100px); }
.footer-item:nth-child(6) { transform: translate(-150px, -100px); }

.footer-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-dark);
  color: var(--neon-cyan);
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.footer-item-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  color: var(--neon-cyan);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.footer-contact-icon {
  color: var(--neon-cyan);
  margin-right: var(--space-sm);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.footer-contact-text {
  color: var(--text-secondary);
}

.footer-links {
  flex: 1;
  min-width: 250px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-xs);
}

.footer-links-item {
  margin-bottom: var(--space-xs);
}

.footer-links-link {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links-link i {
  font-size: 0.75rem;
  margin-right: var(--space-xs);
  color: var(--neon-cyan);
}

.footer-links-link:hover, 
.footer-links-link:focus {
  color: var(--text-light);
}

.footer-hours {
  flex: 1;
  min-width: 250px;
}

.footer-hours-list {
  list-style: none;
  padding: 0;
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--grid-lines);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover, 
.footer-legal-link:focus {
  color: var(--neon-cyan);
}

.cookie-settings-link {
  cursor: pointer;
}

@media (max-width: 991px) {
  .footer-circular {
    display: none;
  }
  
  .footer-info {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary-dark);
  padding: var(--space-md);
  border-top: 1px solid var(--grid-lines);
  z-index: var(--z-cookie);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  z-index: var(--z-cookie);
  padding: var(--space-md);
}

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

.cookie-modal-content {
  background: var(--secondary-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--grid-lines);
}

.cookie-modal-content::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-magenta));
  z-index: -1;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.cookie-modal-title {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.cookie-modal-close:hover, 
.cookie-modal-close:focus {
  color: var(--neon-cyan);
}

.cookie-modal-body {
  margin-bottom: var(--space-lg);
}

.cookie-modal-text {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-category {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.cookie-category-title {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.cookie-category-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.cookie-category-toggle {
  display: flex;
  align-items: center;
}

.cookie-category-toggle input[type="checkbox"] {
  display: none;
}

.cookie-category-toggle label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  background: var(--grid-lines);
  border-radius: 15px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-category-toggle label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--text-light);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.cookie-category-toggle input[type="checkbox"]:checked + label {
  background: var(--neon-cyan);
}

.cookie-category-toggle input[type="checkbox"]:checked + label::after {
  transform: translateX(30px);
}

.cookie-category-toggle input[type="checkbox"]:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
}


@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .service-deep-header {
    flex-direction: column;
  }
  
  .service-deep-icon {
    margin-bottom: var(--space-sm);
  }
  
  .service-details,
  .service-info-grid {
    grid-template-columns: 1fr;
  }
  
  .case-detail-header {
    flex-direction: column;
  }
  
  .case-detail-images,
  .case-detail-results {
    grid-template-columns: 1fr;
  }
  
  .cookie-content,
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-actions .btn {
    width: 100%;
  }
}


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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-sm {
  margin-bottom: var(--space-sm) !important;
}

.mb-md {
  margin-bottom: var(--space-md) !important;
}

.mb-lg {
  margin-bottom: var(--space-lg) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-sm {
  margin-top: var(--space-sm) !important;
}

.mt-md {
  margin-top: var(--space-md) !important;
}

.mt-lg {
  margin-top: var(--space-lg) !important;
}