/* 
   Whfadebl - Training Cost Optimization Agency
   Custom CSS Styles
   Version 1.0
*/


:root {
  
  --opt-primary: #3A5199;
  --opt-secondary: #FF7D3B;
  --opt-accent: #25D0B1;
  --opt-highlight: #FF4E78;
  
  
  --opt-bg-light: #F8FAFB;
  --opt-bg-dark: #1E2435;
  --opt-bg-gradient: linear-gradient(135deg, var(--opt-bg-light) 0%, #EDF1F7 100%);
  --opt-card-bg: #FFFFFF;
  
  
  --opt-text-primary: #2C3241;
  --opt-text-secondary: #6B7280;
  --opt-text-light: #FFFFFF;
  --opt-text-muted: #94A3B8;
  
  
  --opt-space-xs: 0.25rem;
  --opt-space-sm: 0.5rem;
  --opt-space-md: 1rem;
  --opt-space-lg: 1.5rem;
  --opt-space-xl: 2rem;
  --opt-space-2xl: 3rem;
  --opt-space-3xl: 4rem;
  --opt-space-4xl: 6rem;
  
  
  --opt-font-family: 'Epilogue', sans-serif;
  --opt-font-size-xs: 0.75rem;
  --opt-font-size-sm: 0.875rem;
  --opt-font-size-base: 1rem;
  --opt-font-size-lg: 1.125rem;
  --opt-font-size-xl: 1.25rem;
  --opt-font-size-2xl: 1.5rem;
  --opt-font-size-3xl: 1.875rem;
  --opt-font-size-4xl: 2.25rem;
  --opt-font-size-5xl: 3rem;
  --opt-font-size-6xl: 4rem;
  
  
  --opt-font-weight-light: 300;
  --opt-font-weight-regular: 400;
  --opt-font-weight-medium: 500;
  --opt-font-weight-bold: 700;
  
  
  --opt-radius-sm: 0.25rem;
  --opt-radius-md: 0.5rem;
  --opt-radius-lg: 0.75rem;
  --opt-radius-xl: 1rem;
  --opt-radius-full: 9999px;
  
  
  --opt-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --opt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --opt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --opt-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  
  --opt-transition-fast: 150ms ease;
  --opt-transition-normal: 250ms ease;
  --opt-transition-slow: 350ms ease;
  
  
  --opt-z-below: 0;
  --opt-z-normal: 1;
  --opt-z-above: 10;
  --opt-z-modal: 100;
  --opt-z-overlay: 200;
  --opt-z-max: 9999;
  
  
  --opt-content-sm: 640px;
  --opt-content-md: 768px;
  --opt-content-lg: 1024px;
  --opt-content-xl: 1280px;
  --opt-content-max: 1440px;
}


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

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

body {
  font-family: var(--opt-font-family);
  font-weight: var(--opt-font-weight-regular);
  line-height: 1.5;
  color: var(--opt-text-primary);
  background-color: var(--opt-bg-light);
  overflow-x: hidden;
}

img, 
picture, 
video, 
canvas, 
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

a:hover {
  color: var(--opt-secondary);
}

a:focus-visible {
  outline: 2px solid var(--opt-accent);
  outline-offset: 2px;
  border-radius: var(--opt-radius-sm);
}

button, 
input[type="button"],
input[type="submit"] {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--opt-font-weight-bold);
  line-height: 1.2;
}

h1 {
  font-size: var(--opt-font-size-4xl);
  margin-bottom: var(--opt-space-lg);
}

h2 {
  font-size: var(--opt-font-size-3xl);
  margin-bottom: var(--opt-space-md);
}

h3 {
  font-size: var(--opt-font-size-2xl);
  margin-bottom: var(--opt-space-md);
}

h4 {
  font-size: var(--opt-font-size-xl);
  margin-bottom: var(--opt-space-sm);
}

h5 {
  font-size: var(--opt-font-size-lg);
  margin-bottom: var(--opt-space-sm);
}

h6 {
  font-size: var(--opt-font-size-base);
  margin-bottom: var(--opt-space-sm);
}

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

small {
  font-size: var(--opt-font-size-sm);
}


