﻿:root {
  color-scheme: light;
  font-family: "Inter", system-ui, sans-serif;
  color: #000066;
  background: #fff;
  --blue: #0000ff;
  --blue-dark: #000066;
  --surface: #fafaff;
  --surface-strong: #ffffff;
  --border: #e6e6ff;
  --text-muted: rgba(0, 0, 102, 0.75);
  --radius: 10px;
  --radius-btn: 10px;
  --section-gap: 98px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  min-height: 100%;
  line-height: 1.7;
  background: var(--surface);
  color: var(--blue-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1100;
  width: 100%;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(6px);
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 102, 0.08);
  border-color: var(--border);
  backdrop-filter: blur(14px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 60px;
  width: auto;
  display: block;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 8px 12px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition:
    color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.navbar:not(.scrolled) .nav-link {
  color: #fff;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--blue);
  background: rgba(224, 224, 255, 0.6);
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--blue);
  min-height: 42px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button-primary ion-icon,
.button-secondary ion-icon {
  font-size: 1.1rem;
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

.hero {
  position: relative;
  min-height: min(92vh, 780px);
  overflow: hidden;
  background: #000033;
  border-bottom: 1px solid var(--border);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay,
.hero-overlay-top {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 38, 0.88) 0%,
    rgba(0, 0, 55, 0.72) 44%,
    rgba(0, 0, 70, 0.36) 100%
  );
}

.hero-overlay-top {
  background: linear-gradient(
    to top,
    rgba(0, 0, 36, 0.7),
    rgba(0, 0, 36, 0) 42%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 24px 130px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(0, 0, 30, 0.45);
  border-radius: var(--radius-btn);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 16px 0 14px;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  max-width: 620px;
}

.hero-title span {
  color: #fff;
}

.hero-text,
.hero-quote {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.65;
}

.hero-quote {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-style: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 30, 0.32);
  backdrop-filter: blur(6px);
  max-width: 560px;
  margin-top: 0;
}

.stat-card {
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

section {
  padding: clamp(74px, 8vw, var(--section-gap)) 0;
}

#zf-services {
  background: #fafaff;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 58px;
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: var(--radius-btn);
  background: var(--border);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.value-card,
.team-card,
.trust-card,
.info-card,
.testimonial-card,
.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover,
.article-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 80, 0.1);
  border-color: rgba(0, 0, 255, 0.25);
}

.service-card > button,
.accordion-button,
.info-card > .card-inner,
.article-card {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-card > button {
  display: block;
  width: 100%;
  padding: 34px 30px 26px;
  background: transparent;
  color: inherit;
  text-align: left;
}

.service-card .service-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.service-card .service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #f0f0ff;
  color: var(--blue);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.service-card .service-icon ion-icon {
  font-size: 1.5rem;
}

.service-card h3,
.accordion-title,
.value-card h4,
.team-card h3,
.article-card h3,
.info-card h3 {
  color: var(--blue-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.service-card p,
.accordion-description,
.value-card p,
.team-card p,
.article-card p,
.info-card p,
.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.service-details {
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
  border-top: 1px solid var(--border);
}

.service-details.expanded {
  max-height: 420px;
}

.service-details-inner {
  padding: 20px 30px 28px;
  display: grid;
  gap: 11px;
}

.service-detail {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.service-detail span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  margin-top: 8px;
  flex-shrink: 0;
}

.service-summary .chevron {
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card.open .service-summary .chevron {
  transform: rotate(180deg);
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left-width: 4px;
  border-left-color: #e6e6ff;
  border-radius: 18px;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.accordion-item.open {
  border-left-color: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 0, 80, 0.08);
}

.accordion-button {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.accordion-button:focus-visible {
  outline: 3px solid rgba(0, 0, 255, 0.2);
}

.accordion-button .chevron {
  width: 26px;
  height: 26px;
  color: var(--blue);
  transition: transform 0.3s ease;
  display: grid;
  place-items: center;
}

.accordion-item.open .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0;
}

.accordion-item.open .accordion-content {
  max-height: 1200px;
}

.accordion-text {
  padding: 0 22px 20px;
  color: var(--blue);
  font-size: 0.95rem;
  line-height: 1.75;
}

.approach-band {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
}

.approach-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 38, 0.92) 0%,
    rgba(0, 0, 55, 0.85) 44%,
    rgba(0, 0, 80, 0.72) 100%
  );
  pointer-events: none;
}

.approach-band::before {
  display: none;
}

.approach-content {
  position: relative;
  z-index: 2;
  padding: 48px 44px;
  max-width: 640px;
  color: #fff;
}

.approach-content .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: var(--radius-btn);
}

.approach-content .section-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.approach-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.07);
}

