:root {
  --color-primary: #1E3A8A;
  --color-primary-light: #2563EB;
  --color-white: #ffffff;
  --color-text: #1f2937;

  --container: 1280px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;

  color: var(--color-text);
  background: var(--color-white);
}

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

a {
  text-decoration: none;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header__container {
  max-width: var(--container);
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.25s ease;
}

.site-header__link:hover {
  color: var(--color-primary-light);
}

.site-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 20px;
  border-radius: 6px;

  background: var(--color-primary);
  color: var(--color-white);

  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease;
}

.site-header__btn:hover {
  background: var(--color-primary-light);
}

/* Mobile button */

.site-header__toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--color-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */

.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  background: var(--color-white);
  border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;

  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu__btn {
  margin-top: 8px;
  padding: 12px 16px !important;
  border-radius: 6px;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white) !important;
}

/* Responsive */

@media (max-width: 991px) {
  :root {
    --header-height: 64px;
  }

  .site-header__container {
    padding: 0 24px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__toggle {
    display: block;
  }

  .mobile-menu.is-active {
    display: block;
  }

  .site-header__logo img {
    height: 36px;
  }
}

@media (max-width: 575px) {
  .site-header__container {
    padding: 0 16px;
  }

  .site-header__logo img {
    height: 34px;
  }
}


/* Footer */

.site-footer {
  background: #0f2460;
  color: #ffffff;
}

.site-footer__main {
  padding: 56px 0;
}

.site-footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1fr 1.1fr;
  gap: 64px;
}

.site-footer__logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-footer__brand p {
  max-width: 300px;
  margin: 0 0 22px;
  color: #93c5fd;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.site-footer__social a:hover {
  background: #fbbf24;
  color: #1e3a8a;
}

.site-footer h3 {
  margin: 0 0 24px;
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col li {
  margin-bottom: 13px;
}

.site-footer__col a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #93c5fd;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.site-footer__col a::before {
  content: "›";
  color: #fbbf24;
  font-size: 20px;
  line-height: 1;
}

.site-footer__col a:hover {
  color: #fbbf24;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;

  color: #93c5fd;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__icon {
  width: 22px;
  min-width: 22px;
  color: #fbbf24;
  font-size: 17px;
  line-height: 1;
  margin-top: 2px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom p,
.site-footer__legal a,
.site-footer__legal span {
  margin: 0;
  color: #60a5fa;
  font-size: 12px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  transition: color 0.25s ease;
}

.site-footer__legal a:hover {
  color: #fbbf24;
}

/* Tablet */

@media (max-width: 991px) {
  .site-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .site-footer__main {
    padding: 40px 0 32px;
  }

  .site-footer__container {

    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 28px;
  }

  .site-footer__desktop {
    display: none;
  }

  .site-footer__logo img {
    height: 46px;
    margin-bottom: 16px;
  }

  .site-footer__brand p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
  }

  .site-footer__contact h3 {
    margin-top: 6px;
  }

  .site-footer__contact li {
    margin-bottom: 22px;
  }

  .site-footer__bottom-container {
    padding: 16px 24px 18px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .site-footer__bottom p,
  .site-footer__legal a,
  .site-footer__legal span {
    font-size: 10px;
  }
}/* Footer */

.site-footer {
  background: #0f2460;
  color: #ffffff;
}

.site-footer__main {
  padding: 56px 0;
}

.site-footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1fr 1.1fr;
  gap: 64px;
}

.site-footer__logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-footer__brand p {
  max-width: 300px;
  margin: 0 0 22px;
  color: #93c5fd;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.site-footer__social a:hover {
  background: #fbbf24;
  color: #1e3a8a;
}

.site-footer h3 {
  margin: 0 0 24px;
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col li {
  margin-bottom: 13px;
}

.site-footer__col a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #93c5fd;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.site-footer__col a::before {
  content: "›";
  color: #fbbf24;
  font-size: 20px;
  line-height: 1;
}

.site-footer__col a:hover {
  color: #fbbf24;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;

  color: #93c5fd;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__icon {
  width: 22px;
  min-width: 22px;
  color: #fbbf24;
  font-size: 17px;
  line-height: 1;
  margin-top: 2px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom p,
.site-footer__legal a,
.site-footer__legal span {
  margin: 0;
  color: #60a5fa;
  font-size: 12px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  transition: color 0.25s ease;
}

.site-footer__legal a:hover {
  color: #fbbf24;
}

/* Tablet */

@media (max-width: 991px) {
  .site-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .site-footer__main {
    padding: 40px 0 32px;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 28px;
  }

  .site-footer__desktop {
    display: none;
  }

  .site-footer__logo img {
    height: 46px;
    margin-bottom: 16px;
  }

  .site-footer__brand p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
  }

  .site-footer__contact h3 {
    margin-top: 6px;
  }

  .site-footer__contact li {
    margin-bottom: 22px;
  }

  .site-footer__bottom-container {
    padding: 16px 24px 18px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .site-footer__bottom p,
  .site-footer__legal a,
  .site-footer__legal span {
    font-size: 10px;
  }
}

/* Aquí empieza el hero */

/* Hero Slider */

.hero-slider {
  width: 100%;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-slider__wrapper {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #0f2460;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 0 24px;
  text-align: center;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__content span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-slide__content h1,
.hero-slide__content h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-slide__project {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;

  color: #fbbf24;
}

.hero-slide__icon {
  color: #fbbf24 !important;
  font-size: 30px !important;
  line-height: 1;
}

.hero-slide__project strong {
  color: #fbbf24;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 150px;
  padding: 11px 30px;
  border: 2px solid #ffffff;
  border-radius: 2px;

  color: #ffffff;
  font-size: 15px;
  font-weight: 700;

  transition: all 0.25s ease;
}

.hero-slide__btn:hover {
  background: #ffffff;
  color: #1e3a8a;
}

/* Arrows */

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;

  font-size: 42px;
  line-height: 1;
  cursor: pointer;

  transition: background 0.25s ease;
}

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-slider__arrow--prev {
  left: 24px;
}

.hero-slider__arrow--next {
  right: 24px;
}

/* Dots */

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;

  transition: all 0.3s ease;
}

.hero-slider__dot.is-active {
  width: 32px;
  background: #ffffff;
}

/* Tablet */

@media (max-width: 991px) {
  .hero-slider__wrapper {
    height: 580px;
  }

  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: 52px;
  }

  .hero-slide__project strong {
    font-size: 22px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .hero-slider__wrapper {
    height: 480px;
  }

  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: 40px;
  }

  .hero-slide__content span {
    font-size: 18px;
  }

  .hero-slide__project {
    flex-direction: column;
    gap: 6px;
  }

  .hero-slide__project strong {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 40px;
    font-size: 34px;
  }

  .hero-slider__arrow--prev {
    left: 12px;
  }

  .hero-slider__arrow--next {
    right: 12px;
  }
}

@media (max-width: 575px) {
  .hero-slider__wrapper {
    height: 420px;
  }

  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: 34px;
  }

  .hero-slide__btn {
    padding: 10px 26px;
    font-size: 14px;
  }
}


/* About */

/* About */

.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
}

/* LEFT */

.about-section__media {
  position: relative;
}

.about-section__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-section__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.about-section__overlay {
  position: absolute;
  inset: 0;
  border-radius: 12px;

  background: linear-gradient(
    to top,
    rgba(30, 58, 138, 0.28),
    transparent
  );
}

/* Badge */

.about-section__badge {
  position: absolute;
  right: -30px;
  bottom: -24px;

  width: 124px;
  height: 100px;
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #fbbf24;
  color: #1e3a8a;

  text-align: center;
}