.opt-content {
  width: 100%;
  max-width: var(--opt-content-xl);
  margin: 0 auto;
  padding: 0 var(--opt-space-lg);
}

.opt-content-narrow {
  max-width: var(--opt-content-lg);
}

.opt-content-wide {
  max-width: var(--opt-content-max);
}

.opt-flex {
  display: flex;
}

.opt-flex-col {
  display: flex;
  flex-direction: column;
}

.opt-grid {
  display: grid;
}

.opt-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--opt-space-lg);
}

.opt-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--opt-space-lg);
}

.opt-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--opt-space-md);
}

.opt-items-center {
  align-items: center;
}

.opt-justify-between {
  justify-content: space-between;
}

.opt-justify-center {
  justify-content: center;
}

.opt-gap-sm {
  gap: var(--opt-space-sm);
}

.opt-gap-md {
  gap: var(--opt-space-md);
}

.opt-gap-lg {
  gap: var(--opt-space-lg);
}

.opt-gap-xl {
  gap: var(--opt-space-xl);
}

.opt-padding-y-sm {
  padding-top: var(--opt-space-sm);
  padding-bottom: var(--opt-space-sm);
}

.opt-padding-y-md {
  padding-top: var(--opt-space-md);
  padding-bottom: var(--opt-space-md);
}

.opt-padding-y-lg {
  padding-top: var(--opt-space-lg);
  padding-bottom: var(--opt-space-lg);
}

.opt-padding-y-xl {
  padding-top: var(--opt-space-xl);
  padding-bottom: var(--opt-space-xl);
}

.opt-padding-y-2xl {
  padding-top: var(--opt-space-2xl);
  padding-bottom: var(--opt-space-2xl);
}

.opt-padding-y-3xl {
  padding-top: var(--opt-space-3xl);
  padding-bottom: var(--opt-space-3xl);
}

.opt-margin-y-sm {
  margin-top: var(--opt-space-sm);
  margin-bottom: var(--opt-space-sm);
}

.opt-margin-y-md {
  margin-top: var(--opt-space-md);
  margin-bottom: var(--opt-space-md);
}

.opt-margin-y-lg {
  margin-top: var(--opt-space-lg);
  margin-bottom: var(--opt-space-lg);
}

.opt-margin-y-xl {
  margin-top: var(--opt-space-xl);
  margin-bottom: var(--opt-space-xl);
}

.opt-margin-y-2xl {
  margin-top: var(--opt-space-2xl);
  margin-bottom: var(--opt-space-2xl);
}

.opt-margin-y-3xl {
  margin-top: var(--opt-space-3xl);
  margin-bottom: var(--opt-space-3xl);
}


.opt-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: var(--opt-z-above);
  background-color: var(--opt-card-bg);
  box-shadow: var(--opt-shadow-sm);
  padding: var(--opt-space-md) 0;
}

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

.opt-logo {
  display: flex;
  align-items: center;
}

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

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

.opt-nav-list {
  display: flex;
  gap: var(--opt-space-xl);
}

.opt-nav-item {
  position: relative;
}

.opt-nav-link {
  color: var(--opt-text-primary);
  font-weight: var(--opt-font-weight-medium);
  padding: var(--opt-space-xs) 0;
  transition: color var(--opt-transition-normal);
}

.opt-nav-link:hover {
  color: var(--opt-secondary);
}

.opt-nav-link.active {
  color: var(--opt-primary);
}

.opt-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--opt-primary);
  border-radius: var(--opt-radius-full);
}

.opt-contact-phone {
  display: flex;
  align-items: center;
  gap: var(--opt-space-sm);
  margin-left: var(--opt-space-xl);
  font-weight: var(--opt-font-weight-medium);
  color: var(--opt-primary);
}

.opt-contact-phone i {
  color: var(--opt-secondary);
}

.opt-mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--opt-text-primary);
  font-size: var(--opt-font-size-xl);
  cursor: pointer;
}


.opt-hero {
  position: relative;
  overflow: hidden;
  padding: var(--opt-space-4xl) 0;
  background-color: var(--opt-bg-dark);
  color: var(--opt-text-light);
}

.opt-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: var(--opt-z-below);
}

