:root {
  --navy: #1b2340;
  --navy-deep: #0f1528;
  --blue: #3b82f6;
  --white: #ffffff;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-50: #f8fafc;
  --border: #e2e8f0;
  --max-width: 1280px;
  --page-padding: clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.font-display {
  font-family: "Archivo Black", Inter, sans-serif;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

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

.button-secondary {
  background: var(--white);
  color: var(--navy);
}

.button-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.button-nav {
  background: var(--navy);
  color: var(--white);
  padding: 18px 32px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 100px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(27, 35, 64, 0.08);
}

.nav-shell {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

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

.brand-logo {
  display: block;
  height: clamp(40px, 5vw, 48px);
  width: clamp(40px, 5vw, 48px);
  object-fit: contain;
}

.brand-footer .brand-logo {
  height: clamp(48px, 5.5vw, 58px);
  width: auto;
  max-width: min(320px, 55vw);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-links a:not(.button-nav):hover,
.nav-links a.is-active:not(.button-nav) {
  color: var(--blue);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.hero {
  min-height: 800px;
  padding: 100px var(--page-padding) 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 72% 80% at 50% 50%, rgba(27, 35, 64, 1) 0%, rgba(15, 21, 40, 1) 100%);
}

.hero-inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.8);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2.5rem, 6vw, 72px);
  line-height: 1.1;
  color: var(--white);
  max-width: 1000px;
}

.hero-copy p {
  max-width: 800px;
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-400);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stats-strip {
  padding: 80px var(--page-padding);
  background: var(--white);
}

.stats-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-item strong {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  color: var(--navy);
}

.stat-item span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--slate-500);
}

.services-section {
  padding: 120px var(--page-padding);
  background: var(--slate-50);
}

.section-header {
  max-width: 1440px;
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-500);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  overflow: hidden;
}

.service-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 32px;
  height: 32px;
}

.service-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-copy h3 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.service-copy p {
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.5;
}

.service-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.partners-strip {
  display: none !important;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(1rem, 2vw, 24px);
  color: var(--slate-400);
}

.partners-strip p {
  opacity: 0.5;
}

.cases-section {
  padding: 120px var(--page-padding);
}

.cases-header {
  max-width: 1440px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cases-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cases-eyebrow {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--blue);
}

.cases-heading h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
}

.cases-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.case-card {
  margin: 0;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

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

.cta-section {
  background: var(--navy);
  padding: 120px var(--page-padding);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-inner h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  color: var(--white);
}

.cta-inner p {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-400);
  max-width: 600px;
}

.site-footer {
  background: var(--navy);
  color: var(--slate-400);
  padding: 100px var(--page-padding) 60px;
}

.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--white);
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.18);
  transform: translateY(-2px);
}

.social-links .ia-icon {
  width: 18px;
  height: 18px;
}

