:root {
  --color-primary: #324694;
  --color-primary-dark: #252f67;
  --color-secondary: #f7f2ea;
  --color-accent: #f3c372;
  --color-text: #2b2933;
  --color-muted: #6c6a75;
  --shadow-soft: 0 25px 45px rgba(37, 41, 82, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
  --font-display: "Playfair Display", serif;
  --font-body: "Work Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: linear-gradient(180deg, #fdfbf8 0%, #ffffff 75%);
  min-height: 100%;
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translate(-50%, -150%);
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(37, 41, 82, 0.25);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
  box-shadow: 0 18px 36px rgba(37, 41, 82, 0.3);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background: #0f172f;
  color: #fff;
  padding: 2rem clamp(1.25rem, 6vw, 4rem) 5rem;
  position: relative;
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.site-header::before {
  background: linear-gradient(115deg, rgba(11, 18, 36, 0.82), rgba(17, 33, 74, 0.55));
}

.site-header::after {
  background: radial-gradient(circle at 85% -10%, rgba(243, 195, 114, 0.25), transparent 45%);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-media__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(105%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.brand {
  width: clamp(84px, 9vw, 110px);
  padding: 0.65rem;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(247, 242, 234, 0.9), rgba(255, 255, 255, 0.6))
      padding-box,
    radial-gradient(circle at 20% 20%, rgba(243, 195, 114, 0.55), rgba(15, 23, 47, 0.35)) border-box;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 40px rgba(8, 13, 28, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.brand::after {
  content: "";
  position: absolute;
  inset: -18% -14% auto auto;
  width: clamp(40px, 9vw, 66px);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(243, 195, 114, 0.38), transparent 65%);
  filter: blur(0.5px);
  z-index: -1;
}

.brand__image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(9, 14, 32, 0.35));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  padding: 0.45rem 0.15rem;
  color: inherit;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.site-header a:hover,
.site-header a:focus-visible {
  color: #fff;
}

.site-nav__cta {
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.language-toggle,
.contrast-toggle {
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.contrast-toggle:hover,
.contrast-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.contrast-toggle__icon {
  font-size: 1.05rem;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.contrast-toggle[aria-pressed="false"] .contrast-toggle__icon--sun,
.contrast-toggle[aria-pressed="true"] .contrast-toggle__icon--moon {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.35));
}

.contrast-toggle[aria-pressed="false"] .contrast-toggle__icon--moon,
.contrast-toggle[aria-pressed="true"] .contrast-toggle__icon--sun {
  opacity: 0.45;
  transform: scale(0.85);
  filter: none;
}

.hero {
  max-width: 720px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__kicker {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 8vw, 4rem);
  margin: 0.35rem 0 1.2rem;
  color: #fff;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__metrics {
  margin: 2.75rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.hero__metric {
  background: rgba(15, 23, 47, 0.55);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.3rem;
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__metric-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
}

.hero__metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

main {
  padding: 0 clamp(1.25rem, 6vw, 4rem) 5rem;
}

.section-heading {
  max-width: 680px;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.team {
  margin: 6rem auto clamp(3rem, 6vw, 5rem);
  max-width: var(--max-width);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.team__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

@media (min-width: 720px) {
  .team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(50, 70, 148, 0.08), rgba(243, 195, 114, 0.1));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.team-card:hover::before,
.team-card:focus-within::before {
  opacity: 1;
}

.team-card__avatar {
  flex-shrink: 0;
  width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(50, 70, 148, 0.1);
  box-shadow: 0 12px 25px rgba(37, 41, 82, 0.18);
  background: linear-gradient(135deg, rgba(50, 70, 148, 0.08), rgba(243, 195, 114, 0.16));
  position: relative;
}

.team-card__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(50, 70, 148, 0.12), rgba(243, 195, 114, 0.24));
}

.team-card__initials {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary-dark);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-card__profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-card__identity {
  display: grid;
  gap: 0.35rem;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
}

.team-card__role {
  margin: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.team-card__location {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.team-card__bio {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
}

.team-card__highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.team-card__highlights li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.team-card__highlights span[aria-hidden="true"] {
  font-size: 1.1rem;
  line-height: 1.2;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.team-card__tags span {
  background: rgba(50, 70, 148, 0.08);
  color: var(--color-primary-dark);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.team-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-top: auto;
}

.team-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--color-primary);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 20px rgba(50, 70, 148, 0.18);
}

.team-card__link:hover,
.team-card__link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(50, 70, 148, 0.24);
}

.team-card__link--ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1px solid rgba(50, 70, 148, 0.25);
  box-shadow: none;
}

.team-card__link--ghost:hover,
.team-card__link--ghost:focus-visible {
  background: rgba(50, 70, 148, 0.08);
  box-shadow: none;
}

@media (max-width: 720px) {
  .team-card {
    text-align: center;
    padding: 2.25rem 1.75rem;
  }

  .team-card__profile {
    flex-direction: column;
  }

  .team-card__avatar {
    margin: 0 auto;
  }

  .team-card__highlights li {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .team-card__highlights span[aria-hidden="true"] {
    margin-bottom: 0.15rem;
  }

  .team-card__cta {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero__metrics {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .cta-banner__inner {
    text-align: center;
  }

  .cta-banner__content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-banner__actions {
    justify-content: center;
  }
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--color-primary-dark);
}

.section-heading__eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  color: var(--color-primary-dark);
}

.section-heading p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-muted);
}

.about,
.services,
.process,
.testimonials,
.chatbot,
.contact {
  max-width: var(--max-width);
  margin: 0 auto 4.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.about {
  margin-top: -4rem;
}

.process {
  overflow: hidden;
}

.process__steps {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.process-step {
  background: linear-gradient(150deg, rgba(50, 70, 148, 0.12), rgba(243, 195, 114, 0.18));
  border-radius: var(--radius-md);
  padding: clamp(1.8rem, 4vw, 2.2rem);
  display: grid;
  gap: 1rem;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(50, 70, 148, 0.18);
}

.process-step__badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 12px 20px rgba(50, 70, 148, 0.25);
}

.process-step h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.process-step p {
  margin: 0;
  line-height: 1.65;
  color: var(--color-muted);
}

.testimonials {
  background: linear-gradient(180deg, rgba(50, 70, 148, 0.1), rgba(247, 242, 234, 0.35));
}

.testimonials__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: clamp(2.5rem, 5vw, 3.2rem);
}

.testimonial-card {
  margin: 0;
  padding: clamp(1.8rem, 4vw, 2.4rem);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.5rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-card blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(50, 70, 148, 0.3);
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.testimonial-card__role {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.cta-banner {
  max-width: calc(var(--max-width) + 5rem);
  margin: 0 auto 5.5rem;
  padding: 0 clamp(1.25rem, 6vw, 2.5rem);
}

.cta-banner__inner {
  background: linear-gradient(135deg, rgba(50, 70, 148, 0.92), rgba(11, 18, 36, 0.92));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.75rem, 6vw, 3.75rem);
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: clamp(180px, 40vw, 320px);
  height: clamp(180px, 40vw, 320px);
  background: radial-gradient(circle, rgba(243, 195, 114, 0.45), transparent 60%);
  opacity: 0.85;
}

.cta-banner__content,
.cta-banner__actions {
  position: relative;
  z-index: 1;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.7;
  max-width: 520px;
}

.cta-banner__content .section-heading__eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner__content h2 {
  color: #fff;
  margin: 0;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-banner__actions .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-banner__actions .button--ghost:hover,
.cta-banner__actions .button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.65);
}

.about__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.about-card {
  background: linear-gradient(150deg, rgba(50, 70, 148, 0.12), rgba(247, 242, 234, 0.6));
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(50, 70, 148, 0.15);
}

.about-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.25rem;
  color: var(--color-primary-dark);
}

.about-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--color-muted);
}