.opt-hero-content {
  position: relative;
  z-index: var(--opt-z-normal);
  max-width: 60%;
}

.opt-hero-title {
  font-size: var(--opt-font-size-5xl);
  line-height: 1.1;
  margin-bottom: var(--opt-space-lg);
}

.opt-hero-subtitle {
  font-size: var(--opt-font-size-xl);
  margin-bottom: var(--opt-space-xl);
  color: var(--opt-accent);
}

.opt-hero-text {
  margin-bottom: var(--opt-space-xl);
  font-size: var(--opt-font-size-lg);
}

.opt-hero-cta {
  margin-top: var(--opt-space-xl);
}


.opt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--opt-space-sm);
  padding: var(--opt-space-sm) var(--opt-space-lg);
  font-weight: var(--opt-font-weight-medium);
  border-radius: var(--opt-radius-md);
  transition: all var(--opt-transition-normal);
  border: none;
  text-align: center;
}

.opt-button-primary {
  background-color: var(--opt-primary);
  color: var(--opt-text-light);
}

.opt-button-primary:hover {
  background-color: #2d4080;
  color: var(--opt-text-light);
  transform: translateY(-2px);
  box-shadow: var(--opt-shadow-md);
}

.opt-button-secondary {
  background-color: var(--opt-secondary);
  color: var(--opt-text-light);
}

.opt-button-secondary:hover {
  background-color: #e66a29;
  color: var(--opt-text-light);
  transform: translateY(-2px);
  box-shadow: var(--opt-shadow-md);
}

.opt-button-accent {
  background-color: var(--opt-accent);
  color: var(--opt-text-light);
}

.opt-button-accent:hover {
  background-color: #1eb99d;
  color: var(--opt-text-light);
  transform: translateY(-2px);
  box-shadow: var(--opt-shadow-md);
}

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

.opt-button-outline:hover {
  background-color: var(--opt-primary);
  color: var(--opt-text-light);
  transform: translateY(-2px);
  box-shadow: var(--opt-shadow-md);
}

.opt-button-lg {
  padding: var(--opt-space-md) var(--opt-space-xl);
  font-size: var(--opt-font-size-lg);
}

.opt-button:focus-visible {
  outline: 2px solid var(--opt-accent);
  outline-offset: 2px;
}


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

.opt-section-alt {
  background-color: var(--opt-bg-gradient);
}

.opt-section-dark {
  background-color: var(--opt-bg-dark);
  color: var(--opt-text-light);
}

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

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

.opt-section-dark .opt-section-subtitle {
  color: var(--opt-text-muted);
}


.opt-feature-card {
  background-color: var(--opt-card-bg);
  border-radius: var(--opt-radius-lg);
  padding: var(--opt-space-xl);
  box-shadow: var(--opt-shadow-md);
  transition: transform var(--opt-transition-normal), box-shadow var(--opt-transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.opt-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--opt-shadow-lg);
}

.opt-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: var(--opt-space-lg);
  background-color: var(--opt-primary);
  color: var(--opt-text-light);
  border-radius: var(--opt-radius-lg);
  font-size: var(--opt-font-size-xl);
}

.opt-feature-title {
  margin-bottom: var(--opt-space-md);
  color: var(--opt-primary);
}

.opt-feature-text {
  flex: 1;
  margin-bottom: var(--opt-space-md);
  color: var(--opt-text-secondary);
}


.opt-process {
  counter-reset: step;
}

.opt-process-step {
  display: flex;
  gap: var(--opt-space-lg);
  margin-bottom: var(--opt-space-2xl);
  position: relative;
}

.opt-process-step:last-child {
  margin-bottom: 0;
}

.opt-process-number {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--opt-radius-full);
  background-color: var(--opt-secondary);
  color: var(--opt-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--opt-font-weight-bold);
}

.opt-process-number::before {
  counter-increment: step;
  content: counter(step);
}

.opt-process-content {
  flex: 1;
}

.opt-process-title {
  margin-bottom: var(--opt-space-sm);
  color: var(--opt-primary);
}

.opt-process-text {
  color: var(--opt-text-secondary);
}