.approach-stat {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.approach-stat:last-child {
  border-right: none;
}

.approach-number {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.approach-label {
  font-size: 0.76rem;
  color: #ccccff;
  margin-top: 4px;
}

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

.about-box,
.about-values {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 44px;
}

.about-highlight {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: var(--blue-dark);
}

.about-highlight span {
  width: 36px;
  height: 36px;
  background: #f0f0ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.about-box p + p,
.about-box .bullet-list + p {
  margin-top: 14px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.value-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 26px;
}

.value-card:last-child {
  border-right: none;
}

.value-card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 13px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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


.team-card img {
  width: 100%;
  height: 250px; 
  object-fit: cover; 
}

.team-card--portrait img {
  height: 320px;
  object-fit: cover;
  object-position: center top;
  background: #f4f4ff;
  padding: 8px;
}

.team-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
}

.team-card-content h3 {
  margin-top: 15px; 
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.team-extra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e6e6ff;
  padding: 12px 20px;
  background: #000066;
  color: #fff;
  border-radius: 18px;
  width: fit-content;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.team-extra:hover,
.team-extra:focus-visible {
  background: #fff;
  color: var(--blue-dark);
}

.trust-section {
  padding-top: 96px;
  padding-bottom: 90px;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.trust-section h2,
.trust-section p {
  color: #fff;
}

.marquee {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.marquee-track[data-direction="right"] {
  animation: marquee-right linear infinite;
}

.marquee-track[data-direction="left"] {
  animation: marquee-left linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 96px;
  padding: 0 22px;
  background: #fff;
  border-radius: 18px;
}

.marquee-item img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.stats-band {
  background: var(--blue-dark);
}

.stats-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-band-card {
  padding: 54px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-band-card:last-child {
  border-right: none;
}

.stats-band-number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.stats-band-label {
  color: #ccccff;
  font-size: 0.88rem;
  font-weight: 500;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.article-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.article-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  width: fit-content;
}

.article-date {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0;
}

.article-card p {
  flex: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 30, 0.75);
  backdrop-filter: blur(3px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 18px;
  overflow-y: auto;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 40, 0.4);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #000066;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  z-index: 3;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: #fff;
  color: var(--blue);
}

.modal-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.modal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 50, 0.7),
    rgba(0, 0, 50, 0) 55%
  );
}

.modal-heading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  color: #fff;
}

.modal-heading h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.modal-body {
  padding: 30px 34px 36px;
}

.modal-body span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.modal-body p {
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.8;
  font-size: 1rem;
}

.modal-source {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.modal-source p {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
}

.modal-source-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-btn);
  border: 2px solid var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.modal-source-link:hover,
.modal-source-link:focus-visible {
  background: #000066;
  border-color: #000066;
}

.contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 60px;
  align-items: start;
}

.contact-details {
  background: transparent;
  border: none;
  padding: 0;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
}

.contact-card form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(204, 204, 255, 0.85);
  border-radius: 14px;
  font-size: 0.95rem;
  color: var(--blue-dark);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 0, 255, 0.08);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 28px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #000066;
  border-color: #000066;
}

.form-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: #f0f0ff;
  border: 1px solid rgba(204, 204, 255, 0.85);
  border-radius: 16px;
  font-size: 0.9rem;
  color: var(--blue-dark);
}

.contact-details h3 {
  margin-bottom: 6px;
  color: #fff;
}

.contact-details p,
.contact-details dt,
.contact-details dd {
  color: rgba(255, 255, 255, 0.9);
}

.contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item svg {
  min-width: 20px;
  min-height: 20px;
}

.contact-details a {
  color: #ccccff;
  transition: color 0.2s ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: #fff;
}

.contact-hours {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  display: grid;
  gap: 8px;
}

.contact-hours div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.83rem;
}

.info-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
  align-items: start;
}

.info-card {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
}

.info-card h3 {
  margin-bottom: 6px;
}

.info-card dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.info-card dd {
  margin: 0;
  font-size: 0.93rem;
  color: var(--blue-dark);
  font-weight: 600;
  line-height: 1.55;
}