.about-section__badge strong {
  display: block;

  font-size: 46px;
  line-height: 0.9;
  font-weight: 800;
}

.about-section__badge span {
  margin-top: 4px;

  font-size: 11px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

/* RIGHT */

.about-section__eyebrow {
  display: inline-block;
  margin-bottom: 16px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-section__title {
  max-width: 540px;
  margin: 0 0 24px;

  color: #1e3a8a;

  font-size: 36px;
  line-height: 0.98;
  letter-spacing: 1px;
  font-weight: 800;
}

.about-section__description {
  max-width: 620px;
  margin: 0 0 34px;

  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.about-section__description strong {
  color: #374151;
}

/* Features */

.about-section__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-feature {
  padding: 18px 16px 16px;

  border-radius: 12px;
  border: 1px solid #e5e7eb;

  background: #f9fafb;

  min-height: 208px;

  transition: all 0.25s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.about-feature__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(30, 58, 138, 0.08);

  color: #2563eb;
  font-size: 18px;
  font-weight: 700;
}

.about-feature h3 {
  margin: 0 0 10px;

  color: #1e3a8a;
  font-size: 14px;
  font-weight: 800;
}

.about-feature p {
  margin: 0;

  color: #6b7280;
  font-size: 12px;
  line-height: 1.9;
}

/* Tablet */

@media (max-width: 1199px) {

  .about-section__container {
    gap: 48px;
  }

  .about-section__title {
    font-size: 46px;
  }

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

  .about-feature {
    min-height: auto;
  }

}

/* Mobile */

@media (max-width: 991px) {

  .about-section {
    padding: 64px 0;
  }

  .about-section__container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-section__title {
    max-width: 100%;
    font-size: 40px;
  }

  .about-section__description {
    max-width: 100%;
  }

}

@media (max-width: 767px) {

  .about-section__container {
    padding: 0 24px;
  }

  .about-section__image {
    height: 420px;
  }

  .about-section__badge {
    right: 12px;
    bottom: -18px;

    width: 104px;
    height: 92px;
  }

  .about-section__badge strong {
    font-size: 36px;
  }

  .about-section__badge span {
    font-size: 10px;
  }

  .about-section__title {
    font-size: 34px;
    line-height: 1.02;
  }

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

}

@media (max-width: 575px) {

  .about-section {
    padding: 56px 0;
  }

  .about-section__container {
    padding: 0 18px;
  }

  .about-section__image {
    height: 360px;
  }

  .about-section__title {
    font-size: 30px;
  }

}

/* servicios */



.services-section {
  padding: 86px 0;
  background: #f8fafc;
}

.services-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.services-section__header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.services-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.services-section__title {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
}

.services-section__description {
  max-width: 640px;
  margin: 0 auto;

  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

/* Grid */

.services-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */

.service-card {
  position: relative;
  overflow: hidden;

  min-height: 344px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;

  background: #ffffff;

  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 36, 96, 0.12);
}

.service-card__image {
  height: 170px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  transition: transform 0.45s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__icon {
  position: absolute;
  top: 142px;
  left: 22px;
  z-index: 2;

  width: 42px;
  height: 42px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fbbf24;
  color: #1e3a8a;

  font-size: 20px;
  font-weight: 800;
}

.service-card__body {
  padding: 28px 22px 24px;
}

.service-card h3 {
  margin: 0 0 14px;

  color: #1e3a8a;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.service-card p {
  margin: 0 0 22px;

  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.service-card__link {
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.25s ease;
}

.service-card__link:hover {
  color: #1e3a8a;
}

/* CTA */

.service-card--cta {
  padding: 34px 32px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #2554c7;
  border-color: #2554c7;
  color: #ffffff;
}

.service-card--cta:hover {
  box-shadow: 0 18px 36px rgba(37, 84, 199, 0.22);
}

.service-card__icon--cta {
  position: static;
  margin-bottom: 24px;
}

.service-card--cta h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
}

.service-card--cta p {
  color: rgba(255, 255, 255, 0.86);
}

.service-card__cta-btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 6px;

  background: #ffffff;
  color: #1e3a8a;

  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.service-card__cta-btn:hover {
  background: #fbbf24;
}

/* Tablet */

@media (max-width: 1199px) {
  .services-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 72px 0;
  }

  .services-section__title {
    font-size: 36px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .services-section {
    padding: 56px 0;
  }

  .services-section__container {
    padding: 0 24px;
  }

  .services-section__header {
    margin-bottom: 40px;
  }

  .services-section__title {
    font-size: 30px;
  }

  .services-section__description {
    font-size: 15px;
  }

  .services-section__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card__image {
    height: 190px;
  }

  .service-card__icon {
    top: 162px;
  }
}

@media (max-width: 575px) {
  .services-section__container {
    padding: 0 18px;
  }

  .services-section__title {
    font-size: 28px;
  }

  .service-card__body {
    padding: 28px 20px 22px;
  }
}

/* Pillars */

.pillars-section {
  padding: 86px 0;
  background: #f8fafc;
}

.pillars-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */

.pillars-section__header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.pillars-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pillars-section__title {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 800;
}

.pillars-section__description {
  max-width: 620px;
  margin: 0 auto;

  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
}

/* Grid */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 46px;
}

/* Card */

.pillar-card {
  position: relative;
  overflow: hidden;

  min-height: 206px;
  padding: 32px;

  border-radius: 14px;
  background: #ffffff;

  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 36, 96, 0.08);
}

.pillar-card__number {
  position: absolute;
  top: -8px;
  right: -4px;

  color: rgba(30, 58, 138, 0.08);

  font-size: 68px;
  line-height: 1;
  font-weight: 800;
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(30, 58, 138, 0.08);

  color: #2563eb;
  font-size: 20px;
  font-weight: 700;
}

.pillar-card h3 {
  margin: 0 0 14px;

  color: #1e3a8a;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.pillar-card p {
  max-width: 290px;
  margin: 0;

  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.pillar-card__line {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 4px;

  background: #fbbf24;
  transition: width 0.45s ease;
}

.pillar-card:hover .pillar-card__line {
  width: 100%;
}

/* Variants */

.pillar-card--dark {
  background: #1e3a8a;
}

.pillar-card--dark h3,
.pillar-card--dark p {
  color: #ffffff;
}

.pillar-card--dark p {
  opacity: 0.82;
}

.pillar-card--dark .pillar-card__number {
  color: rgba(255, 255, 255, 0.08);
}

.pillar-card--dark .pillar-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.pillar-card--dark .pillar-card__line {
  background: rgba(255,255,255,0.35);
}

/* Blue */

.pillar-card--blue {
  background: #2563eb;
}

.pillar-card--blue h3,
.pillar-card--blue p {
  color: #ffffff;
}

.pillar-card--blue p {
  opacity: 0.85;
}

.pillar-card--blue .pillar-card__number {
  color: rgba(255,255,255,0.08);
}

.pillar-card--blue .pillar-card__icon {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
}

.pillar-card--blue .pillar-card__line {
  background: rgba(255,255,255,0.35);
}

/* Yellow */

.pillar-card--yellow {
  background: #fbbf24;
}

.pillar-card--yellow h3 {
  color: #1e3a8a;
}

.pillar-card--yellow p {
  color: rgba(30,58,138,0.78);
}

.pillar-card--yellow .pillar-card__number {
  color: rgba(30,58,138,0.12);
}

.pillar-card__icon--dark {
  background: rgba(30,58,138,0.1);
  color: #1e3a8a;
}

/* Image Card */

.pillar-image-card {
  position: relative;
  overflow: hidden;

  min-height: 320px;
  border-radius: 14px;
}

.pillar-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.pillar-image-card__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(30,58,138,0.82),
    rgba(30,58,138,0.12),
    transparent
  );
}

.pillar-image-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.pillar-image-card__badge {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px;
  border-radius: 12px;

  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
}

.pillar-image-card__badge-icon {
  width: 42px;
  height: 42px;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fbbf24;
  color: #1e3a8a;

  font-size: 18px;
  font-weight: 800;
}

.pillar-image-card strong {
  display: block;

  color: #1e3a8a;
  font-size: 14px;
  font-weight: 800;
}

.pillar-image-card span {
  color: #64748b;
  font-size: 12px;
}

  /* Stats */

  

.pillars-stats {
  padding: 44px 36px;

  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillars-stat {
  text-align: center;
}

.pillars-stat strong {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;

  line-height: 1;
  font-weight: 800;
}

.pillars-stat .counter {
  color: #1e3a8a;
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
}

/* .pillars-stat strong > span:last-child {
  color: #fbbf24;
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
}
.pillars-stat strong > span:last-child {
  color: #fbbf24;
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
} */

.pillars-stat .counter-symbol {
  color: #fbbf24;
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
}

.pillars-stat p {
  margin: 10px 0 0;

  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}
/* Tablet */

@media (max-width: 1199px) {

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

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

}

@media (max-width: 991px) {

  .pillars-section {
    padding: 72px 0;
  }

  .pillars-section__title {
    font-size: 46px;
  }

}

/* Mobile */

@media (max-width: 767px) {

  .pillars-section {
    padding: 56px 0;
  }

  .pillars-section__container {
    padding: 0 24px;
  }

  .pillars-section__header {
    margin-bottom: 40px;
  }

  .pillars-section__title {
    font-size: 36px;
  }

  .pillars-section__description {
    font-size: 15px;
  }

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

 
  .pillars-stat strong {
    font-size: 42px;
  }

  .pillars-stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 18px;

  padding: 34px 22px;
}

.pillars-stat {
  position: relative;
  padding-bottom: 18px;
}

.pillars-stat::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;

  width: 36px;
  height: 3px;

  border-radius: 999px;

  background: #fbbf24;

  transform: translateX(-50%);
}

.pillars-stat .counter,
.pillars-stat .counter-symbol {
  font-size: 42px;
}

.pillars-stat p {
  margin-top: 8px;

  font-size: 14px;
  line-height: 1.5;
}

}