.opt-process-connector {
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: -25px;
  width: 2px;
  background-color: var(--opt-secondary);
  opacity: 0.3;
}

.opt-process-step:last-child .opt-process-connector {
  display: none;
}


.opt-case {
  background-color: var(--opt-card-bg);
  border-radius: var(--opt-radius-lg);
  overflow: hidden;
  box-shadow: var(--opt-shadow-md);
  transition: transform var(--opt-transition-normal), box-shadow var(--opt-transition-normal);
}

.opt-case:hover {
  transform: translateY(-5px);
  box-shadow: var(--opt-shadow-lg);
}

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

.opt-case-content {
  padding: var(--opt-space-lg);
}

.opt-case-tag {
  display: inline-block;
  padding: var(--opt-space-xs) var(--opt-space-sm);
  background-color: var(--opt-accent);
  color: var(--opt-text-light);
  border-radius: var(--opt-radius-sm);
  font-size: var(--opt-font-size-xs);
  font-weight: var(--opt-font-weight-medium);
  margin-bottom: var(--opt-space-sm);
}

.opt-case-title {
  margin-bottom: var(--opt-space-sm);
}

.opt-case-result {
  font-size: var(--opt-font-size-lg);
  font-weight: var(--opt-font-weight-bold);
  color: var(--opt-primary);
  margin-bottom: var(--opt-space-sm);
}

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


.opt-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--opt-space-xl);
}

.opt-benefit-item {
  display: flex;
  gap: var(--opt-space-md);
  align-items: flex-start;
}

.opt-benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--opt-accent);
  border-radius: var(--opt-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--opt-text-light);
}

.opt-benefit-content {
  flex: 1;
}

.opt-benefit-title {
  margin-bottom: var(--opt-space-xs);
  color: var(--opt-primary);
}

.opt-benefit-text {
  color: var(--opt-text-secondary);
}


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

.opt-methodology-item {
  background-color: var(--opt-card-bg);
  border-radius: var(--opt-radius-lg);
  padding: var(--opt-space-lg);
  box-shadow: var(--opt-shadow-md);
  transition: transform var(--opt-transition-normal), box-shadow var(--opt-transition-normal);
}

.opt-methodology-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--opt-shadow-lg);
}

.opt-methodology-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--opt-radius-full);
  background-color: var(--opt-primary);
  color: var(--opt-text-light);
  font-weight: var(--opt-font-weight-bold);
  margin-bottom: var(--opt-space-md);
}

.opt-methodology-title {
  margin-bottom: var(--opt-space-md);
  color: var(--opt-primary);
}

.opt-methodology-text {
  color: var(--opt-text-secondary);
}


.opt-faq {
  max-width: var(--opt-content-lg);
  margin: 0 auto;
}

.opt-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: var(--opt-space-md) 0;
}

.opt-faq-question {
  font-weight: var(--opt-font-weight-medium);
  font-size: var(--opt-font-size-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--opt-space-md) 0;
}

.opt-faq-icon {
  transition: transform var(--opt-transition-normal);
}

.opt-faq-answer {
  color: var(--opt-text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--opt-transition-normal), padding var(--opt-transition-normal);
}

.opt-faq-item.active .opt-faq-icon {
  transform: rotate(180deg);
}

.opt-faq-item.active .opt-faq-answer {
  max-height: 1000px;
  padding-bottom: var(--opt-space-md);
}


.opt-contact-form-wrapper {
  background-color: var(--opt-card-bg);
  border-radius: var(--opt-radius-lg);
  padding: var(--opt-space-2xl);
  box-shadow: var(--opt-shadow-lg);
}

.opt-form-title {
  margin-bottom: var(--opt-space-xl);
  text-align: center;
}

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

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

.opt-form-input,
.opt-form-textarea {
  width: 100%;
  padding: var(--opt-space-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--opt-radius-md);
  background-color: var(--opt-bg-light);
  transition: border-color var(--opt-transition-normal), box-shadow var(--opt-transition-normal);
}

.opt-form-input:focus,
.opt-form-textarea:focus {
  border-color: var(--opt-primary);
  box-shadow: 0 0 0 3px rgba(58, 81, 153, 0.1);
  outline: none;
}

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

