:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --text: #151515;
  --muted: #6b6b6b;
  --line: rgba(21, 21, 21, 0.12);
  --green: #2e7d32;
  --green-dark: #0f4d2e;
  --green-soft: #e9f3ec;
  --green-bright: #7df2a9;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
  --transition: 240ms ease;
  --fs-hero: clamp(2rem, 4.2vw, 3.4rem);
  --fs-h1: clamp(2rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.35rem, 2vw, 1.75rem);
  --fs-card-title: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1vw, 1.05rem);
  --fs-small: clamp(0.8rem, 0.9vw, 0.9rem);
}

html,
body {
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.65;
  position: relative;
  padding-right: 0 !important;
}

body.offcanvas-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

body.offcanvas-open .site-header,
body.offcanvas-open main,
body.offcanvas-open .site-footer {
  transform: none !important;
  translate: none !important;
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.modal-open {
  overflow: hidden;
  padding-right: 0 !important;
}

.navbar,
.sticky-top,
.fixed-top,
.fixed-bottom {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.btn,
.service-card,
.target-card,
.testimonial-card,
.stat-icon {
  transition: all 0.22s ease;
}

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

.container-xl {
  max-width: 1200px;
}

.hero-section {
  background: #f2eee9;
}

.contact-hero {
  background: #f2eee9;
}

#contact-form {
  scroll-margin-top: 6.5rem;
}

.bg-dark-green {
  background: var(--green-dark);
}

.contact-info-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.contact-info-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

.hero-row {
  row-gap: 3rem;
}

@media (min-width: 992px) {
  .hero-row {
    --bs-gutter-x: 4.5rem;
  }
}

.site-header {
  background: rgba(247, 246, 243, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 21, 21, 0.04);
}

.nav-shell {
  min-height: 72px;
}

.brand-logo {
  width: 188px;
  max-width: 100%;
  height: auto;
}

.navbar .nav-link {
  position: relative;
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--text);
}

.navbar .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar .nav-link:hover::before,
.navbar .nav-link:focus-visible::before {
  transform: scaleX(1);
}

.navbar .dropdown-toggle::before {
  display: none;
}

.navbar .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.15em;
  border-top-color: currentColor;
}

.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:focus-visible,
.navbar .show > .dropdown-toggle {
  box-shadow: none;
  outline: none;
}

.btn {
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn span,
.service-card a span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover span,
.service-card:hover a span {
  transform: translateX(3px);
}

.btn-dark {
  background: #111111;
  border-color: #111111;
}

.nav-cta {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.btn-success,
.btn-hero,
.hero-btn {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.25);
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}

.btn-success,
.btn-light {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  margin-top: 0;
}

.btn-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-light .btn-arrow {
  background: rgba(46, 125, 50, 0.12);
  color: var(--green);
}

.btn-success:hover,
.btn-hero:hover,
.hero-btn:hover {
  background: #25672a;
  border-color: #25672a;
  color: #ffffff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-arrow,
.btn-arrow span {
  line-height: 1;
}

.btn-hero:hover .btn-arrow,
.hero-btn:hover .btn-arrow,
.btn-dark:hover .btn-arrow,
.btn-success:hover .btn-arrow {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.25);
}

.btn-light:hover .btn-arrow {
  transform: translateX(2px);
  background: rgba(46, 125, 50, 0.18);
}

.form-control,
.form-select {
  border: 1px solid rgba(21, 21, 21, 0.08);
  padding: 0.9rem 1rem;
  font-size: var(--fs-body);
  color: var(--text);
  background-color: #ffffff;
}

.form-control::placeholder,
.form-select {
  color: rgba(21, 21, 21, 0.5);
}

.form-control:focus,
.form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.1rem rgba(25, 135, 84, 0.15);
}

.icon-wrap {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  color: #198754;
  opacity: 0.7;
  flex-shrink: 0;
}

.icon-wrap-check {
  opacity: 0.8;
}

.check-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #198754;
  font-size: 11px;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
}

.check-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card.bg-success .check-icon {
  color: rgba(255, 255, 255, 0.92);
}