.info-card dl > div {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.info-card dl > div:last-child {
  border-bottom: none;
}

.info-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.info-cta:hover,
.info-cta:focus-visible {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}

footer {
  background: var(--blue);
  color: #fff;
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  height: 38px;
  width: auto;
  background: #fff;
  padding: 5px 8px;
}

.footer-brand p,
.footer-links a,
.footer-note {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-newsletter {
  display: grid;
  gap: 14px;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer-newsletter input {
  padding: 11px 14px;
  background: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--blue-dark);
  border-radius: var(--radius-btn);
}

.footer-newsletter input::placeholder {
  color: rgba(0, 0, 102, 0.45);
}

.footer-newsletter button {
  padding: 11px 18px;
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  background: #1a1aff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.history-year {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding: 18px 22px;
  background: #f0f0ff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}

.history-year-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.history-year-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: lowercase;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  background: var(--blue);
  border: none;
  color: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 0;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 0;
  border-radius: 1px;
}

.mobile-menu {
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 30, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 320px);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 40px rgba(0, 0, 40, 0.22);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1600;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  gap: 0;
  flex: 1;
}

.drawer-nav a {
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  border-bottom: 1px solid #f0f0ff;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  background: #f7f7ff;
  color: var(--blue);
  padding-left: 30px;
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.drawer-footer .button-primary {
  width: 100%;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Utilitaires & composants ── */
@keyframes zfpulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.is-hidden {
  display: none !important;
}

.fade-delay-08 {
  transition-delay: 0.08s;
}
.fade-delay-12 {
  transition-delay: 0.12s;
}
.fade-delay-16 {
  transition-delay: 0.16s;
}
.fade-delay-24 {
  transition-delay: 0.24s;
}

.section-bg-white {
  background: #fff;
}
.section-bg-surface {
  background: #fafaff;
}

#zf-domaines {
  background: #fff;
  border-top: 1px solid var(--border);
}

#zf-about {
  background: #fafaff;
}
#zf-team {
  background: #fff;
}
#zf-contact {
  background: #fff;
}

#zf-actualites {
  background: #fafaff;
  border-top: 1px solid var(--border);
}

.drawer-logo {
  height: 38px;
  width: auto;
}

.navbar:not(.scrolled) .burger {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #5cff9d;
  border-radius: 50%;
  display: inline-block;
  animation: zfpulse 2s infinite;
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

/* Grille services — hauteur égale par ligne */
#zf-services .grid-2 {
  align-items: stretch;
}

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

#zf-services .service-card > button {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

#zf-services .service-summary {
  flex: 1;
  margin-bottom: 0;
}

#zf-services .service-body {
  flex: 1;
}

#zf-services .service-details {
  flex: 0 0 auto;
  border-top: 1px solid transparent;
}

#zf-services .service-details.expanded,
#zf-services .service-card.open .service-details {
  border-top-color: var(--border);
}

.accordion-stack {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.accordion-heading {
  display: flex;
  gap: 13px;
  align-items: center;
}

.accordion-letter {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 800;
}

.accordion-label {
  font-size: 1rem;
  font-weight: 700;
}

.approach-content .section-title {
  color: #fff;
}

.about-heading {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.bullet-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.bullet-item span:first-child {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.value-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
}

.value-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #f0f0ff;
  color: var(--blue);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.section-divider {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 50px;
}

.trust-block-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.trust-block-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #f0f0ff;
  color: var(--blue);
  border-radius: 12px;
  flex-shrink: 0;
}

.trust-block-title {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.3px;
}

.trust-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 60px;
  align-items: center;
}

.trust-image-wrap {
  position: relative;
}

.trust-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border: 6px solid #fff;
  outline: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0, 0, 40, 0.14);
  border-radius: 30px;
}

.trust-float-badge {
  position: absolute;
  right: -14px;
  bottom: -14px;
  background: var(--blue);
  color: #fff;
  padding: 22px 26px;
  max-width: 220px;
  border-radius: 22px;
}

.trust-float-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.trust-float-text {
  font-size: 0.78rem;
  color: #ccccff;
  margin-top: 6px;
}

.eyebrow--blue {
  background: #e6e6ff;
  color: var(--blue);
}