.opt-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--opt-space-sm);
  margin-bottom: var(--opt-space-lg);
}

.opt-form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.opt-form-checkbox-label {
  font-size: var(--opt-font-size-sm);
  color: var(--opt-text-secondary);
}

.opt-form-button {
  width: 100%;
}

.iti {
  width: 100%;
}


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

.opt-contact-card {
  background-color: var(--opt-card-bg);
  padding: var(--opt-space-lg);
  border-radius: var(--opt-radius-lg);
  box-shadow: var(--opt-shadow-md);
  text-align: center;
}

.opt-contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--opt-space-lg);
  background-color: var(--opt-primary);
  color: var(--opt-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--opt-radius-full);
  font-size: var(--opt-font-size-xl);
}

.opt-contact-label {
  font-weight: var(--opt-font-weight-medium);
  margin-bottom: var(--opt-space-sm);
}

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

.opt-contact-value a {
  color: var(--opt-primary);
  font-weight: var(--opt-font-weight-medium);
}

.opt-map-container {
  margin-top: var(--opt-space-2xl);
  border-radius: var(--opt-radius-lg);
  overflow: hidden;
  box-shadow: var(--opt-shadow-md);
  height: 400px;
}

.opt-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.opt-footer {
  background-color: var(--opt-bg-dark);
  color: var(--opt-text-light);
  padding: var(--opt-space-3xl) 0 var(--opt-space-lg);
}

.opt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--opt-space-2xl);
}

.opt-footer-logo {
  margin-bottom: var(--opt-space-lg);
}

.opt-footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.opt-footer-about {
  margin-bottom: var(--opt-space-lg);
  color: var(--opt-text-muted);
}

.opt-footer-contact-item {
  display: flex;
  gap: var(--opt-space-sm);
  margin-bottom: var(--opt-space-md);
  color: var(--opt-text-muted);
}

.opt-footer-contact-item i {
  color: var(--opt-accent);
}

.opt-footer-heading {
  font-weight: var(--opt-font-weight-bold);
  margin-bottom: var(--opt-space-lg);
  color: var(--opt-text-light);
}

.opt-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--opt-space-md);
}

.opt-footer-link {
  color: var(--opt-text-muted);
  transition: color var(--opt-transition-normal);
}

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

.opt-footer-divider {
  margin: var(--opt-space-2xl) 0 var(--opt-space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.opt-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--opt-text-muted);
  font-size: var(--opt-font-size-sm);
}

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

.opt-footer-legal-link {
  color: var(--opt-text-muted);
  transition: color var(--opt-transition-normal);
}

.opt-footer-legal-link:hover {
  color: var(--opt-accent);
}

.opt-cookie-settings {
  color: var(--opt-accent);
  cursor: pointer;
}


.opt-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--opt-bg-dark);
  color: var(--opt-text-light);
  padding: var(--opt-space-lg);
  box-shadow: var(--opt-shadow-xl);
  z-index: var(--opt-z-modal);
  transform: translateY(100%);
  transition: transform var(--opt-transition-normal);
}

.opt-cookie-banner.active {
  transform: translateY(0);
}

.opt-cookie-content {
  max-width: var(--opt-content-lg);
  margin: 0 auto;
}

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

.opt-cookie-text {
  margin-bottom: var(--opt-space-lg);
  color: var(--opt-text-muted);
}

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

.opt-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--opt-z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--opt-transition-normal), visibility var(--opt-transition-normal);
}

.opt-cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.opt-cookie-modal-content {
  background-color: var(--opt-card-bg);
  border-radius: var(--opt-radius-lg);
  padding: var(--opt-space-2xl);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--opt-transition-normal);
}

.opt-cookie-modal.active .opt-cookie-modal-content {
  transform: translateY(0);
}

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

.opt-cookie-modal-title {
  color: var(--opt-text-primary);
}

.opt-cookie-modal-close {
  background: transparent;
  border: none;
  font-size: var(--opt-font-size-xl);
  color: var(--opt-text-secondary);
  cursor: pointer;
  transition: color var(--opt-transition-normal);
}

