/* 
* VADMAP - Business Transformation Consultancy
* Main Stylesheet
* Version: 1.0.0
*/


:root {
  
  --primary: #173D7A;
  --secondary: #00A8E8;
  --tertiary: #34495E;
  --accent: #FF6B35;
  --background: #F9FCFF;
  --blueprint-grid: #E0E8F5;
  --text-primary: #1E2D3B;
  --text-secondary: #5D6D7E;
  --success: #2ECC71;
  --error: #E74C3C;

  
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  
  
  --container-width: 1200px;
  --container-padding: clamp(1.25rem, 5vw, 2rem);
  --header-height: 80px;
  --bottom-nav-height: 60px;
  
  
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --box-shadow: 0 4px 20px rgba(23, 61, 122, 0.1);
  --box-shadow-hover: 0 8px 30px rgba(23, 61, 122, 0.15);
  
  
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  
  --grid-size: 40px;
  --grid-line: 1px;
  
  
  --z-blueprint: -1;
  --z-base: 1;
  --z-header: 100;
  --z-modal: 200;
  --z-cookie: 300;
  --z-tooltip: 400;
  --z-bottom-nav: 90;
  --z-fab: 95;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

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

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

p {
  margin-bottom: 1.5rem;
}

p:last-child {
  margin-bottom: 0;
}

section {
  position: relative;
  padding: clamp(3rem, 10vh, 6rem) 0;
}

.vdm-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.vdm-blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: var(--grid-size) var(--grid-size);
  background-image: 
    linear-gradient(to right, var(--blueprint-grid) var(--grid-line), transparent var(--grid-line)), 
    linear-gradient(to bottom, var(--blueprint-grid) var(--grid-line), transparent var(--grid-line));
  opacity: 0.4;
  z-index: var(--z-blueprint);
  pointer-events: none;
}

.vdm-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.vdm-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 1rem auto 0;
}

.vdm-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: -1.5rem auto 3rem;
}


.vdm-measurement-line {
  position: absolute;
  background-color: var(--secondary);
  opacity: 0.7;
}

.vdm-horizontal-line {
  height: 1px;
  width: 60px;
  bottom: 15%;
  right: 10%;
}

.vdm-vertical-line {
  width: 1px;
  height: 60px;
  bottom: 15%;
  right: 10%;
}


.vdm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-align: center;
  text-decoration: none;
}

.vdm-btn:hover, .vdm-btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.vdm-btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(23, 61, 122, 0.2);
}

.vdm-btn-primary:hover, .vdm-btn-primary:focus {
  background-color: #1d4b94;
  color: white;
  box-shadow: 0 6px 15px rgba(23, 61, 122, 0.3);
}

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

.vdm-btn-outline:hover, .vdm-btn-outline:focus {
  background-color: var(--primary);
  color: white;
}

.vdm-btn-text {
  background-color: transparent;
  color: var(--primary);
  padding-inline: 1rem;
}

.vdm-btn-text:hover, .vdm-btn-text:focus {
  background-color: rgba(23, 61, 122, 0.05);
  color: var(--primary);
}

.vdm-btn-hero {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.vdm-btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.vdm-btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.vdm-btn-cta {
  font-weight: 600;
}


.vdm-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(249, 252, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-header);
  box-shadow: 0 2px 10px rgba(23, 61, 122, 0.05);
}

.vdm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.vdm-logo img {
  height: 42px;
  width: auto;
}

.vdm-nav-desktop {
  display: none;
}

.vdm-nav-list {
  display: flex;
  gap: 2rem;
}

.vdm-nav-item a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.vdm-nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width var(--transition-fast);
}

.vdm-nav-item a:hover::after,
.vdm-nav-item a:focus::after,
.vdm-nav-active a::after {
  width: 100%;
}

.vdm-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}

.vdm-toggle-line {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-fast);
}

.vdm-mobile-toggle.active .vdm-toggle-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.vdm-mobile-toggle.active .vdm-toggle-line:nth-child(2) {
  opacity: 0;
}

.vdm-mobile-toggle.active .vdm-toggle-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.vdm-nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background);
  z-index: var(--z-header);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.vdm-nav-mobile.active {
  transform: translateX(0);
}