@media (max-width: 575px) {

  .pillars-section__container {
    padding: 0 18px;
  }

  .pillars-section__title {
    font-size: 32px;
  }

  .pillar-card {
    padding: 28px 24px;
  }

}


/* Clients */

.clients-section {
  padding: 80px 0 90px;
  background: #ffffff;
  overflow: hidden;
}

.clients-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.clients-section__header {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.clients-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.clients-section__title {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
}

.clients-section__description {
  margin: 0 auto;

  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

/* Marquee */

.clients-marquee {
  position: relative;
  width: 100%;
  margin-bottom: 58px;
  overflow: hidden;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;

  width: 160px;
  height: 100%;

  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255,255,255,0));
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255,255,255,0));
}

.clients-marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;

  animation: clientsMarquee 34s linear infinite;
}

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

.client-card {
  width: 170px;
  height: 114px;

  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.client-card__logo {
  width: 400px;
  height: 400px;
  /* margin-bottom: 18px; */

  border-radius: 50%;
  /* background: #e8eef8; */

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
}

.client-card span {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }

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

/* Testimonial */

.testimonial-card {
  position: relative;
  overflow: hidden;

  max-width: 860px;
  margin: 0 auto;
  padding: 52px 80px 46px;

  border-radius: 10px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);

  text-align: center;
  color: #ffffff;
}

.testimonial-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;

  width: 140px;
  height: 140px;
  border-radius: 50%;

  background: rgba(255,255,255,0.08);
}

.testimonial-card::before {
  top: -46px;
  left: -42px;
}

.testimonial-card::after {
  right: -42px;
  bottom: -46px;
}

.testimonial-card__quote {
  display: block;
  margin-bottom: 18px;

  color: #fbbf24;
  font-size: 62px;
  line-height: 0.7;
  font-weight: 800;
}

.testimonial-card p {
  position: relative;
  z-index: 1;

  max-width: 720px;
  margin: 0 auto 28px;

  font-size: 22px;
  line-height: 1.45;
  font-weight: 800;
}

.testimonial-card strong {
  position: relative;
  z-index: 1;

  display: block;
  margin-bottom: 6px;

  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;
}

.testimonial-card small {
  position: relative;
  z-index: 1;

  color: rgba(255,255,255,0.82);
  font-size: 12px;
}

/* Tablet */

@media (max-width: 991px) {
  .clients-section__title {
    font-size: 36px;
  }

  .testimonial-card {
    padding: 48px 44px 42px;
  }

  .testimonial-card p {
    font-size: 19px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .clients-section {
    padding: 60px 0 70px;
  }

  .clients-section__container {
    padding: 0 24px;
  }

  .clients-section__header {
    margin-bottom: 34px;
  }

  .clients-section__title {
    font-size: 30px;
    line-height: 1.15;
  }

  .clients-section__description {
    font-size: 15px;
  }

  .clients-marquee {
    margin-bottom: 42px;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 70px;
  }

  .client-card {
    width: 144px;
    height: 108px;
  }

  .client-card__logo {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .testimonial-card {
    padding: 42px 26px 38px;
    border-radius: 10px;
  }

  .testimonial-card__quote {
    font-size: 58px;
  }

  .testimonial-card p {
    font-size: 18px;
    line-height: 1.55;
  }
}

/* Contact */

.contact-section {
  padding: 86px 0;
  background: #f3f4f6;
}

.contact-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.contact-section__header {
  margin-bottom: 90px;
  text-align: center;
}

.contact-section__eyebrow {
  display: block;

  color: #2563eb;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.contact-section__title {
  position: relative;

  width: fit-content;
  margin: 4px auto 0;

  color: #1e3a8a;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
}

.contact-section__header h2::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -20px;

  width: 190px;
  height: 4px;

  background: rgb(251, 191, 36);;
  transform: translateX(-50%);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 80px;
  align-items: center;
}

/* Info */

.contact-info {
  padding-left: 20px;
}

.contact-info__logo {
  width: 270px;
  height: auto;
  margin-bottom: 42px;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  color: #64748b;
  font-size: 16px;
  line-height: 1.45;
}

.contact-info__list a {
  color: #4b5563;
  transition: color 0.25s ease;
}

.contact-info__list a:hover {
  color: #1e3a8a;
}

.contact-info__icon {
  width: 28px;
  min-width: 28px;

  color: #111827;
  font-size: 24px;
  line-height: 1;
}

/* Form */

.contact-form-box {
  width: 100%;
}

.contact-form {
  width: 100%;
}

.contact-form__row {
  margin-bottom: 22px;
}

.contact-form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 3px solid #c9c9c9;
  border-radius: 0;
  padding: 18px 20px;
  background: #ffffff;
  color: #64748b;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #222222;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #1e3a8a;
}