.services__groups {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 900px) {
  .services__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.services__group {
  display: grid;
  gap: 1.5rem;
}

.services__group-title {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  color: var(--color-primary-dark);
  margin: 0;
  font-weight: 600;
}

.service-accordion {
  display: grid;
  gap: 1rem;
}

.service-accordion__item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(50, 70, 148, 0.18);
  padding: 0;
  background: rgba(50, 70, 148, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-accordion__item[open] {
  background: #fff;
  border-color: rgba(50, 70, 148, 0.35);
  box-shadow: 0 15px 30px rgba(50, 70, 148, 0.08);
}

.service-accordion__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.service-accordion__item summary::-webkit-details-marker {
  display: none;
}

.service-accordion__title {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.service-accordion__icon::before {
  content: "+";
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.service-accordion__item[open] .service-accordion__icon::before {
  content: "−";
}

.service-accordion__item ul {
  margin: 0;
  padding: 0 1.85rem 1.75rem 2.4rem;
  display: grid;
  gap: 0.65rem;
  list-style: none;
  color: var(--color-muted);
}

.service-accordion__item li {
  position: relative;
  line-height: 1.6;
  padding-left: 1rem;
}

.service-accordion__item li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.chatbot__widget {
  display: grid;
  gap: 1.75rem;
  background: linear-gradient(135deg, rgba(50, 70, 148, 0.08), rgba(247, 242, 234, 0.86));
  border-radius: var(--radius-md);
  padding: clamp(1.85rem, 4vw, 2.75rem);
  box-shadow: inset 0 0 0 1px rgba(50, 70, 148, 0.12), 0 25px 45px rgba(37, 41, 82, 0.12);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.chatbot__widget::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at -10% -10%, rgba(50, 70, 148, 0.12), transparent 55%),
    radial-gradient(circle at 110% 120%, rgba(243, 195, 114, 0.16), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.chatbot__widget > * {
  position: relative;
  z-index: 1;
}


.chatbot__messages {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem clamp(1.15rem, 4vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 360px;
  min-height: 220px;
  overflow-y: auto;
  box-shadow: inset 0 0 0 1px rgba(50, 70, 148, 0.08);
  scroll-behavior: smooth;
}

.chatbot__messages::-webkit-scrollbar {
  width: 10px;
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background: rgba(50, 70, 148, 0.2);
  border-radius: 999px;
}

.chatbot__messages::-webkit-scrollbar-track {
  background: rgba(50, 70, 148, 0.08);
  border-radius: 999px;
}

.chatbot__bubble {
  border-radius: 18px;
  padding: 0.95rem 1.25rem;
  line-height: 1.6;
  font-size: 0.98rem;
  position: relative;
  box-shadow: 0 12px 24px rgba(50, 70, 148, 0.12);
  max-width: min(72ch, 100%);
  align-self: flex-start;
  animation: chatbot-fade-in 0.25s ease;
}

.chatbot__bubble p {
  margin: 0;
}

.chatbot__bubble--bot {
  background: rgba(50, 70, 148, 0.1);
  color: var(--color-primary-dark);
  border-bottom-left-radius: 10px;
}

.chatbot__bubble--user {
  margin-left: auto;
  background: var(--color-primary);
  color: #fff;
  border-bottom-right-radius: 10px;
  align-self: flex-end;
}

.chatbot__bubble time {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.4rem;
  opacity: 0.6;
}

.chatbot__suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.chatbot__suggestions button {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  background: rgba(50, 70, 148, 0.12);
  color: var(--color-primary-dark);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 20px rgba(50, 70, 148, 0.08);
}

.chatbot__suggestions button:hover,
.chatbot__suggestions button:focus-visible {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 16px 26px rgba(50, 70, 148, 0.2);
  transform: translateY(-2px);
}

.chatbot__form {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

.chatbot__form input {
  flex: 1 1 260px;
  border: 1px solid rgba(50, 70, 148, 0.24);
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.chatbot__form input:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(50, 70, 148, 0.18);
  outline: none;
  background: #fff;
}

.chatbot__form .button {
  flex: 0 0 auto;
  padding-inline: 1.9rem;
}

@keyframes chatbot-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.contact__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
}

.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.4rem;
}

.contact-card li span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.contact-card__phones {
  display: grid;
  gap: 0.35rem;
}

.contact-card__phone-entry {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-card__phone-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.contact-card a {
  text-decoration: none;
  font-weight: 500;
}

.contact-card address,
.contact-card p {
  margin: 0;
  color: var(--color-muted);
  font-style: normal;
}

.contact-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-maps {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 900px) {
  .contact-maps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-map {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  gap: 0.85rem;
}

.contact-map__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.contact-map__address {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 9;
}

.form {
  background: #fff;
  border-radius: var(--radius-md);
  padding: clamp(2.2rem, 5vw, 2.8rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.5rem;
}

.form h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.form__field {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.form__field span {
  font-weight: 600;
  color: var(--color-text);
}

.form__field input,
.form__field select,
.form__field textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(50, 70, 148, 0.2);
  background: rgba(50, 70, 148, 0.05);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form__field input:focus-visible,
.form__field select:focus-visible,
.form__field textarea:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(50, 70, 148, 0.12);
}

.form__field--textarea textarea {
  resize: vertical;
  min-height: 140px;
}

.form__status {
  margin: -0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  min-height: 1.35rem;
}

.form__status--success {
  color: #1f7a4d;
}

.form__status--error {
  color: #b32323;
}

.form__disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-soft);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(37, 41, 82, 0.18);
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-primary-dark);
}

.button--ghost {
  background: transparent;
  border-color: rgba(50, 70, 148, 0.25);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(50, 70, 148, 0.6);
  color: var(--color-primary-dark);
}

.site-footer {
  padding: 3rem clamp(1.5rem, 6vw, 3.5rem);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.site-footer__nav {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  text-decoration: underline;
}

body.is-high-contrast {
  background: #05070f;
  color: #f4f7ff;
  color-scheme: dark;
}

body.is-high-contrast a {
  color: #ffd75a;
}

body.is-high-contrast a:hover,
body.is-high-contrast a:focus-visible {
  color: #fff1a8;
}

body.is-high-contrast :focus-visible {
  outline-color: #ffd75a;
}

body.is-high-contrast .skip-link {
  background: #ffd75a;
  color: #05070f;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

body.is-high-contrast .site-header {
  background: #02030a;
  color: #f4f7ff;
}


body.is-high-contrast .brand {
  background: linear-gradient(130deg, rgba(5, 7, 15, 0.95), rgba(16, 22, 45, 0.75));
  padding: clamp(0.35rem, 1vw, 0.65rem);
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 90, 0.45);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
}

body.is-high-contrast .brand::after {
  inset: -15% -10% auto auto;
  background: radial-gradient(circle, rgba(255, 215, 90, 0.55), transparent 70%);
  filter: blur(0.35px);
}

body.is-high-contrast .brand__image {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.65));
}

body.is-high-contrast .site-header::before {
  background: linear-gradient(115deg, rgba(2, 4, 12, 0.92), rgba(7, 12, 30, 0.85));
}

body.is-high-contrast .site-header::after {
  background: radial-gradient(circle at 85% -10%, rgba(255, 215, 90, 0.45), transparent 55%);
}

body.is-high-contrast .site-header a:hover,
body.is-high-contrast .site-header a:focus-visible {
  color: #ffd75a;
}

body.is-high-contrast .site-nav__cta {
  border-color: #ffd75a;
  background: #ffd75a;
  color: #05070f;
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.35);
}

body.is-high-contrast .site-nav__cta:hover,
body.is-high-contrast .site-nav__cta:focus-visible {
  background: transparent;
  color: #ffd75a;
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.6);
}

body.is-high-contrast .language-toggle,
body.is-high-contrast .contrast-toggle {
  border-color: #ffd75a;
  color: #ffd75a;
}

body.is-high-contrast .language-toggle:hover,
body.is-high-contrast .language-toggle:focus-visible,
body.is-high-contrast .contrast-toggle:hover,
body.is-high-contrast .contrast-toggle:focus-visible {
  background: #ffd75a;
  color: #05070f;
}

body.is-high-contrast .hero__kicker,
body.is-high-contrast .section-heading__eyebrow,
body.is-high-contrast .team-card__role,
body.is-high-contrast .service-accordion__item summary,
body.is-high-contrast .form__field span,
body.is-high-contrast .contact-card li span {
  color: #ffd75a;
}

body.is-high-contrast .hero__lead,
body.is-high-contrast .section-heading p,
body.is-high-contrast .about-card p,
body.is-high-contrast .team-card__bio,
body.is-high-contrast .team-card__location,
body.is-high-contrast .team-card__highlights,
body.is-high-contrast .service-accordion__item ul,
body.is-high-contrast .contact-card address,
body.is-high-contrast .contact-card p,
body.is-high-contrast .contact-map__address,
body.is-high-contrast .form__disclaimer,
body.is-high-contrast .form__status {
  color: #e4e9ff;
}

body.is-high-contrast .section-heading h2 {
  color: #f4f7ff;
}

body.is-high-contrast .about,
body.is-high-contrast .services,
body.is-high-contrast .process,
body.is-high-contrast .testimonials,
body.is-high-contrast .chatbot,
body.is-high-contrast .contact {
  background: #030815;
  border: 2px solid rgba(255, 215, 90, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.18);
}

body.is-high-contrast .about-card,
body.is-high-contrast .team-card,
body.is-high-contrast .contact-card,
body.is-high-contrast .contact-map,
body.is-high-contrast .form {
  background: #0d1426;
  border: 2px solid rgba(255, 215, 90, 0.65);
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.45);
  color: #f4f7ff;
}

body.is-high-contrast .about-card h3,
body.is-high-contrast .team-card h3,
body.is-high-contrast .contact-card h3,
body.is-high-contrast .contact-map__title,
body.is-high-contrast .form h3,
body.is-high-contrast .services__group-title {
  color: #ffd75a;
}

body.is-high-contrast .team-card::before {
  background: rgba(255, 215, 90, 0.18);
  opacity: 1;
}

body.is-high-contrast .team-card__tags span {
  background: rgba(255, 215, 90, 0.12);
  color: #ffd75a;
}

body.is-high-contrast .team-card__link {
  background: #ffd75a;
  color: #05070f;
  border-color: #ffd75a;
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.35);
}