.vdm-nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vdm-nav-mobile-item a {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.vdm-nav-mobile-item.vdm-nav-active a {
  color: var(--secondary);
}


.vdm-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background-color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(23, 61, 122, 0.1);
  z-index: var(--z-bottom-nav);
}

.vdm-bottom-nav-item {
  flex: 1;
  text-align: center;
}

.vdm-bottom-nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  height: 100%;
}

.vdm-bottom-nav-item a:hover,
.vdm-bottom-nav-item a:focus {
  color: var(--primary);
  text-decoration: none;
}

.vdm-bottom-nav-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.vdm-bottom-nav-cta a {
  color: var(--accent);
  font-weight: 600;
}

.vdm-bottom-nav-cta a:hover,
.vdm-bottom-nav-cta a:focus {
  color: #e55a27;
}


.vdm-fab {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 1rem);
  right: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  z-index: var(--z-fab);
  transition: all var(--transition-fast);
}

.vdm-fab:hover,
.vdm-fab:focus {
  background-color: #e55a27;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

.vdm-fab i {
  font-size: 1.5rem;
}


.vdm-hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.vdm-hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vdm-hero-text {
  max-width: 600px;
}

.vdm-hero-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.vdm-hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.vdm-hero-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.vdm-hero-image:hover img {
  transform: scale(1.02);
}


.vdm-value-props {
  background-color: rgba(224, 232, 245, 0.3);
  position: relative;
}

.vdm-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.vdm-value-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
  position: relative;
}

.vdm-value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 168, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-size: 1.5rem;
}

.vdm-value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vdm-value-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.vdm-value-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.vdm-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.vdm-service-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
}

.vdm-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.vdm-service-card:hover .vdm-service-image img {
  transform: scale(1.05);
}

.vdm-service-content {
  padding: 2rem;
}

.vdm-service-content h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.vdm-service-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.vdm-service-list li {
  margin-bottom: 0.5rem;
}

.vdm-service-metrics {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.vdm-service-metrics span {
  background-color: rgba(0, 168, 232, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}


.vdm-process {
  background-color: rgba(224, 232, 245, 0.3);
}

.vdm-process-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 4rem;
}

.vdm-process-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vdm-process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vdm-process-step {
  display: flex;
  gap: 1.5rem;
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
}

.vdm-process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  flex-shrink: 0;
}

.vdm-step-content h3 {
  margin-bottom: 0.75rem;
}

.vdm-step-content h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}


.vdm-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.vdm-impact-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
}

.vdm-impact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-impact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(23, 61, 122, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.vdm-impact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.vdm-impact-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.vdm-impact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.vdm-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.vdm-case-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
}

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

.vdm-case-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.vdm-case-content {
  padding: 2rem;
}

.vdm-case-header {
  margin-bottom: 1.5rem;
}

.vdm-case-header h3 {
  margin-bottom: 0.75rem;
}

.vdm-case-tag {
  display: inline-block;
  background-color: rgba(23, 61, 122, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.vdm-case-section {
  margin-bottom: 1.5rem;
}

.vdm-case-section h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.vdm-case-results {
  list-style: none;
}

.vdm-case-results li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.vdm-case-results li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}


.vdm-faq {
  background-color: rgba(224, 232, 245, 0.3);
}

.vdm-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.vdm-accordion-item {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.vdm-accordion-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.vdm-accordion-header:hover {
  background-color: rgba(224, 232, 245, 0.3);
}

.vdm-accordion-header h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
  padding-right: 2rem;
}

.vdm-accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.vdm-accordion-icon:before,
.vdm-accordion-icon:after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: transform var(--transition-fast);
}

.vdm-accordion-icon:before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.vdm-accordion-icon:after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.vdm-accordion-item.active .vdm-accordion-icon:after {
  transform: translateX(-50%) rotate(90deg);
}

.vdm-accordion-content {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
}

.vdm-accordion-item.active .vdm-accordion-content {
  padding-bottom: 2rem;
  max-height: 1000px; 
}


.vdm-contact-form {
  background-color: rgba(23, 61, 122, 0.03);
  position: relative;
}

.vdm-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
}