.contact-form__button {
  width: 100%;
  border: 0;
  padding: 22px 32px;

  background:rgb(251, 191, 36);
  color: #ffffff;

  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;

  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-form__button:hover {
  background: #1e3a8a;
}

/* Tablet */

@media (max-width: 991px) {
  .contact-section {
    padding: 72px 0;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact-info {
    padding-left: 0;
    text-align: center;
  }

  .contact-info__logo {
    margin: 0 auto 34px;
  }

  .contact-info__list {
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-info__list li {
    text-align: left;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-section__container {
    padding: 0 24px;
  }

  .contact-section__header {
    margin-bottom: 48px;
  }

  .contact-section__header span {
    font-size: 30px;
  }

  .contact-section__header h2 {
    font-size: 34px;
  }

  .contact-section__header h2::after {
    width: 140px;
    bottom: -16px;
  }

  .contact-info__logo {
    width: 230px;
  }

  .contact-info__list li {
    font-size: 17px;
  }

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

  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
    font-size: 17px;
  }

  .contact-form__button {
    padding: 18px 24px;
    font-size: 22px;
  }
}

/* Services Slider */

.services-slider-section {
  padding: 80px 0;
  background: #f8fafc;
  overflow: hidden;
}

.services-slider-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.services-slider-section__header {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.services-slider-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-slider-section__title {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
}

.services-slider-section__description {
  max-width: 640px;
  margin: 0 auto;

  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

/* Slider */

.services-slider {
  position: relative;
}

.services-slider__viewport {
  overflow: hidden;
  border-radius: 10px;
}

.services-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.service-slide-card {
  flex: 0 0 calc((100% - 48px) / 3);

  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  background: #ffffff;

  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-slide-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 36px rgba(15, 36, 96, 0.08);
}

.service-slide-card__image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.service-slide-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;

  transition: transform 0.5s ease;
}

.service-slide-card:hover .service-slide-card__image img {
  transform: scale(1.05);
}

.service-slide-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 138, 0.6), transparent);
}

.service-slide-card__icon {
  position: absolute;
  left: 20px;
  bottom: 14px;

  width: 42px;
  height: 42px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fbbf24;
  color: #1e3a8a;

  font-size: 20px;
  font-weight: 800;
}

.service-slide-card__body {
  min-height: 268px;
  padding: 26px 22px 24px;

  display: flex;
  flex-direction: column;
}

.service-slide-card__body h3 {
  margin: 0 0 14px;

  color: #1e3a8a;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;

  transition: color 0.25s ease;
}

.service-slide-card:hover .service-slide-card__body h3 {
  color: #2563eb;
}

.service-slide-card__body p {
  flex: 1;
  margin: 0 0 22px;

  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.service-slide-card__body a {
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
}

/* CTA */

.service-slide-card--cta {
  padding: 30px 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 460px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.service-slide-card__cta-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fbbf24;
  color: #1e3a8a;

  font-size: 22px;
  font-weight: 800;
}

.service-slide-card--cta h3 {
  margin: 0 0 16px;

  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.service-slide-card--cta p {
  margin: 0;

  color: #bfdbfe;
  font-size: 14px;
  line-height: 1.7;
}

.service-slide-card__cta-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 6px;

  background: #fbbf24;
  color: #1e3a8a;

  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

/* Arrows */

.services-slider__arrow {
  position: absolute;
  top: 45%;
  z-index: 5;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border: 1px solid #e5e7eb;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #1e3a8a;

  font-size: 38px;
  line-height: 1;

  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 36, 96, 0.08);
}

.services-slider__arrow--prev {
  left: -24px;
}

.services-slider__arrow--next {
  right: -24px;
}

.services-slider__arrow:hover {
  border-color: rgba(37, 99, 235, 0.45);
  background: #eff6ff;
}

/* Dots */

.services-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 34px;
}

.services-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;

  background: #d1d5db;
  cursor: pointer;

  transition: all 0.3s ease;
}

.services-slider__dot.is-active {
  width: 32px;
  background: #2563eb;
}

/* Tablet */

@media (max-width: 991px) {
  .service-slide-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .services-slider-section__title {
    font-size: 36px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .services-slider-section {
    padding: 60px 0;
  }

  .services-slider-section__container {
    padding: 0 24px;
  }

  .services-slider-section__header {
    margin-bottom: 38px;
  }

  .services-slider-section__title {
    font-size: 30px;
  }

  .service-slide-card {
    flex-basis: 100%;
  }

  .service-slide-card__image {
    height: 190px;
  }

  .service-slide-card__body {
    min-height: 250px;
  }

  .services-slider__arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .services-slider__arrow--prev {
    left: -10px;
  }

  .services-slider__arrow--next {
    right: -10px;
  }
}

/* CTA */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(30, 58, 138, 0.96) 0%,
    rgba(30, 58, 138, 0.88) 48%,
    rgba(37, 99, 235, 0.82) 100%
  );
}

.cta-section__container {
  position: relative;
  z-index: 2;

  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;

  text-align: center;
}