body.is-high-contrast .team-card__link:hover,
body.is-high-contrast .team-card__link:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 215, 90, 0.55);
}

body.is-high-contrast .team-card__link--ghost {
  background: transparent;
  color: #ffd75a;
  border-color: rgba(255, 215, 90, 0.45);
  box-shadow: none;
}

body.is-high-contrast .team-card__link--ghost:hover,
body.is-high-contrast .team-card__link--ghost:focus-visible {
  background: rgba(255, 215, 90, 0.18);
  box-shadow: none;
  color: #05070f;
}

body.is-high-contrast .process-step {
  background: #0d1426;
  border: 2px solid rgba(255, 215, 90, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.18);
}

body.is-high-contrast .process-step__badge {
  background: #ffd75a;
  color: #05070f;
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.35);
}

body.is-high-contrast .process-step h3 {
  color: #f4f7ff;
}

body.is-high-contrast .process-step p {
  color: #e4e9ff;
}

body.is-high-contrast .service-accordion__item {
  background: #0d1426;
  border: 2px solid rgba(255, 215, 90, 0.65);
  box-shadow: none;
}

body.is-high-contrast .service-accordion__item[open] {
  background: #040912;
  box-shadow: 0 0 0 3px rgba(255, 215, 90, 0.35);
}

body.is-high-contrast .service-accordion__icon::before,
body.is-high-contrast .service-accordion__item li::before {
  color: #ffd75a;
}