.mission-title {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.mission-text {
  margin-bottom: 16px;
}

.qualities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 24px;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.quality-cell {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.quality-icon {
  color: var(--blue);
  flex-shrink: 0;
}

.quality-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 3px;
}

.quality-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.skills-header {
  text-align: center;
  margin-bottom: 34px;
}

.skills-title {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.4px;
}

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.skill-letter {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.check-list {
  display: grid;
  gap: 11px;
}

.check-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.check-item span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex-shrink: 0;
}

.trust-section .section-header {
  color: #fff;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.trust-section .section-title {
  color: #fff;
}

.section-subtitle--light {
  color: #ccccff;
}

.marquee--offset {
  margin-top: 20px;
}

.trust-clients-wrap {
  margin-top: 56px;
}

.trust-clients-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-clients-grid .trust-card {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 0;
}

.trust-clients-grid .trust-card:last-child {
  border-right: none;
}

.trust-category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.trust-client-list {
  display: grid;
  gap: 8px;
  color: #e6e6ff;
  font-size: 0.85rem;
}

.section-header--left {
  display: grid;
  align-items: start;
  gap: 18px;
  text-align: left;
}

.section-header--left .section-subtitle {
  margin: 0;
}

.contact-title {
  margin-bottom: 8px;
}

.contact-subtitle {
  margin-bottom: 30px;
  max-width: 580px;
}

.contact-info-box {
  background: var(--blue);
  padding: 34px;
  border-radius: 24px;
  color: #fff;
}

.contact-info-box h3 {
  margin-bottom: 6px;
  color: #fff;
}

.contact-info-box > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.contact-value {
  font-size: 0.83rem;
  color: #ccccff;
}

.contact-link {
  font-size: 0.83rem;
  color: #ccccff;
  word-break: break-all;
}

.contact-hours strong {
  color: #fff;
  font-weight: 600;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--blue);
}

.info-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #f0f0ff;
  color: var(--blue);
  border-radius: 14px;
  flex-shrink: 0;
}

.info-card-subtitle {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: 2px;
}

.info-card--accent {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.info-card--accent h3,
.info-card--accent dd {
  color: #fff;
}

.info-card--accent dt {
  color: #9999ff;
}

.info-card-header--accent {
  border-bottom-color: #0000ff;
}

.info-card-icon--light {
  background: rgba(255, 255, 255, 0.1);
  color: #9999ff;
}

.info-card-subtitle--light {
  color: #9999ff;
}

.info-card--accent dd a {
  color: #fff;
  word-break: break-all;
}

.footer-brand-text {
  margin-top: 16px;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand-text--sm {
  margin-top: 8px;
}

.footer-quote {
  margin-top: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-newsletter-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}

.newsletter-sent {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  padding: 0;
  min-height: auto;
  border-radius: 12px;
  background: #f0f0ff;
  color: var(--blue-dark);
  border-color: transparent;
}

.navbar:not(.scrolled) .burger {
  background: var(--blue);
  border: none;
}

.slogan-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 34vh;
  background: var(--surface);
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
}

.slogan-page .slogan-logo {
  height: 220px;
  width: auto;
  margin-bottom: 24px;
  background: #fff;
  padding: 12px 28px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 102, 0.06);
  object-fit: contain;
}

.slogan-page h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--blue-dark);
  max-width: 700px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 0;
}

.slogan-inner {
  display: flex;
  flex-direction: column;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: center;
  padding: 18px 0;
}

.slogan-media .slogan-logo {
  height: 180px;
  padding: 10px 20px;
}

.slogan-copy .slogan-lead {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 680px;
}

@media (max-width: 900px) {
  .slogan-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .slogan-media {
    order: 1;
  }
  .slogan-copy {
    order: 2;
  }
}


@media (max-width: 900px) {
  .nav-link,
  .button-primary,
  .button-secondary {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 88px 20px 48px;
  }

  .hero-br {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    margin: 14px 0 12px;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .hero-quote {
    font-size: 0.95rem;
  }

  .hero-actions,
  .stats-panel {
    display: none;
  }

  .service-card > button,
  .about-box,
  .about-values,
  .info-card,
  .contact-card {
    padding: 26px 20px;
  }

  .contact-info-box {
    padding: 26px 20px;
  }

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

  .footer-newsletter button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero-content {
    padding: 80px 18px 40px;
  }

  .section-header {
    gap: 14px;
  }

  .hero-slides {
    min-height: 60vh;
  }

  .hero-caption {
    font-size: 0.88rem;
  }

  .stats-card,
  .article-body,
  .contact-section {
    gap: 16px;
  }

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

  .trust-float-badge {
    right: 8px;
    bottom: 8px;
  }

  .trust-image {
    height: 320px;
  }
}