.cta-section__eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 18px;

  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: 999px;

  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cta-section__title {
  max-width: 860px;
  margin: 0 auto 24px;

  color: #ffffff;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.cta-section__description {
  max-width: 740px;
  margin: 0 auto 42px;

  color: #bfdbfe;
  font-size: 19px;
  line-height: 1.65;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.cta-section__btn {
  min-width: 250px;
  padding: 18px 34px;
  border-radius: 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 16px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.cta-section__btn--primary {
  background: #fbbf24;
  color: #1e3a8a;
}

.cta-section__btn--primary:hover {
  background: #fcd34d;
  transform: translateY(-2px);
}

.cta-section__btn--outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-section__btn--outline:hover {
  background: #ffffff;
  color: #1e3a8a;
  transform: translateY(-2px);
}

.cta-section__btn-icon {
  font-size: 18px;
  line-height: 1;
}

/* Tablet */

@media (max-width: 991px) {
  .cta-section {
    padding: 78px 0;
  }

  .cta-section__title {
    font-size: 44px;
  }

  .cta-section__description {
    font-size: 17px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .cta-section {
    padding: 64px 0;
  }

  .cta-section__container {
    padding: 0 24px;
  }

  .cta-section__eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
  }

  .cta-section__title {
    font-size: 34px;
    line-height: 1.12;
  }

  .cta-section__description {
    margin-bottom: 32px;
    font-size: 15px;
  }

  .cta-section__actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-section__btn {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .cta-section__container {
    padding: 0 18px;
  }

  .cta-section__title {
    font-size: 30px;
  }
}

/* Page Hero */

.page-hero {
  position: relative;
  overflow: hidden;

  padding-top: var(--header-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero__image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(30, 58, 138, 0.96) 0%,
    rgba(30, 58, 138, 0.88) 48%,
    rgba(37, 99, 235, 0.82) 100%
  );
}

.page-hero__container {
  position: relative;
  z-index: 2;

  max-width: var(--container);
  margin: 0 auto;
  padding: 86px 32px 92px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 24px;

  color: #bfdbfe;
  font-size: 14px;
  line-height: 1;
}

.page-hero__breadcrumb a {
  color: #bfdbfe;
  transition: color 0.25s ease;
}

.page-hero__breadcrumb a:hover {
  color: #ffffff;
}

.page-hero__breadcrumb span:last-child {
  color: #ffffff;
  font-weight: 600;
}

.page-hero__breadcrumb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #bfdbfe;
  font-size: 20px;
  line-height: 1;
}

.page-hero__title {
  margin: 0 0 18px;

  color: #ffffff;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

.page-hero__description {
  max-width: 720px;
  margin: 0;

  color: #bfdbfe;
  font-size: 19px;
  line-height: 1.65;
}

/* Tablet */

@media (max-width: 991px) {
  .page-hero__container {
    padding: 76px 28px 82px;
  }

  .page-hero__title {
    font-size: 46px;
  }

  .page-hero__description {
    font-size: 17px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .page-hero__container {
    padding: 62px 24px 68px;
  }

  .page-hero__breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .page-hero__title {
    font-size: 36px;
  }

  .page-hero__description {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .page-hero__container {
    padding: 56px 18px 62px;
  }

  .page-hero__title {
    font-size: 32px;
  }
}


/* Services Grid Page */

.services-grid-section {
  padding: 86px 0;
  background: #f8fafc;
}

.services-grid-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.services-grid-section__header {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.services-grid-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-grid-section__title {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
}

.services-grid-section__description {
  max-width: 640px;
  margin: 0 auto;

  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

/* Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.services-grid-card {
  overflow: hidden;

  border: 1px solid #e5e7eb;
  border-radius: 10px;

  background: #ffffff;

  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.services-grid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 36px rgba(15, 36, 96, 0.09);
}

.services-grid-card__image {
  position: relative;
  height: 208px;
  overflow: hidden;
}

.services-grid-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;

  transition: transform 0.5s ease;
}

.services-grid-card:hover .services-grid-card__image img {
  transform: scale(1.05);
}

.services-grid-card__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(30, 58, 138, 0.6),
    transparent
  );
}

.services-grid-card__icon {
  position: absolute;
  left: 20px;
  bottom: 14px;

  width: 42px;
  height: 42px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fbbf24;
  color: #1e3a8a;

  font-size: 20px;
  font-weight: 800;
}

.services-grid-card__body {
  padding: 28px 24px 26px;
}

.services-grid-card__body h3 {
  margin: 0 0 14px;

  color: #1e3a8a;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;

  transition: color 0.25s ease;
}

.services-grid-card:hover .services-grid-card__body h3 {
  color: #2563eb;
}

.services-grid-card__body p {
  margin: 0 0 20px;

  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.services-grid-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;

  transition: gap 0.25s ease, color 0.25s ease;
}

.services-grid-card__body a:hover {
  gap: 8px;
  color: #1e3a8a;
}

/* Tablet */

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

@media (max-width: 991px) {
  .services-grid-section {
    padding: 72px 0;
  }

  .services-grid-section__title {
    font-size: 36px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .services-grid-section {
    padding: 56px 0;
  }

  .services-grid-section__container {
    padding: 0 24px;
  }

  .services-grid-section__header {
    margin-bottom: 40px;
  }

  .services-grid-section__title {
    font-size: 30px;
  }

  .services-grid-section__description {
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid-card__image {
    height: 200px;
  }

  .services-grid-card__body {
    padding: 26px 22px 24px;
  }
}

@media (max-width: 575px) {
  .services-grid-section__container {
    padding: 0 18px;
  }

  .services-grid-section__title {
    font-size: 28px;
  }
}


/* Blog Grid */

.blog-grid-section {
  padding: 64px 0;
  background: #f9fafb;
}

.blog-grid-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.blog-card {
  display: block;
  overflow: hidden;

  border-radius: 10px;
  background: #ffffff;

  text-align: left;
  color: inherit;

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 36, 96, 0.1);
}

.blog-card__image {
  width: 100%;
  height: 192px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;

  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 22px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 10px;

  color: #9ca3af;
  font-size: 12px;
}

.blog-card__meta span {
  color: #fbbf24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blog-card__meta time,
.blog-card__meta small {
  color: #9ca3af;
  font-size: 12px;
}

.blog-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  margin: 0 0 10px;

  color: #1e3a8a;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;

  transition: color 0.25s ease;
}

.blog-card:hover h3 {
  color: #2563eb;
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  margin: 0 0 14px;

  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.blog-card strong {
  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;

  transition: color 0.25s ease;
}

.blog-card:hover strong {
  color: #d97706;
}

/* Tablet */

@media (max-width: 1199px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .blog-grid-section {
    padding: 56px 0;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .blog-grid-section {
    padding: 48px 0;
  }

  .blog-grid-section__container {
    padding: 0 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card__image {
    height: 190px;
  }

  .blog-card__body {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .blog-grid-section__container {
    padding: 0 18px;
  }
}

/* Single Blog Hero */

.single-blog-hero {
  position: relative;
  overflow: hidden;

  padding-top: var(--header-height);
}

.single-blog-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.single-blog-hero__image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;
}

.single-blog-hero__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(30, 58, 138, 0.9) 0%,
    rgba(30, 58, 138, 0.8) 48%,
    rgba(30, 58, 138, 0.95) 100%
  );
}

.single-blog-hero__container {
  position: relative;
  z-index: 2;

  max-width: var(--container);
  margin: 0 auto;

  padding: 72px 32px 92px;
}

/* Breadcrumb */

.single-blog-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 26px;

  color: #bfdbfe;
  font-size: 14px;
  line-height: 1;
}

.single-blog-hero__breadcrumb a {
  color: #bfdbfe;

  transition: color 0.25s ease;
}

.single-blog-hero__breadcrumb a:hover {
  color: #ffffff;
}

.single-blog-hero__breadcrumb-icon {
  color: #bfdbfe;
  font-size: 18px;
}

.single-blog-hero__breadcrumb-current {
  max-width: 420px;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  color: #ffffff;
  font-weight: 600;
}

/* Category */

.single-blog-hero__category {
  display: inline-block;

  margin-bottom: 22px;
  padding: 8px 18px;

  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 999px;

  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Title */

.single-blog-hero__title {
  max-width: 980px;
  margin: 0 0 34px;

  color: #ffffff;

  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Meta */

.single-blog-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;

  color: #bfdbfe;
  font-size: 14px;
}

.single-blog-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single-blog-hero__meta-icon {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fbbf24;
  font-size: 15px;
}

.single-blog-hero__meta-highlight {
  color: #ffffff;
  font-weight: 700;
}

/* Tablet */

@media (max-width: 991px) {
  .single-blog-hero__container {
    padding: 66px 28px 82px;
  }

  .single-blog-hero__title {
    font-size: 46px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .single-blog-hero__container {
    padding: 56px 24px 68px;
  }

  .single-blog-hero__breadcrumb {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .single-blog-hero__breadcrumb-current {
    max-width: 180px;
  }

  .single-blog-hero__category {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .single-blog-hero__title {
    margin-bottom: 28px;

    font-size: 36px;
    line-height: 1.12;
  }

  .single-blog-hero__meta {
    gap: 16px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .single-blog-hero__container {
    padding: 52px 18px 62px;
  }

  .single-blog-hero__title {
    font-size: 31px;
  }

  .single-blog-hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Single Post Content */

.single-post-section {
  padding: 64px 0;
  background: #ffffff;
}

.single-post-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.single-post-main {
  min-width: 0;
}

/* Author */

.single-post-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  margin-bottom: 34px;
  padding-bottom: 24px;

  border-bottom: 1px solid #f3f4f6;

  color: #4b5563;
  font-size: 14px;
}

.single-post-author span:first-child {
  color: #1e3a8a;
  font-weight: 800;
}

.single-post-author small {
  color: #9ca3af;
}

/* WordPress content base */

.entry-content {
  color: #374151;
  font-size: 16px;
  line-height: 1.85;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content p {
  margin: 0 0 24px;
}

.entry-content h2 {
  margin: 38px 0 18px;

  color: #1e3a8a;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.entry-content h3 {
  margin: 32px 0 16px;

  color: #1e3a8a;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 26px;
  padding-left: 22px;
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content a {
  color: #2563eb;
  font-weight: 700;
}

.entry-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;

  border-left: 4px solid #fbbf24;
  border-radius: 8px;
  background: #f8fafc;

  color: #1e3a8a;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

/* WordPress image */

.entry-content .wp-block-image {
  margin: 36px 0;
}

.entry-content .wp-block-image img {
  width: 100%;
  height: auto;

  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
}

.entry-content .wp-block-image figcaption {
  margin-top: 10px;

  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}

/* YouTube / embeds */

.entry-content .wp-block-embed {
  margin: 36px 0;
}

.entry-content .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;

  background: #0f2460;
}

.entry-content .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  border: 0;
}

/* Share */

.single-post-share {
  margin-top: 42px;
  padding-top: 28px;

  border-top: 1px solid #f3f4f6;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.single-post-share > span {
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 800;
}

.single-post-share__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-post-share__links a {
  width: 34px;
  height: 34px;
  border-radius: 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f3f4f6;
  color: #4b5563;

  font-size: 13px;
  font-weight: 800;

  transition: all 0.25s ease;
}

.single-post-share__links a:hover {
  background: #1e3a8a;
  color: #ffffff;
}

/* Sidebar */

.single-post-sidebar {
  width: 100%;
}

.single-post-sidebar__title {
  margin: 0 0 26px;
  padding-bottom: 12px;

  border-bottom: 2px solid #fbbf24;

  color: #1e3a8a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.related-post-card {
  display: block;
  color: inherit;
}

.related-post-card__image {
  width: 100%;
  height: 160px;
  margin-bottom: 14px;

  overflow: hidden;
  border-radius: 10px;
}

.related-post-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;

  transition: transform 0.35s ease;
}

.related-post-card:hover .related-post-card__image img {
  transform: scale(1.05);
}

.related-post-card h4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  margin: 0 0 8px;

  color: #1e3a8a;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;

  transition: color 0.25s ease;
}

.related-post-card:hover h4 {
  color: #2563eb;
}

.related-post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  margin: 0 0 10px;

  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.related-post-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 8px;

  color: #9ca3af;
  font-size: 12px;
}

.related-post-card strong {
  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;

  transition: color 0.25s ease;
}

.related-post-card:hover strong {
  color: #d97706;
}

/* Tablet */

@media (max-width: 991px) {
  .single-post-section {
    padding: 56px 0;
  }

  .single-post-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .single-post-sidebar {
    max-width: 100%;
  }

  .related-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .related-post-card__image {
    height: 140px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .single-post-section {
    padding: 46px 0;
  }

  .single-post-section__container {
    padding: 0 24px;
  }

  .single-post-author {
    margin-bottom: 28px;
    padding-bottom: 20px;
    font-size: 13px;
  }

  .entry-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .entry-content h2 {
    font-size: 25px;
  }

  .entry-content h3 {
    font-size: 21px;
  }

  .related-posts {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .related-post-card__image {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .single-post-section__container {
    padding: 0 18px;
  }
}


/* Contact Page */

.contact-page-section {
  padding: 86px 0;
  background: #ffffff;
}

.contact-page-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Info cards */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  margin-bottom: 72px;
}

.contact-info-card {
  padding: 26px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 36, 96, 0.08);
}

.contact-info-card--blue {
  background: #eff6ff;
}

.contact-info-card--green {
  background: #f0fdf4;
}

.contact-info-card--yellow {
  background: #fffbeb;
}

.contact-info-card--rose {
  background: #fff1f2;
}

.contact-info-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #2563eb;

  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(15, 36, 96, 0.08);
}

.contact-info-card--green .contact-info-card__icon {
  color: #16a34a;
}

.contact-info-card--yellow .contact-info-card__icon {
  color: #d97706;
}

.contact-info-card--rose .contact-info-card__icon {
  color: #e11d48;
}

.contact-info-card h3 {
  margin: 0 0 10px;

  color: #1e3a8a;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.contact-info-card p {
  margin: 0 0 4px;

  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

/* Main layout */

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-page-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-page-section__title {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-page-section__description {
  margin: 0 0 34px;

  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

/* Form */

.contact-page-form-box {
  padding: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  background: #f8fafc;
}

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

.contact-page-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-page-form__field label {
  display: block;
  margin-bottom: 8px;

  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
}

.contact-page-form__field input,
.contact-page-form__field select,
.contact-page-form__field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;

  padding: 12px 14px;

  background: #ffffff;
  color: #374151;

  font-family: inherit;
  font-size: 14px;
  outline: none;

  transition: border-color 0.25s ease;
}

.contact-page-form__field textarea {
  min-height: 116px;
  resize: vertical;
}

.contact-page-form__field input:focus,
.contact-page-form__field select:focus,
.contact-page-form__field textarea:focus {
  border-color: #2563eb;
}

.contact-page-form__button {
  width: fit-content;
  border: 0;
  border-radius: 6px;

  padding: 14px 28px;

  background: #1e3a8a;
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;

  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-page-form__button:hover {
  background: #2563eb;
}

/* Map */

.contact-page-map {
  height: 360px;
  margin-bottom: 32px;

  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.contact-page-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Social */

.contact-social-box {
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  background: #f8fafc;
}

.contact-social-box h3 {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 15px;
  font-weight: 800;
}

.contact-social-box__links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-social-box__links a {
  width: 42px;
  height: 42px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1e3a8a;
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;

  transition: all 0.25s ease;
}

.contact-social-box__links a:hover {
  background: #fbbf24;
  color: #1e3a8a;
}

.contact-social-box p {
  margin: 0;

  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
}

/* Tablet */

@media (max-width: 1199px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-layout {
    gap: 44px;
  }
}

@media (max-width: 991px) {
  .contact-page-section {
    padding: 72px 0;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .contact-page-section {
    padding: 56px 0;
  }

  .contact-page-section__container {
    padding: 0 24px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 52px;
  }

  .contact-page-section__title {
    font-size: 29px;
  }

  .contact-page-form-box {
    padding: 24px;
  }

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

  .contact-page-form__button {
    width: 100%;
  }

  .contact-page-map {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .contact-page-section__container {
    padding: 0 18px;
  }

  .contact-page-form-box,
  .contact-social-box {
    padding: 22px;
  }
}

/* Privacy Page */

.privacy-section {
  padding: 72px 0;
  background: #ffffff;
}

.privacy-section__container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.privacy-content {
  width: 100%;
}

/* Reutiliza estilos WordPress del single */
.privacy-content.entry-content {
  color: #374151;
  font-size: 16px;
  line-height: 1.85;
}

.privacy-content.entry-content p {
  margin: 0 0 24px;
}

.privacy-content.entry-content h2 {
  margin: 38px 0 18px;

  color: #1e3a8a;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.privacy-content.entry-content a {
  color: #2563eb;
  font-weight: 800;
}

.privacy-content.entry-content a:hover {
  color: #1e3a8a;
}

/* Mobile */

@media (max-width: 767px) {
  .privacy-section {
    padding: 52px 0;
  }

  .privacy-section__container {
    padding: 0 24px;
  }

  .privacy-content.entry-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .privacy-content.entry-content h2 {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .privacy-section__container {
    padding: 0 18px;
  }
}


.entry-content .serviruesta-content-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
}

.entry-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.entry-content .wp-block-gallery figure {
  margin: 0;
}

.entry-content .wp-block-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.entry-content .wp-block-embed__wrapper,
.entry-content .wp-block-embed iframe {
  width: 100%;
}

.entry-content .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}

.entry-content .wp-block-embed iframe {
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .entry-content .wp-block-gallery {
    grid-template-columns: 1fr;
  }

  .entry-content .wp-block-gallery img {
    height: auto;
  }
}


/* WordPress image with caption */

.entry-content .wp-caption {
  width: 100% !important;
  max-width: 100%;
  margin: 36px 0;
}

.entry-content .wp-caption img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
}

.entry-content .wp-caption-text {
  margin: 10px 0 0;

  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}

.entry-content .alignnone,
.entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-content .alignleft {
  float: left;
  max-width: 48%;
  margin: 8px 28px 20px 0;
}

.entry-content .alignright {
  float: right;
  max-width: 48%;
  margin: 8px 0 20px 28px;
}

.entry-content::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 767px) {
  .entry-content .alignleft,
  .entry-content .alignright {
    float: none;
    max-width: 100%;
    margin: 28px 0;
  }
}
.entry-content .wp-caption {
  width: 100% !important;
  max-width: 100% !important;
  margin: 36px 0 !important;
}




/* Desktop service section*/

.services-section {
  display: block;
}

.services-slider-section {
  display: none;
}

/* Mobile */

@media (max-width: 767px) {

  .services-section {
    display: none;
  }

  .services-slider-section {
    display: block;
  }

}

/* Sectors */

.sectors-section {
  padding: 86px 0;
  background: #ffffff;
}

.sectors-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.sectors-section__header {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}

.sectors-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sectors-section__title {
  margin: 0 0 18px;

  color: #1e3a8a;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
}

.sectors-section__description {
  max-width: 620px;
  margin: 0 auto;

  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

/* Grid desktop */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */

.sector-card {
  position: relative;
  overflow: hidden;

  height: 208px;
  border-radius: 10px;

  background: #1e3a8a;
  cursor: default;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 36, 96, 0.16);
}

.sector-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sector-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;

  transition: transform 0.5s ease;
}

.sector-card:hover .sector-card__image img {
  transform: scale(1.05);
}

.sector-card__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(30, 58, 138, 0.82) 0%,
    rgba(30, 58, 138, 0.35) 52%,
    rgba(30, 58, 138, 0.02) 100%
  );
}

.sector-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;
  padding: 20px;
}

.sector-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 10px;
}

.sector-card__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;

  border-radius: 7px;
  background: #fbbf24;
  color: #1e3a8a;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  font-weight: 800;
}

.sector-card h3 {
  margin: 0;

  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.sector-card p {
  margin: 0;

  color: #bfdbfe;
  font-size: 13px;
  line-height: 1.55;
}

/* Tablet */

@media (max-width: 991px) {
  .sectors-section {
    padding: 72px 0;
  }

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

  .sectors-section__title {
    font-size: 36px;
  }
}

/* Mobile slider */

@media (max-width: 767px) {
  .sectors-section {
    padding: 56px 0;
    overflow: hidden;
  }

  .sectors-section__container {
    padding: 0 24px;
  }

  .sectors-section__header {
    margin-bottom: 38px;
  }

  .sectors-section__title {
    font-size: 30px;
  }

  .sectors-section__description {
    font-size: 15px;
  }

  .sectors-grid {
    display: flex;
    gap: 18px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    margin: 0 -24px;
    padding: 0 24px 8px;
  }

  .sectors-grid::-webkit-scrollbar {
    display: none;
  }

  .sector-card {
    width: 84%;
    min-width: 84%;
    height: 230px;

    scroll-snap-align: start;
  }
}

@media (max-width: 575px) {
  .sectors-section__container {
    padding: 0 18px;
  }

  .sectors-grid {
    margin: 0 -18px;
    padding: 0 18px 8px;
  }

  .sector-card {
    width: 88%;
    min-width: 88%;
  }
}
/* Map Image */

.contact-page-map {
  position: relative;
  overflow: hidden;

  min-height: 420px;

  border-radius: 18px;
}

.contact-page-map__image {
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;

  object-fit: cover;
  object-position: center;

  transition: transform 0.6s ease;
}

.contact-page-map:hover .contact-page-map__image {
  transform: scale(1.05);
}

.contact-page-map__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.15) 0%,
      rgba(15, 23, 42, 0.72) 100%
    );
}

.contact-page-map__content {
  position: absolute;
  left: 34px;
  bottom: 34px;

  z-index: 2;
}

.contact-page-map__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0 14px;

  border-radius: 999px;

  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);

  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 14px;
}

.contact-page-map__title {
  margin: 0 0 10px;

  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
}

.contact-page-map__text {
  margin: 0 0 22px;

  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.7;
}

.contact-page-map__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 22px;

  border-radius: 8px;

  background: #fbbf24;
  color: #1e3a8a;

  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.contact-page-map__btn:hover {
  transform: translateY(-2px);
  background: #ffd24d;
}

/* Mobile */

@media (max-width: 767px) {

  .contact-page-map {
    min-height: 340px;
  }

  .contact-page-map__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .contact-page-map__title {
    font-size: 28px;
  }

}


/* Certification */

.certification-section {
  padding: 86px 0;
  background: #f8fafc;
}

.certification-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.certification-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;

  padding: 54px;
  border-radius: 22px;

  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  box-shadow: 0 24px 60px rgba(15, 36, 96, 0.18);
}

.certification-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.certification-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  left: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(251,191,36,0.16);
}

.certification-card__content,
.certification-card__media {
  position: relative;
  z-index: 2;
}

.certification-card__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;

  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: 999px;

  background: rgba(251, 191, 36, 0.16);
  color: #fbbf24;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.certification-card__title {
  max-width: 640px;
  margin: 0 0 22px;

  color: #ffffff;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

.certification-card__description {
  max-width: 560px;
  margin: 0 0 30px;

  color: #bfdbfe;
  font-size: 17px;
  line-height: 1.75;
}

.certification-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.certification-card__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;

  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
}