.opt-cookie-modal-close:hover {
  color: var(--opt-text-primary);
}

.opt-cookie-options {
  margin-bottom: var(--opt-space-xl);
}

.opt-cookie-option {
  padding: var(--opt-space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.opt-cookie-option:last-child {
  border-bottom: none;
}

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

.opt-cookie-option-title {
  font-weight: var(--opt-font-weight-medium);
}

.opt-cookie-option-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.opt-cookie-option-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.opt-cookie-option-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--opt-transition-normal);
  border-radius: 34px;
}

.opt-cookie-option-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--opt-transition-normal);
  border-radius: 50%;
}

.opt-cookie-option-toggle input:checked + .opt-cookie-option-slider {
  background-color: var(--opt-primary);
}

.opt-cookie-option-toggle input:checked + .opt-cookie-option-slider:before {
  transform: translateX(26px);
}

.opt-cookie-option-toggle input:disabled + .opt-cookie-option-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.opt-cookie-option-description {
  color: var(--opt-text-secondary);
  font-size: var(--opt-font-size-sm);
}

.opt-cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--opt-space-md);
}


.opt-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--opt-z-max);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--opt-transition-normal), visibility var(--opt-transition-normal);
}

.opt-modal.active {
  opacity: 1;
  visibility: visible;
}

.opt-modal-content {
  background-color: var(--opt-card-bg);
  border-radius: var(--opt-radius-lg);
  padding: var(--opt-space-2xl);
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--opt-transition-normal);
}

.opt-modal.active .opt-modal-content {
  transform: translateY(0);
}

.opt-modal-icon {
  font-size: 4rem;
  color: var(--opt-accent);
  margin-bottom: var(--opt-space-lg);
}

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

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


.opt-thank-you {
  padding: var(--opt-space-4xl) 0;
  text-align: center;
}

.opt-thank-you-icon {
  font-size: 5rem;
  color: var(--opt-accent);
  margin-bottom: var(--opt-space-xl);
}

.opt-thank-you-title {
  margin-bottom: var(--opt-space-lg);
  color: var(--opt-primary);
}

.opt-thank-you-text {
  max-width: 600px;
  margin: 0 auto var(--opt-space-2xl);
  color: var(--opt-text-secondary);
}


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

.opt-legal-header {
  margin-bottom: var(--opt-space-2xl);
  text-align: center;
}

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

.opt-legal-date {
  color: var(--opt-text-secondary);
  font-size: var(--opt-font-size-sm);
}

.opt-legal-content {
  max-width: var(--opt-content-lg);
  margin: 0 auto;
}

.opt-legal-section {
  margin-bottom: var(--opt-space-2xl);
}

.opt-legal-section-title {
  margin-bottom: var(--opt-space-lg);
  color: var(--opt-primary);
}

.opt-legal-text {
  margin-bottom: var(--opt-space-md);
}

.opt-legal-list {
  list-style-type: disc;
  margin-left: var(--opt-space-xl);
  margin-bottom: var(--opt-space-lg);
}

.opt-legal-list-item {
  margin-bottom: var(--opt-space-sm);
}


.opt-parallax {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.opt-parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.opt-parallax-background {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.opt-parallax-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--opt-text-light);
  text-align: center;
  padding: var(--opt-space-xl);
  background-color: rgba(30, 36, 53, 0.7);
}

.opt-parallax-title {
  margin-bottom: var(--opt-space-lg);
  font-size: var(--opt-font-size-4xl);
}

.opt-parallax-text {
  max-width: 700px;
  font-size: var(--opt-font-size-lg);
}


.opt-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.opt-fade-up.opt-active {
  opacity: 1;
  transform: translateY(0);
}

.opt-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.opt-fade-in.opt-active {
  opacity: 1;
}

.opt-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.opt-slide-left.opt-active {
  opacity: 1;
  transform: translateX(0);
}

.opt-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.opt-slide-right.opt-active {
  opacity: 1;
  transform: translateX(0);
}

.opt-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.opt-zoom-in.opt-active {
  opacity: 1;
  transform: scale(1);
}


.opt-sticky-container {
  position: relative;
  height: 300vh;
  overflow: hidden;
}