body.is-high-contrast .button {
  background: #ffd75a;
  color: #05070f;
  border-color: #ffd75a;
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.45);
}

body.is-high-contrast .button:hover,
body.is-high-contrast .button:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 215, 90, 0.6);
}

body.is-high-contrast .button--ghost {
  background: transparent;
  color: #ffd75a;
  box-shadow: none;
}

body.is-high-contrast .button--ghost:hover,
body.is-high-contrast .button--ghost:focus-visible {
  background: #ffd75a;
  color: #05070f;
}

body.is-high-contrast .chatbot__bubble--bot {
  background: #111a33;
  color: #f4f7ff;
}

body.is-high-contrast .chatbot__bubble--user {
  background: #ffd75a;
  color: #05070f;
}

body.is-high-contrast .chatbot__widget {
  background: linear-gradient(145deg, #050a17, #0d1426);
  border: 2px solid rgba(255, 215, 90, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.18);
}

body.is-high-contrast .chatbot__widget::before {
  background: radial-gradient(circle at -20% -20%, rgba(255, 215, 90, 0.16), transparent 55%),
    radial-gradient(circle at 120% 140%, rgba(17, 26, 51, 0.8), transparent 50%);
  opacity: 1;
}

body.is-high-contrast .testimonial-card {
  background: #0d1426;
  border: 2px solid rgba(255, 215, 90, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.18);
}

body.is-high-contrast .testimonials__grid {
  background: linear-gradient(135deg, rgba(17, 26, 51, 0.75), rgba(5, 10, 23, 0.95));
  border-radius: calc(var(--radius-lg) - 18px);
  padding: clamp(1.2rem, 3vw, 1.85rem);
  gap: clamp(1.4rem, 3vw, 2rem);
}

body.is-high-contrast .testimonial-card blockquote {
  color: #f4f7ff;
}

body.is-high-contrast .testimonial-card blockquote::before {
  color: rgba(255, 215, 90, 0.45);
}

body.is-high-contrast .testimonial-card__name {
  color: #ffd75a;
}

body.is-high-contrast .testimonial-card__role {
  color: #bcc6f9;
}

body.is-high-contrast .chatbot__messages {
  background: #030815;
  border: 2px solid rgba(255, 215, 90, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 90, 0.2);
}

body.is-high-contrast .chatbot__messages::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 90, 0.45);
}