.vdm-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.vdm-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vdm-form-group {
  position: relative;
}

.vdm-form-group-full {
  grid-column: 1 / -1;
}

.vdm-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.vdm-form input,
.vdm-form textarea,
.vdm-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  background-color: #f9f9f9;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.vdm-form input:focus,
.vdm-form textarea:focus,
.vdm-form select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(0, 168, 232, 0.2);
}

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

.vdm-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.vdm-checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.vdm-checkbox-container label {
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}


.vdm-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(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 1rem;
}

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

.vdm-modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}

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

.vdm-modal-form {
  max-width: 500px;
}

.vdm-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vdm-modal-header h3 {
  margin-bottom: 0;
}

.vdm-modal-close {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.vdm-modal-close:hover {
  color: var(--error);
}

.vdm-modal-body {
  padding: 2rem;
}

.vdm-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #eee;
  text-align: right;
}


.vdm-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: var(--z-cookie);
  transform: translateY(100%);
  transition: transform var(--transition);
}

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

.vdm-cookie-content {
  padding: 1.5rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.vdm-cookie-content h3 {
  margin-bottom: 0.75rem;
}

.vdm-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.vdm-cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.vdm-cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vdm-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.vdm-cookie-category-header h4 {
  margin-bottom: 0;
}


.vdm-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.vdm-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.vdm-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition-fast);
  border-radius: 24px;
}

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

input:checked + .vdm-slider {
  background-color: var(--success);
}

input:focus + .vdm-slider {
  box-shadow: 0 0 1px var(--success);
}

input:checked + .vdm-slider:before {
  transform: translateX(24px);
}

input:disabled + .vdm-slider {
  opacity: 0.7;
  cursor: not-allowed;
}


.vdm-page-header {
  padding: 4rem 0;
  text-align: center;
  background-color: rgba(224, 232, 245, 0.3);
}

.vdm-page-title {
  margin-bottom: 1rem;
}

.vdm-page-subtitle {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}


.vdm-mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.vdm-mission-text {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.vdm-mission-lead {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}


.vdm-approach-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vdm-approach-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.vdm-approach-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vdm-approach-text {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.vdm-approach-text h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.vdm-approach-text h3:first-child {
  margin-top: 0;
}


.vdm-competencies {
  background-color: rgba(224, 232, 245, 0.3);
}

.vdm-competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vdm-competence-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
  height: 100%;
}

.vdm-competence-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-competence-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(23, 61, 122, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.vdm-competence-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vdm-competence-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.vdm-competence-list li {
  margin-bottom: 0.5rem;
}


.vdm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vdm-kpi-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
  height: 100%;
}

.vdm-kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-kpi-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vdm-kpi-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 168, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.vdm-kpi-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}


.vdm-legal {
  background-color: rgba(224, 232, 245, 0.3);
}

.vdm-legal-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.vdm-legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.vdm-legal-list li {
  margin-bottom: 0.5rem;
}


.vdm-cta {
  background: linear-gradient(to right, var(--primary), #2c5ca9);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.vdm-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.vdm-cta-title {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.vdm-cta-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.vdm-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


.vdm-start-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.vdm-start-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vdm-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vdm-step {
  display: flex;
  gap: 1.5rem;
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
}

.vdm-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-step-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.vdm-step-list li {
  margin-bottom: 0.5rem;
}


.vdm-preparation {
  background-color: rgba(224, 232, 245, 0.3);
}

.vdm-preparation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vdm-preparation-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all var(--transition);
  height: 100%;
}

.vdm-preparation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-preparation-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(23, 61, 122, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.vdm-preparation-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vdm-preparation-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.vdm-preparation-list li {
  margin-bottom: 0.5rem;
}

.vdm-preparation-note {
  background-color: rgba(0, 168, 232, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary);
}


.vdm-objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.vdm-objection-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--transition);
}

.vdm-objection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-objection-header {
  padding: 1.5rem 2rem;
  background-color: rgba(23, 61, 122, 0.05);
}

.vdm-objection-header h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: var(--primary);
}

.vdm-objection-body {
  padding: 1.5rem 2rem;
}


.vdm-gdpr-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.vdm-gdpr-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.vdm-gdpr-list li {
  margin-bottom: 0.75rem;
}