/* Brand icon system — mask-based SVGs tinted via currentColor */
.ia-icon {
  display: block;
  flex-shrink: 0;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.ia-icon-map-pin {
  mask-image: url("/assets/icons/map-pin.svg");
  -webkit-mask-image: url("/assets/icons/map-pin.svg");
}

.ia-icon-phone {
  mask-image: url("/assets/icons/phone.svg");
  -webkit-mask-image: url("/assets/icons/phone.svg");
}

.ia-icon-mail {
  mask-image: url("/assets/icons/mail.svg");
  -webkit-mask-image: url("/assets/icons/mail.svg");
}

.ia-icon-clock {
  mask-image: url("/assets/icons/clock.svg");
  -webkit-mask-image: url("/assets/icons/clock.svg");
}

.ia-icon-linkedin {
  mask-image: url("/assets/icons/linkedin.svg");
  -webkit-mask-image: url("/assets/icons/linkedin.svg");
}

.ia-icon-twitter {
  mask-image: url("/assets/icons/twitter.svg");
  -webkit-mask-image: url("/assets/icons/twitter.svg");
}

.ia-icon-facebook {
  mask-image: url("/assets/icons/facebook.svg");
  -webkit-mask-image: url("/assets/icons/facebook.svg");
}

.ia-icon-instagram {
  mask-image: url("/assets/icons/instagram.svg");
  -webkit-mask-image: url("/assets/icons/instagram.svg");
}

.ia-icon-youtube {
  mask-image: url("/assets/icons/youtube.svg");
  -webkit-mask-image: url("/assets/icons/youtube.svg");
}

.ia-icon-plus {
  mask-image: url("/assets/icons/plus.svg");
  -webkit-mask-image: url("/assets/icons/plus.svg");
}

.ia-icon-shield {
  mask-image: url("/assets/icons/shield.svg");
  -webkit-mask-image: url("/assets/icons/shield.svg");
}

.ia-icon-lightbulb {
  mask-image: url("/assets/icons/lightbulb.svg");
  -webkit-mask-image: url("/assets/icons/lightbulb.svg");
}

.ia-icon-target {
  mask-image: url("/assets/icons/target.svg");
  -webkit-mask-image: url("/assets/icons/target.svg");
}

.ia-icon-brain {
  mask-image: url("/assets/icons/brain.svg");
  -webkit-mask-image: url("/assets/icons/brain.svg");
}

.ia-icon-eye {
  mask-image: url("/assets/icons/eye.svg");
  -webkit-mask-image: url("/assets/icons/eye.svg");
}

.footer-menus {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-menu-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-menu a {
  font-size: 16px;
  line-height: 1.5;
}

.footer-menu a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1440px;
  margin: 80px auto 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin: 0 0 32px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .services-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card {
    height: 360px;
  }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px var(--page-padding) 28px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .button-nav {
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .partners-strip {
    justify-content: center;
  }

  .cases-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menus {
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }
}

.site-header--solid {
  position: sticky;
}

.about-us-page .about-main {
  padding-top: 100px;
}

.section-eyebrow {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.about-hero-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 700px;
}

.about-hero-left {
  background: var(--navy);
  padding: 80px var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.about-hero-left h1 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  color: var(--white);
}

.about-hero-left p {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-400);
  max-width: 640px;
}

.about-hero-right {
  background: var(--white);
  padding: 80px var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.about-hero-right h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  color: var(--navy);
}

.about-hero-right p {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-500);
}

.about-story {
  background: var(--slate-50);
  padding: 120px var(--page-padding);
}

.about-story-header {
  max-width: 1440px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-header h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
}

.about-story-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 600px);
  gap: 80px;
  align-items: center;
}

.about-story-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-story-copy p {
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.5;
}

.about-story-media {
  margin: 0;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mv-cards {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px var(--page-padding);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-mv-card {
  border-radius: 8px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-mv-card--dark {
  background: var(--navy);
  color: var(--white);
}

.about-mv-card--dark p {
  color: var(--slate-400);
}

.about-mv-card--light {
  background: var(--white);
  border: 1px solid var(--navy);
}

.about-mv-card--light p {
  color: var(--slate-500);
}

.about-mv-card h3 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 32px;
  line-height: 1.3;
}

.about-mv-icon-wrap {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: currentColor;
}

.about-mv-card--dark .about-mv-icon-wrap {
  background: rgba(255, 255, 255, 0.08);
}

.about-mv-card--light .about-mv-icon-wrap {
  background: rgba(32, 41, 75, 0.06);
  color: var(--navy);
}

.about-mv-icon {
  width: 40px;
  height: 40px;
}

.about-mv-card p {
  font-size: 16px;
  line-height: 1.5;
}

.about-values {
  background: var(--slate-50);
  padding: 120px var(--page-padding);
}

.about-values-title,
.about-team-title {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.about-values-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.value-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.14);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.value-item:hover .value-icon-wrap {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.28);
  transform: translateY(-2px);
}

.value-icon-wrap .ia-icon {
  width: 32px;
  height: 32px;
}

.value-item p {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

.about-team {
  padding: 120px var(--page-padding);
}

.about-team--hidden {
  display: none;
}

.about-team-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.team-meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-meta h3 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.team-meta p {
  color: var(--slate-500);
  font-size: 16px;
}

.awards-strip {
  background: var(--navy);
  color: var(--white);
  padding: 60px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.awards-strip p {
  opacity: 0.6;
}

.about-contact {
  padding: 120px var(--page-padding);
  background: var(--white);
}

.about-contact .section-header {
  margin-bottom: 32px;
}

.contact-details {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--slate-500);
}

.contact-details p {
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--slate-50);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
}

.form-message.success {
  color: #047857;
}

.form-message.error {
  color: #b91c1c;
}

@media (max-width: 1024px) {
  .about-hero-split,
  .about-story-grid,
  .about-mv-cards,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    height: 320px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .awards-strip {
    justify-content: center;
  }
}

/* Solutions page */
.solutions-page .solutions-main {
  padding-top: 100px;
}

.solutions-hero {
  background: var(--navy);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--page-padding);
}