.icon-wrap svg {
  width: 1em;
  height: 1em;
  font-size: 14px;
  line-height: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wrap-check svg {
  font-size: 12px;
}

.team-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid rgba(25, 135, 84, 0.08);
}

.team-card {
  transition: all 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.team-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

.team-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.08);
  color: var(--green);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: lowercase;
}

.team-social-link:hover,
.team-social-link:focus-visible {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-2px);
}

.service-image {
  height: 260px;
  object-fit: cover;
}

.process-card {
  transition: all 0.2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .process-card {
    position: relative;
  }

  .process-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
  }

  .process-card:last-child::after {
    display: none;
  }
}

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

.hero-content {
  max-width: 520px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e9f3ec;
  color: #2e7d32;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
}

.hero-badge-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-title,
.section-title,
.faq-title,
.final-cta-card h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title,
.section-title {
  text-wrap: balance;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.navbar .nav-link,
.stat-value,
.faq-kicker,
.testimonial-author {
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: var(--fs-h2);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-lead {
  font-size: var(--fs-body);
  line-height: 1.7;
}

.logo-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.logo-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  min-width: 100%;
  animation: logo-scroll 35s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.logo-item img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.92);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.card-title {
  font-size: var(--fs-card-title);
  line-height: 1.25;
}

.highlight {
  color: #2e7d32;
}

.hero-text,
.split-text,
.testimonial-quote,
.final-cta-card p,
.accordion-body,
.service-card p,
.card-text,
.body-text {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.hero-text {
  color: #6b6b6b;
}

.small-text,
.badge,
.footer-link {
  font-size: var(--fs-small);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #8a8a8a;
  font-size: var(--fs-small);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.helper-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b8b8b;
}

.helper-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual,
.split-visual {
  display: flex;
  justify-content: center;
}

.hero-image-wrap,
.split-image-wrap {
  position: relative;
  width: min(100%, 630px);
}

.image-hover {
  overflow: hidden;
}

.image-hover img {
  transition: transform 0.45s ease;
}

.image-hover:hover img {
  transform: scale(1.025);
}

.hero-image-wrap {
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  position: relative;
}

.split-image-wrap {
  aspect-ratio: 1 / 1;
}

.hero-image,
.split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.hero-image {
  border-radius: var(--radius-lg);
  animation: fadeIn 1s ease forwards;
}

.split-image {
  border-radius: 50%;
}

.hero-image-wrap:hover .hero-image,
.split-image-wrap:hover .split-image {
  transform: scale(1.02);
}

.split-photo {
  max-width: 540px;
  max-height: 520px;
}

.hero-overlay,
.split-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 3;
  pointer-events: none;
}

.hero-overlay {
  opacity: 0.25;
}

.stat-icon {
  width: 86px;
  height: 86px;
  background: rgba(46, 125, 50, 0.08);
  color: #16824a;
  font-size: 28px;
  flex-shrink: 0;
}

.stat-icon svg,
.trust-inline-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-inline-icon {
  display: inline-flex;
  vertical-align: text-bottom;
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .border-lg-start {
    border-left: 1px solid rgba(46, 125, 50, 0.22);
  }

  .border-lg-end {
    border-right: 1px solid rgba(46, 125, 50, 0.22);
  }
}


.intro-image {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.vision-badge-icon,
.intro-point-icon {
  color: #2e7d32;
}

.vision-badge-icon {
  display: inline-flex;
  font-size: 1rem;
}

.vision-badge-icon svg,
.intro-point-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-point-icon {
  width: 56px;
  height: 56px;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 12px;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.vision-point:hover .intro-point-icon {
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .intro-section .border-lg-start,
  .intro-section .border-lg-end {
    border-color: rgba(0, 0, 0, 0.06) !important;
  }
}

.service-card,
.audience-card,
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.audience-card:hover,
.target-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.service-card.bg-success {
  background: linear-gradient(135deg, #1f7a45, #27864b) !important;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: 100%;
  height: 100%;
  padding: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h5,
.audience-card h3 {
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.service-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.dropdown-menu {
  min-width: 16rem;
  padding: 0.6rem;
  background: #ffffff;
  border-radius: 1rem;
}

.dropdown-item {
  border-radius: 0.8rem;
  padding: 0.65rem 0.85rem;
  font-weight: 500;
  color: #1b1b1b;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(46, 125, 50, 0.08);
  color: var(--green);
}

.mobile-nav .brand-logo {
  width: 168px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #111111;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #e8efe6;
  color: #198754;
}

.mobile-sub-link {
  color: #666666;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.35rem 1rem;
  transition: color 0.2s ease;
}

.mobile-sub-link:hover {
  color: #198754;
}

.service-card:hover .service-inline-link {
  transform: translateX(4px);
}

.service-card:hover .icon-box,
.target-card:hover .icon-box,
.stat-item:hover .stat-icon {
  transform: scale(1.06);
}

.audience-card {
  transition: all 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.06);
}

.audience-mini-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(21, 21, 21, 0.4);
  font-size: 2.25rem;
  line-height: 1;
  padding: 0;
  width: 3rem;
  opacity: 0.35;
  transition: opacity var(--transition), transform var(--transition);
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  opacity: 0.75;
}

.testimonial-arrow.prev {
  left: -3.75rem;
}

.testimonial-arrow.next {
  right: -3.75rem;
}

.testimonial-card {
  border-radius: var(--radius-lg);
}

.testimonial-quote-mark {
  display: none;
}

.testimonial-quote-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8efe6;
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-quote {
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.testimonial-dots button {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 0.5rem;
  padding: 0;
  flex: 0 0 0.5rem;
  border-radius: 50%;
  border: 0;
  background: rgba(21, 21, 21, 0.25);
  transform: none;
  transition: transform var(--transition), background-color var(--transition);
}

.testimonial-dots button.active {
  background: rgba(21, 21, 21, 0.85);
  transform: scale(1.1);
}

.faq-section {
  background: rgba(220, 225, 205, 0.8);
}

.faq-kicker {
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq-title {
  font-size: var(--fs-h2);
}

.faq-accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 1.35rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #55605d;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.accordion-icon {
  margin-left: auto;
  color: #26b866;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(45deg);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--bs-success);
}

.faq-accordion .accordion-body {
  padding: 0 0 1.35rem;
}

.final-cta-section {
  background: var(--green-dark);
}

.final-cta-card,
.cta-block {
  background: linear-gradient(135deg, #8fd19e, #6fbf86);
  border-radius: 16px;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.08);
}


.final-cta-btn {
  color: var(--green);
  background: #ffffff;
  border-color: #ffffff;
  transition: all 0.2s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.btn-light.rounded-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.final-cta-card .btn-light:hover,
.cta-block .btn-light:hover {
  background: #ffffff;
  color: var(--green);
  border-color: #ffffff;
}

.final-cta-card .btn-light,
.cta-block .btn-light {
  background: #ffffff;
  color: var(--green);
  border-color: #ffffff;
}

.site-footer {
  background: linear-gradient(
    180deg,
    #145a38 0%,
    #0f5132 40%,
    #0c3f27 100%
  );
  color: rgba(255, 255, 255, 0.82);
}

.site-footer h6,
.footer-lead {
  color: #ffffff;
  font-weight: 700;
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer li {
  font-size: var(--fs-small);
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-certification {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.itaa-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: lowercase;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 32px));
  max-width: 1100px;
  z-index: 1050;
  background: #111111;
  color: #ffffff;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.cookie-banner .btn:hover {
  transform: translateY(-1px);
}

.privacy-content h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.privacy-content h3 {
  font-size: 1.1rem;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

.privacy-content section {
  scroll-margin-top: 6.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal.is-visible:hover,
.target-card.reveal.is-visible:hover,
.testimonial-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .hero-row {
    min-height: auto;
  }

  .mobile-nav.offcanvas {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(86vw, 360px) !important;
    max-width: 100% !important;
    height: 100dvh !important;
    transform: translateX(100%) !important;
    transition: transform 0.25s ease;
    will-change: transform;
    border-radius: 0 !important;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    z-index: 1060;
    overflow-x: hidden;
  }

  .offcanvas-backdrop {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    overscroll-behavior: contain;
    touch-action: none;
  }

  .mobile-nav.offcanvas.show {
    transform: translateX(0) !important;
  }

  .mobile-nav .offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 1.25rem;
  }

  .mobile-nav .offcanvas-body {
    padding: 1.25rem;
    overflow-y: auto;
  }

  .navbar .nav-link::before,
  .navbar .nav-link::after,
  .navbar .nav-link.active::before,
  .navbar .nav-link.active::after {
    display: none !important;
  }

  .navbar .nav-link {
    border-bottom: 0 !important;
  }

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

  .hero-image-wrap,
  .split-image-wrap {
    width: min(100%, 540px);
  }

}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .container-xl {
    max-width: 92%;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero-image {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    padding: 1.25rem !important;
  }

  .service-card .card-title {
    font-size: 1rem;
  }

  .service-card .card-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 767.98px) {
  section.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .container-xl {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: center;
  }

  .hero-section .section-lead,
  .contact-hero .section-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-content,
  .hero-meta,
  .hero-badge,
  .hero-text,
  .hero-visual {
    text-align: center;
    justify-content: center;
  }

  .hero-btn {
    justify-content: center;
  }

  .hero-image-wrap {
    width: 100%;
    margin-top: 2rem;
  }

  .hero-image,
  .hero-image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    max-height: none;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .btn,
  .contact-hero .btn {
    width: auto;
  }

  .trust-block {
    padding: 2rem 1.25rem !important;
  }

  .stat-item {
    margin-bottom: 1.5rem;
  }

  .stat-item:last-child {
    margin-bottom: 0;
  }

  .stat-icon {
    width: 52px;
    height: 52px;
  }

  .stat-item .display-5,
  .stat-item .display-6 {
    font-size: 1.75rem;
  }

  .trust-block > p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .vision-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .intro-point-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .vision-point p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .service-card {
    padding: 1.5rem !important;
  }

  .service-card .card-title {
    font-size: 1.15rem;
  }

  .service-card .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .split-photo,
  .service-image {
    max-width: 300px;
    margin: 0 auto 2rem;
  }

  .split-copy {
    text-align: left;
  }

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

  #doelgroep .rounded-4 {
    padding: 1.5rem !important;
  }

  .target-card {
    padding: 1.25rem !important;
  }

  .testimonial-card {
    padding: 1.5rem !important;
    text-align: left;
  }

  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .testimonial-arrow {
    display: none !important;
  }

  .faq-section .row {
    gap: 1.5rem;
  }

  .accordion-button {
    font-size: 0.9rem;
    padding: 1rem 0;
  }

  .accordion-body {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cta-block,
  .final-cta-card {
    padding: 2rem 1.25rem !important;
  }

  .cta-block h2,
  .final-cta-card h2 {
    font-size: 1.65rem;
    line-height: 1.1;
  }

  .cta-block .btn,
  .final-cta-card .btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer .row > div {
    margin-bottom: 1.75rem;
  }

  .site-footer .row > div:last-child {
    margin-bottom: 0;
  }

  .site-footer .bottom-row {
    align-items: flex-start !important;
    gap: 1rem;
  }

  .footer-certification {
    align-items: flex-start;
  }

  .itaa-logo {
    height: 36px;
  }

  .cookie-banner {
    width: calc(100% - 24px);
    bottom: 12px;
    padding: 1rem;
  }

  .cookie-banner .d-flex {
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .logo-carousel-track {
    gap: 2rem;
  }

  .logo-item img {
    height: 32px;
  }

  .logo-carousel-wrapper::before,
  .logo-carousel-wrapper::after {
    width: 48px;
  }

  .intro-image {
    border-radius: 0.75rem;
  }

  .intro-section .badge,
  .intro-section h2,
  .intro-section p {
    text-align: left;
  }

  .faq-title {
    max-width: 10ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