.certification-card__media {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f2460;
}

.certification-card__image {
  width: 100%;
  height: 100%;
  min-height: 360px;

  object-fit: cover;
  object-position: center;

  transition: transform 0.6s ease;
}

.certification-card:hover .certification-card__image {
  transform: scale(1.05);
}

.certification-card__seal {
  position: absolute;
  left: 24px;
  bottom: 24px;

  max-width: 230px;
  padding: 18px 20px;
  border-radius: 14px;

  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);

  box-shadow: 0 14px 34px rgba(15, 36, 96, 0.18);
}

.certification-card__seal strong {
  display: block;
  margin-bottom: 4px;

  color: #1e3a8a;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.certification-card__seal span {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

/* Tablet */

@media (max-width: 991px) {
  .certification-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 42px;
  }

  .certification-card__title {
    font-size: 36px;
  }

  .certification-card__media {
    min-height: 320px;
  }

  .certification-card__image {
    min-height: 320px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .certification-section {
    padding: 56px 0;
  }

  .certification-section__container {
    padding: 0 24px;
  }

  .certification-card {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .certification-card__title {
    font-size: 29px;
    line-height: 1.14;
  }

  .certification-card__description {
    font-size: 15px;
  }

  .certification-card__badges {
    gap: 9px;
  }

  .certification-card__badges span {
    font-size: 12px;
  }

  .certification-card__media {
    min-height: 260px;
    border-radius: 14px;
  }

  .certification-card__image {
    min-height: 260px;
  }

  .certification-card__seal {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (max-width: 575px) {
  .certification-section__container {
    padding: 0 18px;
  }
}


/* SIG */

.sig-section {
  padding: 86px 0;
  background: #f8fafc;
}

.sig-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.sig-section__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.sig-section__eyebrow {
  display: inline-block;
  margin-bottom: 16px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sig-section__title {
  margin: 0 0 26px;

  color: #1e3a8a;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

.sig-section__description {
  margin: 0 0 20px;

  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.sig-section__description strong {
  color: #1e3a8a;
  font-weight: 800;
}

/* Panel */

.sig-section__panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sig-item {
  position: relative;
  overflow: hidden;

  min-height: 210px;
  padding: 28px 24px;
  border-radius: 16px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sig-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 36, 96, 0.1);
}

.sig-item::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;

  width: 96px;
  height: 96px;
  border-radius: 50%;

  background: rgba(37, 99, 235, 0.08);
}

.sig-item__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(30, 58, 138, 0.08);
  color: #2563eb;

  font-size: 20px;
  font-weight: 800;
}

.sig-item h3 {
  margin: 0 0 12px;

  color: #1e3a8a;
  font-size: 18px;
  font-weight: 800;
}

.sig-item p {
  margin: 0;

  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

/* Variants */

.sig-item--yellow .sig-item__icon {
  background: rgba(251, 191, 36, 0.18);
  color: #d97706;
}

.sig-item--green .sig-item__icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.sig-item--dark {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

.sig-item--dark h3,
.sig-item--dark p {
  color: #ffffff;
}

.sig-item--dark p {
  opacity: 0.82;
}

.sig-item--dark .sig-item__icon {
  background: rgba(255,255,255,0.14);
  color: #fbbf24;
}

.sig-item--dark::after {
  background: rgba(255,255,255,0.08);
}

/* Tablet */

@media (max-width: 991px) {
  .sig-section {
    padding: 72px 0;
  }

  .sig-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sig-section__title {
    font-size: 36px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .sig-section {
    padding: 56px 0;
  }

  .sig-section__container {
    padding: 0 24px;
  }

  .sig-section__title {
    font-size: 30px;
  }

  .sig-section__description {
    font-size: 15px;
  }

  .sig-section__panel {
    grid-template-columns: 1fr;
  }

  .sig-item {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .sig-section__container {
    padding: 0 18px;
  }
}

/* Ethics */

.ethics-section {
  padding: 64px 0;
  background: #f8fafc;
}

.ethics-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.ethics-card {
  display: flex;
  align-items: center;
  gap: 34px;

  padding: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;

  background: #ffffff;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ethics-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 36, 96, 0.08);
}

.ethics-card__icon {
  width: 82px;
  height: 82px;
  min-width: 82px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;

  font-size: 38px;
  font-weight: 800;
}

.ethics-card__content {
  flex: 1;
}

.ethics-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ethics-card__title {
  margin: 0 0 14px;

  color: #1e3a8a;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

.ethics-card__description {
  max-width: 760px;
  margin: 0;

  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}

.ethics-card__action {
  min-width: 220px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.ethics-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;

  background: #1e3a8a;
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;

  transition: background 0.25s ease, transform 0.25s ease;
}

.ethics-card__btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.ethics-card__btn span {
  font-size: 15px;
  line-height: 1;
}

.ethics-card__email {
  display: block;
  margin-top: 10px;

  color: #94a3b8;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

/* Tablet */

@media (max-width: 991px) {
  .ethics-section {
    padding: 56px 0;
  }

  .ethics-card {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 36px 30px;
  }

  .ethics-card__description {
    max-width: 100%;
  }

  .ethics-card__action {
    min-width: 0;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .ethics-section {
    padding: 46px 0;
  }

  .ethics-section__container {
    padding: 0 24px;
  }

  .ethics-card {
    padding: 30px 22px;
  }

  .ethics-card__icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    font-size: 32px;
  }

  .ethics-card__eyebrow {
    font-size: 12px;
  }

  .ethics-card__title {
    font-size: 28px;
  }

  .ethics-card__description {
    font-size: 15px;
  }

  .ethics-card__btn {
    width: 100%;
  }

  .ethics-card__action {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .ethics-section__container {
    padding: 0 18px;
  }
}


/* Tenders */

.tenders-section {
  padding: 86px 0;
  background: #ffffff;
}

.tenders-section__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.tenders-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;

  padding: 54px;
  border-radius: 22px;

  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.tenders-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;

  width: 240px;
  height: 240px;
  border-radius: 50%;

  background: rgba(37, 99, 235, 0.08);
}

.tenders-card::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;

  width: 180px;
  height: 180px;
  border-radius: 50%;

  background: rgba(251, 191, 36, 0.18);
}

.tenders-card__content,
.tenders-card__lists {
  position: relative;
  z-index: 2;
}

.tenders-card__eyebrow {
  display: inline-block;
  margin-bottom: 16px;

  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tenders-card__title {
  margin: 0 0 22px;

  color: #1e3a8a;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}

.tenders-card__description {
  margin: 0 0 28px;

  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.tenders-card__highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;
  border-radius: 12px;

  background: #ffffff;
  color: #1e3a8a;

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 12px 28px rgba(15, 36, 96, 0.08);
}

.tenders-card__highlight span {
  width: 28px;
  height: 28px;
  min-width: 28px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fbbf24;
  color: #1e3a8a;

  font-size: 15px;
  font-weight: 900;
}

/* Lists */

.tenders-card__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tenders-list {
  min-height: 300px;
  padding: 28px 24px;
  border-radius: 18px;

  background: #ffffff;
  border: 1px solid #e5e7eb;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tenders-list:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 36, 96, 0.1);
}

.tenders-list--blue {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

.tenders-list__head {
  margin-bottom: 22px;
}

.tenders-list__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(30, 58, 138, 0.08);
  color: #2563eb;

  font-size: 20px;
  font-weight: 800;
}

.tenders-list--blue .tenders-list__icon {
  background: rgba(255,255,255,0.14);
  color: #fbbf24;
}

.tenders-list h3 {
  margin: 0;

  color: #1e3a8a;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.tenders-list--blue h3 {
  color: #ffffff;
}

.tenders-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tenders-list li {
  position: relative;

  padding-left: 24px;
  margin-bottom: 14px;

  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.tenders-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;

  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #fbbf24;
}

.tenders-list--blue li {
  color: #bfdbfe;
}

/* Tablet */

@media (max-width: 991px) {
  .tenders-section {
    padding: 72px 0;
  }

  .tenders-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 42px;
  }

  .tenders-card__title {
    font-size: 36px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .tenders-section {
    padding: 56px 0;
  }

  .tenders-section__container {
    padding: 0 24px;
  }

  .tenders-card {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .tenders-card__title {
    font-size: 30px;
  }

  .tenders-card__description {
    font-size: 15px;
  }

  .tenders-card__highlight {
    align-items: flex-start;
    font-size: 13px;
  }

  .tenders-card__lists {
    grid-template-columns: 1fr;
  }

  .tenders-list {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .tenders-section__container {
    padding: 0 18px;
  }
}

.client-card__logo {
  width: 100%;
  max-width: 390px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__link {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

/* Service Gallery Modal */

.service-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
}

.service-gallery-modal.is-active {
  display: block;
}

.service-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.86);
}

.service-gallery-modal__dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);

  width: min(1040px, calc(100% - 40px));
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.service-gallery-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;

  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;

  background: rgba(255,255,255,0.95);
  color: #1e3a8a;

  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.service-gallery-modal__slider {
  position: relative;
  height: 620px;
  background: #0f2460;
}

.service-gallery-modal__slide {
  position: absolute;
  inset: 0;
  margin: 0;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.45s ease;
}

.service-gallery-modal__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.service-gallery-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-gallery-modal__slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 22px 90px 24px 28px;

  background: linear-gradient(to top, rgba(15,23,42,0.82), transparent);
  color: #ffffff;

  font-size: 15px;
  line-height: 1.6;
}

.service-gallery-modal__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;

  background: rgba(255,255,255,0.9);
  color: #1e3a8a;

  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.service-gallery-modal__arrow--prev {
  left: 18px;
}

.service-gallery-modal__arrow--next {
  right: 18px;
}

.service-gallery-modal__footer {
  padding: 16px 24px;
  background: #ffffff;
  text-align: center;
}

.service-gallery-modal__counter {
  color: #1e3a8a;
  font-size: 15px;
  font-weight: 800;
}

/* Mobile */

@media (max-width: 767px) {
  .service-gallery-modal__dialog {
    width: calc(100% - 24px);
    border-radius: 14px;
  }

  .service-gallery-modal__slider {
    height: 420px;
  }

  .service-gallery-modal__slide figcaption {
    padding: 18px 22px;
    font-size: 13px;
  }

  .service-gallery-modal__arrow {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }

  .service-gallery-modal__arrow--prev {
    left: 10px;
  }

  .service-gallery-modal__arrow--next {
    right: 10px;
  }
}

.pillar-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}