.opt-sticky-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.opt-sticky-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: var(--opt-z-below);
}

.opt-sticky-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 36, 53, 0.7);
  z-index: var(--opt-z-below);
}

.opt-sticky-content {
  position: relative;
  z-index: var(--opt-z-normal);
  max-width: var(--opt-content-lg);
  padding: var(--opt-space-2xl);
  color: var(--opt-text-light);
  text-align: center;
}

.opt-sticky-title {
  font-size: var(--opt-font-size-5xl);
  margin-bottom: var(--opt-space-xl);
}

.opt-sticky-text {
  font-size: var(--opt-font-size-lg);
  margin-bottom: var(--opt-space-xl);
}


.opt-methodology-hero {
  position: relative;
  padding: var(--opt-space-3xl) 0;
  background-color: var(--opt-bg-dark);
  color: var(--opt-text-light);
  overflow: hidden;
}

.opt-methodology-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: var(--opt-z-below);
}

.opt-methodology-hero-content {
  position: relative;
  z-index: var(--opt-z-normal);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.opt-methodology-hero-title {
  font-size: var(--opt-font-size-4xl);
  margin-bottom: var(--opt-space-lg);
}

.opt-methodology-hero-text {
  font-size: var(--opt-font-size-lg);
}

.opt-methodology-steps {
  counter-reset: methodology;
}

.opt-methodology-step {
  padding: var(--opt-space-3xl) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.opt-methodology-step:last-child {
  border-bottom: none;
}

.opt-methodology-step-header {
  display: flex;
  align-items: center;
  gap: var(--opt-space-lg);
  margin-bottom: var(--opt-space-xl);
}

.opt-methodology-step-number {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: var(--opt-radius-full);
  background-color: var(--opt-primary);
  color: var(--opt-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--opt-font-weight-bold);
  font-size: var(--opt-font-size-xl);
}

.opt-methodology-step-number::before {
  counter-increment: methodology;
  content: counter(methodology);
}

.opt-methodology-step-title {
  font-size: var(--opt-font-size-2xl);
  color: var(--opt-primary);
}

.opt-methodology-step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--opt-space-2xl);
}

.opt-methodology-step-text p {
  margin-bottom: var(--opt-space-md);
}

.opt-methodology-step-list {
  list-style-type: disc;
  margin-left: var(--opt-space-xl);
  margin-bottom: var(--opt-space-lg);
}

.opt-methodology-step-list-item {
  margin-bottom: var(--opt-space-sm);
}

.opt-methodology-step-image {
  border-radius: var(--opt-radius-lg);
  overflow: hidden;
  box-shadow: var(--opt-shadow-lg);
}

.opt-methodology-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.opt-warehouses-hero {
  position: relative;
  padding: var(--opt-space-3xl) 0;
  background-color: var(--opt-bg-dark);
  color: var(--opt-text-light);
  overflow: hidden;
}

.opt-warehouses-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: var(--opt-z-below);
}

.opt-warehouses-hero-content {
  position: relative;
  z-index: var(--opt-z-normal);
  max-width: 700px;
}

.opt-warehouses-hero-title {
  font-size: var(--opt-font-size-4xl);
  margin-bottom: var(--opt-space-lg);
}

.opt-warehouses-hero-text {
  font-size: var(--opt-font-size-lg);
}

.opt-warehouses-challenge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--opt-space-2xl);
  align-items: center;
}

.opt-warehouses-challenge-content {
  padding-right: var(--opt-space-2xl);
}

.opt-warehouses-challenge-title {
  margin-bottom: var(--opt-space-lg);
  color: var(--opt-primary);
}

.opt-warehouses-challenge-text {
  margin-bottom: var(--opt-space-lg);
}

.opt-warehouses-challenge-list {
  list-style-type: none;
}

.opt-warehouses-challenge-item {
  display: flex;
  gap: var(--opt-space-md);
  margin-bottom: var(--opt-space-md);
  align-items: flex-start;
}

.opt-warehouses-challenge-icon {
  flex-shrink: 0;
  color: var(--opt-secondary);
  font-size: var(--opt-font-size-xl);
  margin-top: 3px;
}

