
:root {
  --primary: #2D3748;
  --secondary: #4A5568;
  --accent: #805AD5;
  --background: #F7FAFC;
  --soft-shadow: #E2E8F0;
  --highlight: #FFFFFF;
  --text-primary: #1A202C;
  --text-secondary: #718096;
  --success: #48BB78;
  --error: #F56565;
  --shadow-sm: 3px 3px 6px var(--soft-shadow), -3px -3px 6px var(--highlight);
  --shadow-md: 5px 5px 10px var(--soft-shadow), -5px -5px 10px var(--highlight);
  --shadow-lg: 10px 10px 20px var(--soft-shadow), -10px -10px 20px var(--highlight);
  --shadow-inset: inset 3px 3px 6px var(--soft-shadow), inset -3px -3px 6px var(--highlight);
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.neu-card {
  background: var(--background);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.neu-card:hover {
  box-shadow: var(--shadow-lg);
}

.neu-button {
  display: inline-block;
  background: var(--background);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.neu-button:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.neu-button:active {
  box-shadow: var(--shadow-inset);
  transform: translateY(0);
}

.neu-button-primary {
  background: var(--primary);
  color: white;
}

.neu-button-accent {
  background: var(--accent);
  color: white;
}

.neu-input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: var(--background);
  box-shadow: var(--shadow-inset);
  transition: all 0.3s ease;
}

.neu-input:focus {
  outline: none;
  box-shadow: inset 4px 4px 8px var(--soft-shadow), inset -4px -4px 8px var(--highlight);
}

.neu-select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: var(--background);
  box-shadow: var(--shadow-inset);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232D3748' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.neu-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: var(--background);
  box-shadow: var(--shadow-inset);
  min-height: 120px;
  resize: vertical;
}

.neu-textarea:focus {
  outline: none;
  box-shadow: inset 4px 4px 8px var(--soft-shadow), inset -4px -4px 8px var(--highlight);
}

.neu-checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.neu-checkbox {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 5px;
  background: var(--background);
  box-shadow: var(--shadow-inset);
  cursor: pointer;
}

.neu-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border-radius: 5px;
  background-color: var(--background);
  box-shadow: var(--shadow-inset);
}

.neu-checkbox input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--accent);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}


.header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.logo img {
  height: 40px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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


.hero {
  padding: 4rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  z-index: 1;
  position: relative;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  border-radius: 0 0 0 100px;
  box-shadow: var(--shadow-lg);
}


.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  flex-grow: 1;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.about-feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
}


.principles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.principle-card {
  height: 100%;
}

.principle-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.principle-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}


.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.case-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-image {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.case-description {
  flex-grow: 1;
}

.case-link {
  margin-top: 1rem;
  display: inline-block;
}


.case-study-header {
  margin-bottom: 3rem;
}

.case-study-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.case-study-meta {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.case-study-image {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.case-study-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-content {
  margin-bottom: 3rem;
}

.case-study-section {
  margin-bottom: 2rem;
}

.case-study-section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.case-study-results {
  background: var(--background);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-md);
}

.case-study-results-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}

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

.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.result-label {
  color: var(--text-secondary);
}


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

.contact-info {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

.contact-map {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-submit {
  margin-top: 1.5rem;
}


.footer {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

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

.footer-about {
  margin-bottom: 1.5rem;
}

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

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--accent);
}

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


.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--background);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease forwards;
}

.cookie-consent-content {
  margin-bottom: 1.5rem;
}

.cookie-consent-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cookie-consent-text {
  margin-bottom: 1.5rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 1rem;
  display: none;
}

.cookie-settings.show {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

.cookie-settings-content {
  background: var(--background);
  border-radius: 15px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-settings-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-settings-description {
  margin-bottom: 2rem;
}

.cookie-category {
  margin-bottom: 2rem;
}

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

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

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

.cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-category-slider {
  background-color: var(--accent);
}

input:focus + .cookie-category-slider {
  box-shadow: 0 0 1px var(--accent);
}

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

.cookie-category-description {
  margin-bottom: 1rem;
}

.cookie-settings-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.cookie-settings-save {
  background: var(--accent);
  color: white;
}


@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.thank-you {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0 auto 2rem;
  max-width: 600px;
}


.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

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

.policy-section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.policy-list {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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


@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-image {
    opacity: 0.2;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--background);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 6rem 2rem 2rem;
    transition: all 0.3s ease;
    z-index: 99;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-item {
    margin: 0 0 1.5rem;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .section-title {
    font-size: 1.75rem;
  }

  .case-study-title {
    font-size: 2rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .neu-button {
    width: 100%;
    margin-bottom: 1rem;
  }

  .cookie-settings-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-settings-actions .neu-button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}