body.is-high-contrast .chatbot__messages::-webkit-scrollbar-track {
  background: rgba(5, 9, 18, 0.85);
}

body.is-high-contrast .chatbot__suggestions button {
  background: transparent;
  border: 2px solid #ffd75a;
  color: #ffd75a;
  box-shadow: none;
}

body.is-high-contrast .chatbot__suggestions button:hover,
body.is-high-contrast .chatbot__suggestions button:focus-visible {
  background: #ffd75a;
  color: #05070f;
  box-shadow: 0 0 0 3px rgba(255, 215, 90, 0.45);
}

body.is-high-contrast .chatbot__form input {
  background: #0d1426;
  border: 2px solid rgba(255, 215, 90, 0.65);
  color: #f4f7ff;
}

body.is-high-contrast .chatbot__form input::placeholder,
body.is-high-contrast .form__field input::placeholder,
body.is-high-contrast .form__field textarea::placeholder {
  color: #bcc6f9;
}

body.is-high-contrast .chatbot__form input:focus-visible,
body.is-high-contrast .form__field input:focus-visible,
body.is-high-contrast .form__field select:focus-visible,
body.is-high-contrast .form__field textarea:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 215, 90, 0.45);
  border-color: #ffd75a;
  background: #02050f;
}

body.is-high-contrast .form__field input,
body.is-high-contrast .form__field select,
body.is-high-contrast .form__field textarea {
  background: #0d1426;
  border: 2px solid rgba(255, 215, 90, 0.65);
  color: #f4f7ff;
}