.opt-warehouses-solution {
  background-color: var(--opt-bg-gradient);
}

.opt-warehouses-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--opt-space-xl);
}

.opt-warehouses-metric {
  background-color: var(--opt-card-bg);
  border-radius: var(--opt-radius-lg);
  padding: var(--opt-space-xl);
  box-shadow: var(--opt-shadow-md);
  text-align: center;
  transition: transform var(--opt-transition-normal), box-shadow var(--opt-transition-normal);
}

.opt-warehouses-metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--opt-shadow-lg);
}

.opt-warehouses-metric-value {
  font-size: var(--opt-font-size-4xl);
  font-weight: var(--opt-font-weight-bold);
  color: var(--opt-primary);
  margin-bottom: var(--opt-space-md);
}

.opt-warehouses-metric-label {
  color: var(--opt-text-secondary);
}


@media (max-width: 1200px) {
  :root {
    --opt-font-size-5xl: 2.5rem;
    --opt-font-size-4xl: 2rem;
  }
  
  .opt-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--opt-space-xl);
  }
  
  .opt-methodology-step-content {
    grid-template-columns: 1fr;
    gap: var(--opt-space-xl);
  }
  
  .opt-methodology-step-image {
    order: -1;
  }
  
  .opt-warehouses-challenge {
    grid-template-columns: 1fr;
    gap: var(--opt-space-xl);
  }
  
  .opt-warehouses-challenge-image {
    order: -1;
  }
  
  .opt-warehouses-challenge-content {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  :root {
    --opt-font-size-4xl: 1.875rem;
    --opt-font-size-3xl: 1.5rem;
    --opt-font-size-2xl: 1.25rem;
  }
  
  .opt-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .opt-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .opt-hero-content {
    max-width: 80%;
  }
  
  .opt-benefits {
    grid-template-columns: 1fr;
  }
  
  .opt-process-step {
    flex-direction: column;
    gap: var(--opt-space-md);
  }
  
  .opt-process-connector {
    display: none;
  }
  
  .opt-process-number {
    margin: 0 auto;
  }
  
  .opt-process-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --opt-space-4xl: 4rem;
    --opt-space-3xl: 3rem;
    --opt-space-2xl: 2rem;
  }
  
  .opt-mobile-nav-toggle {
    display: block;
  }
  
  .opt-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--opt-card-bg);
    box-shadow: var(--opt-shadow-md);
    padding: var(--opt-space-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--opt-transition-normal), opacity var(--opt-transition-normal), visibility var(--opt-transition-normal);
    z-index: var(--opt-z-above);
  }
  
  .opt-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .opt-nav-list {
    flex-direction: column;
    gap: var(--opt-space-lg);
  }
  
  .opt-contact-phone {
    display: none;
  }
  
  .opt-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .opt-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .opt-hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .opt-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .opt-footer-bottom {
    flex-direction: column;
    gap: var(--opt-space-lg);
    text-align: center;
  }
  
  .opt-footer-legal {
    flex-direction: column;
    gap: var(--opt-space-md);
  }
  
  .opt-cookie-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  :root {
    --opt-font-size-4xl: 1.75rem;
    --opt-font-size-3xl: 1.5rem;
    --opt-font-size-2xl: 1.25rem;
    --opt-font-size-xl: 1.125rem;
  }
  
  .opt-hero {
    padding: var(--opt-space-2xl) 0;
  }
  
  .opt-hero-title {
    font-size: var(--opt-font-size-3xl);
  }
  
  .opt-section {
    padding: var(--opt-space-2xl) 0;
  }
  
  .opt-contact-form-wrapper {
    padding: var(--opt-space-lg);
  }
  
  .opt-cookie-banner {
    padding: var(--opt-space-md);
  }
  
  .opt-cookie-modal-content {
    padding: var(--opt-space-lg);
  }
  
  .opt-thank-you {
    padding: var(--opt-space-2xl) 0;
  }
  
  .opt-methodology-step-header {
    flex-direction: column;
    text-align: center;
    gap: var(--opt-space-md);
  }
  
  .opt-warehouses-hero {
    padding: var(--opt-space-2xl) 0;
  }
}