.vdm-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vdm-contact-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: all var(--transition);
}

.vdm-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.vdm-contact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(23, 61, 122, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.vdm-contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vdm-contact-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.vdm-contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vdm-response-info {
  background-color: rgba(0, 168, 232, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary);
  margin-bottom: 2rem;
}

.vdm-response-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}


.vdm-map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 450px;
}

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


.vdm-get-started-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}


.vdm-thanks {
  padding: 6rem 0;
}

.vdm-thanks-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  text-align: center;
}

.vdm-thanks-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--success);
  font-size: 2.5rem;
}

.vdm-thanks-title {
  margin-bottom: 1.5rem;
}

.vdm-thanks-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.vdm-thanks-next {
  text-align: left;
  margin-bottom: 3rem;
}

.vdm-thanks-next h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.vdm-thanks-steps {
  padding-left: 1.5rem;
  list-style-position: outside;
}

.vdm-thanks-steps li {
  margin-bottom: 1rem;
}

.vdm-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


.vdm-policy-content {
  padding-bottom: 6rem;
}

.vdm-policy-section {
  margin-bottom: 3rem;
}

.vdm-policy-section:last-child {
  margin-bottom: 0;
}

.vdm-policy-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.vdm-policy-section h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.vdm-policy-section ul, 
.vdm-policy-section ol {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.vdm-policy-section li {
  margin-bottom: 0.75rem;
}

.vdm-policy-section a {
  color: var(--secondary);
  text-decoration: underline;
}

.vdm-policy-section a:hover {
  color: var(--primary);
}

.vdm-policy-updated {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: right;
  margin-top: 3rem;
}


.vdm-cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.vdm-cookie-table th, 
.vdm-cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #ddd;
}

.vdm-cookie-table th {
  background-color: rgba(23, 61, 122, 0.05);
  font-weight: 600;
}

.vdm-cookie-table tr:nth-child(even) {
  background-color: rgba(249, 252, 255, 0.5);
}


.vdm-footer {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
  position: relative;
}

.vdm-footer .vdm-blueprint-grid {
  opacity: 0.05;
}

.vdm-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.vdm-footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.vdm-footer-tagline {
  opacity: 0.8;
}

.vdm-footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.vdm-footer-links li {
  margin-bottom: 0.75rem;
}

.vdm-footer-links a,
.vdm-contact-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.vdm-footer-links a:hover,
.vdm-contact-list a:hover {
  color: white;
  text-decoration: none;
}

.vdm-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vdm-contact-list li {
  display: flex;
  gap: 0.75rem;
}

.vdm-contact-list i {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.vdm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.vdm-copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}



@media (min-width: 768px) {
  .vdm-nav-desktop {
    display: block;
  }
  
  .vdm-mobile-toggle {
    display: none;
  }
  
  .vdm-hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .vdm-hero-text {
    flex: 1;
    padding-right: 2rem;
  }
  
  .vdm-hero-image {
    flex: 1;
  }
  
  .vdm-service-card {
    flex-direction: row;
  }
  
  .vdm-service-image {
    width: 40%;
    height: auto;
  }
  
  .vdm-service-content {
    width: 60%;
  }
  
  .vdm-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vdm-approach-content {
    flex-direction: row;
    align-items: center;
  }
  
  .vdm-approach-image,
  .vdm-approach-text {
    flex: 1;
  }
  
  .vdm-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vdm-get-started-actions {
    flex-direction: row;
    justify-content: center;
  }
}


@media (min-width: 1024px) {
  .vdm-service-image {
    width: 30%;
  }
  
  .vdm-service-content {
    width: 70%;
  }
  
  .vdm-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .vdm-objections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 1024px) {
  .vdm-bottom-nav {
    display: none;
  }
  
  .vdm-fab {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
}


@media (max-width: 480px) {
  .vdm-form {
    grid-template-columns: 1fr;
  }
  
  .vdm-form-container {
    padding: 2rem 1.5rem;
  }
  
  .vdm-cookie-actions {
    flex-direction: column;
  }
  
  .vdm-thanks-actions {
    flex-direction: column;
  }
}


.iti {
  width: 100%;
}