.solutions-hero-inner {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solutions-hero-inner h1 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  color: var(--white);
}

.solutions-hero-inner p {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-400);
  max-width: 700px;
  margin: 0 auto;
}

.solutions-grid-section {
  padding: 120px var(--page-padding);
  background: var(--white);
}

.solutions-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.why-choose {
  background: var(--slate-50);
  padding: 120px var(--page-padding);
}

.why-choose-title {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.why-choose-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
}

.why-choose-grid h3 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.why-choose-grid p {
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.5;
}

.process-section {
  padding: 120px var(--page-padding);
  background: var(--white);
}

.process-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-header h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
}

.process-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.process-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.process-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.process-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-copy h3 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.process-copy p {
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .solutions-grid,
  .why-choose-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 640px) {
  .solutions-grid,
  .why-choose-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Solution detail (Learn More) */
.solution-detail-page .solution-detail-main {
  padding-top: 100px;
}

.solution-detail-breadcrumb {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px var(--page-padding) 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
}

.solution-detail-breadcrumb a {
  color: var(--blue);
}

.solution-detail-breadcrumb a:hover {
  text-decoration: underline;
}

.solution-detail-article {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px var(--page-padding) 80px;
}

.solution-detail-media {
  margin: 0 0 48px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.solution-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-detail-content h1 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 40px);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}

.solution-detail-summary {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-500);
  margin-bottom: 32px;
}

.solution-detail-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.solution-detail-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-500);
}

.solution-detail-capabilities {
  margin-bottom: 48px;
  padding: 40px;
  background: var(--slate-50);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.solution-detail-capabilities h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--navy);
}

.solution-detail-capabilities ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-detail-capabilities li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--slate-500);
}

.solution-detail-capabilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.solution-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.solution-detail-page .cta-section {
  margin-top: 0;
}

@media (max-width: 640px) {
  .solution-detail-capabilities {
    padding: 28px;
  }

  .solution-detail-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Contact page */
.contact-page .contact-main {
  padding-top: 100px;
}

.contact-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--page-padding);
  background:
    radial-gradient(ellipse 72% 50% at 50% 50%, rgba(27, 35, 64, 1) 0%, rgba(15, 21, 40, 1) 100%);
}

.contact-hero-inner {
  max-width: 1000px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-hero-inner h1 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2.5rem, 6vw, 72px);
  line-height: 1.1;
  color: var(--white);
  max-width: 1000px;
}

.contact-hero-inner p {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-400);
  max-width: 800px;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  padding: 120px var(--page-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.contact-form-col h2,
.contact-details-block h2,
.contact-follow h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 40px;
}

.contact-follow h2 {
  margin-bottom: 32px;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-page-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-page-form label > span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  font: inherit;
  font-size: 16px;
  background: var(--white);
  color: var(--navy);
  min-height: 56px;
}

.contact-page-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: var(--slate-400);
}

.button-submit {
  align-self: flex-start;
  background: var(--navy);
  color: var(--white);
  padding: 20px 40px;
  border-radius: 4px;
  font-weight: 600;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-info-list li:hover .contact-info-icon {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.28);
  transform: translateY(-1px);
}

.contact-info-icon .ia-icon {
  width: 22px;
  height: 22px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
}

.contact-info-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--slate-500);
}

.contact-social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-social-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  transition: color 0.2s ease;
}

.contact-social-list a:hover {
  color: var(--blue);
}

.contact-social-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-social-list a:hover .contact-social-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-social-icon .ia-icon {
  width: 18px;
  height: 18px;
}