body.is-high-contrast .form__status--success {
  color: #6ef0b7;
}

body.is-high-contrast .form__status--error {
  color: #ff9a9a;
}

body.is-high-contrast .site-footer {
  background: #02030a;
  color: #e4e9ff;
}

body.is-high-contrast .site-footer__nav a {
  color: #ffd75a;
}

body.is-high-contrast .cta-banner__inner {
  background: linear-gradient(135deg, #050912, #0d1a36);
  box-shadow: 0 0 0 2px rgba(255, 215, 90, 0.35);
}

body.is-high-contrast .cta-banner__inner::after {
  background: radial-gradient(circle, rgba(255, 215, 90, 0.35), transparent 60%);
}

body.is-high-contrast .cta-banner__content h2 {
  color: #ffd75a;
}

body.is-high-contrast .cta-banner__content p,
body.is-high-contrast .cta-banner__content .section-heading__eyebrow {
  color: #e4e9ff;
}

@media (max-width: 900px) {
  .site-header__inner {
    justify-content: center;
  }

  .site-nav {
    justify-content: center;
  }

  .about {
    margin-top: -3rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-bottom: 4rem;
  }

  .hero {
    margin-top: 2.5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .site-nav {
    flex-direction: column;
  }

  .chatbot__suggestions {
    justify-content: center;
  }

  .chatbot__form {
    flex-direction: column;
  }

  .chatbot__form button {
    width: 100%;
  }

  .contact-card__cta {
    flex-direction: column;
  }
}