.contact-offices {
  padding: 0 var(--page-padding) 120px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-offices h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 64px;
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.contact-offices-grid--single {
  grid-template-columns: minmax(0, 480px);
}

.office-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.office-card h3 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.office-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.office-meta p {
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.5;
}

.office-phone {
  color: var(--blue) !important;
  font-weight: 600;
}

.office-link {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-map {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--navy-deep);
  transition: box-shadow 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-map:hover {
  box-shadow:
    inset 0 0 120px rgba(56, 189, 248, 0.12),
    0 0 48px rgba(59, 130, 246, 0.18);
}

.contact-map-media {
  position: absolute;
  inset: 0;
}

.contact-map-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  filter: brightness(1) saturate(1);
  transition:
    transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.65s ease;
}

.contact-map:hover .contact-map-media img {
  transform: scale(1.02);
  filter: brightness(1.08) saturate(1.12);
}

.contact-map-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(56, 189, 248, 0.28), transparent 70%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(59, 130, 246, 0.2), transparent 65%);
  transition: opacity 0.65s ease;
}

.contact-map:hover .contact-map-glow {
  opacity: 1;
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(15, 21, 40, 0.85), transparent);
  pointer-events: none;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .contact-map-media img {
    transition: filter 0.65s ease;
  }

  .contact-map:hover .contact-map-media img {
    transform: none;
  }
}

.contact-faq {
  background: var(--slate-50);
  padding: 120px var(--page-padding);
}

.contact-faq-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-faq-header h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
}

.contact-faq-header p {
  font-size: clamp(1rem, 2vw, 20px);
  line-height: 1.6;
  color: var(--slate-500);
  max-width: 700px;
  margin: 0 auto;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.14);
  color: var(--blue);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.faq-icon .ia-icon {
  width: 16px;
  height: 16px;
}

.faq-item summary:hover .faq-icon {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.28);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.faq-item p {
  padding-bottom: 32px;
  color: var(--slate-500);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.lang-switch a {
  color: var(--slate-500);
  transition: color 0.2s ease;
  pointer-events: auto;
  cursor: pointer;
}

.lang-switch a.is-active,
.lang-switch a[aria-current="true"] {
  color: var(--blue);
}

.lang-switch-divider {
  color: var(--border);
}

.site-footer .lang-switch a {
  color: var(--slate-400);
}

.site-footer .lang-switch a.is-active,
.site-footer .lang-switch a[aria-current="true"] {
  color: var(--white);
}

/* RTL — Arabic */
html[dir="rtl"] body {
  font-family: "IBM Plex Sans Arabic", Inter, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .font-display,
html[dir="rtl"] .about-values-title,
html[dir="rtl"] .about-team-title,
html[dir="rtl"] .value-item p,
html[dir="rtl"] .hero-badge,
html[dir="rtl"] .button {
  font-family: "IBM Plex Sans Arabic", "Archivo Black", Inter, sans-serif;
}

html[dir="rtl"] .nav-links {
  gap: 40px;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .solution-detail-actions,
html[dir="rtl"] .contact-info-list li,
html[dir="rtl"] .contact-social-list a,
html[dir="rtl"] .faq-item summary {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-hero-split,
html[dir="rtl"] .about-story-grid,
html[dir="rtl"] .contact-body {
  direction: rtl;
}

html[dir="rtl"] .footer-top,
html[dir="rtl"] .footer-menus,
html[dir="rtl"] .footer-legal,
html[dir="rtl"] .footer-legal-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .solution-detail-breadcrumb {
  flex-direction: row-reverse;
}

html[dir="rtl"] .process-line {
  transform: scaleX(-1);
}

html[dir="rtl"] .contact-info-icon,
html[dir="rtl"] .contact-social-icon,
html[dir="rtl"] .faq-icon {
  order: 1;
}

html[dir="rtl"] .contact-info-text,
html[dir="rtl"] .contact-social-list a > span:last-child {
  text-align: start;
}

html[dir="rtl"] .menu-button {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

@media (max-width: 1024px) {
  html[dir="rtl"] .nav-links.open {
    align-items: flex-end;
  }
}
