@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@400;600;700&display=swap");

:root {
    --font-family: "Manrope", sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color: #0f172a;
    background-color: #f5f7fb;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: #f5f7fb;
    font-family: var(--font-family);
}

h1,
h2,
h3,
h4 {
    letter-spacing: -0.01em;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

p {
    color: inherit;
    margin-bottom: 0;
}

#root {
    width: 100%;
}

a {
    text-decoration: none;
}

:root {
  --brand-900: #0b1f4b;
  --brand-800: #123078;
  --brand-700: #1d4ed8;
  --brand-600: #2563eb;
  --brand-500: #3b82f6;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-muted: #eef2ff;
  --line: #e2e8f0;
  --accent: #f97316;
  
  --bg-image-map-homepage: url(/img/web_v2/home/map.png);
  --bg-logo-pill: url(/img/web_v2/home/fiotec-logo_final-2.png);
  --bg-image-project-card: url(/img/web_v2/home/project-background.png);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.page {
  background: var(--surface-soft);
  color: var(--ink-900);
  width: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 24px;
}

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

@media (max-width: 720px) {
    .container {
        padding: 0 16px;
    }
}
.header_bg {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.site-header {
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle img {
    width: 32px;
    height: 32px;
    display: block;
}

.mobile-menu {
    display: none;
}

.top-bar {
    background: var(--brand-700);
    color: #fff;
    font-size: 0.82rem;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 24px;
}

.socials {
    display: flex;
    gap: 8px;
}

.social {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.7rem;
}

.social img {
    width: 18px;
    height: 18px;
    display: block;
}

.top-bar__contacts {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.contact-pill:hover {
    color: white;
}

.contact-pill img {
    width: 18px;
    height: 18px;
    display: block;
}

.nav-bar {
    background: var(--surface);
}

.nav-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 24px;
}
.lang-dropdown {
    position: relative;
}

.lang-menu {
    position: absolute;
    top: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    min-width: 110px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: 0.25s ease;
    min-height: 170px;
    display: flex;
    flex-direction: column;
}
.lang-dropdown:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-item:first-child {
    border: none;
}
.lang-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-top: 1px solid var(--Color-black_alpha-50, #00000005);
    flex: 1;
}

.lang-item img {
    width: 26px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0px 2px 2px 0px #0000002e;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo span:first-child {
    font-size: 1.4rem;
}

.logo__dot {
    width: 6px;
    height: 6px;
    background: var(--brand-600);
    border-radius: 999px;
    display: inline-block;
}

.logo__sub {
    font-size: 0.7rem;
    color: var(--ink-500);
    font-weight: 600;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lang-btn {
    border: 1px solid var(--line);
    background: transparent;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.caret {
    width: 6px;
    height: 6px;
    border-left: 2px solid var(--ink-700);
    border-bottom: 2px solid var(--ink-700);
    transform: rotate(-45deg);
    display: inline-block;
    margin-top: -2px;
}

.lang-btn img {
    display: block;
}

.lang-btn img:first-child {
    width: 26px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.caret-icon {
    width: 24px;
    height: 24px;
}

.primary-btn {
  background: linear-gradient(270deg, #1e4aaf 0%, #2470eb 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  width: fit-content;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
  font-size: 16px;
}

.primary-btn#google-map {
    background: linear-gradient(270deg, #1e4aaf 0%, #2470eb 100%);
    color: #fff;
    border: none;
    padding: 12px 22px;
    width: 185px;
    height: 60px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions .primary-btn {
  background: linear-gradient(120deg, #2470eb, #3b8ff6);
  border: 1px solid #93CCFD;
}

.btn-arrow {
  font-size: 24px;
  display: inline-flex;
}

.btn-arrow-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
    .nav-bar__inner {
        padding: 14px 20px;
    }
    .nav-links--desktop,
    .nav-actions--desktop,
    .top-bar--desktop {
        display: none;
    }

    .sidebar-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        background: var(--surface);
        border-top: 1px solid var(--line);
        padding: 8px 0 16px;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    }

    .mobile-menu > a,
    .mobile-menu > .nav-link-class {
        display: block;
        padding: 14px 24px;
        text-decoration: none;
        color: var(--ink-700);
        font-weight: 600;
        font-size: 1rem;
        border-bottom: 1px solid var(--line);
        transition:
            background 0.15s ease,
            color 0.15s ease;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:hover,
    .mobile-menu a.is-active {
        background: var(--surface-muted);
        color: var(--brand-700);
    }

    .mobile-menu__divider {
        height: 1px;
        background: var(--line);
        margin: 8px 24px;
    }

    .mobile-menu__socials {
        display: flex;
        gap: 14px;
        padding: 0px 24px 4px;
        align-items: center;
    }

    .mobile-social {
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
    }

    .mobile-social img {
        width: 22px;
        height: 22px;
        display: block;
        filter: brightness(0);
    }

    .mobile-menu__contacts {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 8px 24px 12px;
        font-size: 0.88rem;
        color: var(--ink-700);
    }

    .mobile-menu__contacts .contact-pill {
        color: var(--ink-700);
    }

    .mobile-menu__contacts .contact-pill img,
    .icon-dark {
        width: 16px;
        height: 16px;
        filter: brightness(0);
    }

    .mobile-menu__lang {
        padding: 12px 24px 16px;
    }
}

.ghost-btn {
    border: 1px solid rgba(30, 64, 175, 0.2);
    background: #fff;
    color: var(--brand-700);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
}

@media (max-width: 991.999px) {
  .logo img {
    height: 52px;
  }

  .nav-bar__inner {
    padding: 10px 20px
  }
}

@media (max-width: 766.999px) {
  .primary-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .btn-arrow-icon {
    width: 20px;
    height: 20px;
    }
}

@media (max-width: 479.999px) {
  .logo img {
    height: 32px;
  }
  .nav-bar__inner {
    padding: 10px 16px
  }
}

.hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 280px 0 280px;
  background: var(--surface);
}

.hero__orbit {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.1);
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.12),
        transparent 70%
    );
}

.hero__orbit--left {
    left: -180px;
    bottom: -200px;
}

.hero__orbit--right {
    right: -240px;
    top: -200px;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-600);
    font-weight: 600;
    font-size: 0.75rem;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  margin: 20px 0;
  color: #ffffff;
}

.hero h1.secondary-text {
    color: #60b0fa;
}

.hero__lead {
  text-align: justify;
  font-size: 16px;
  color: white;
  max-width: 520px;
  width: 100%;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.about__stats {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
    background: #eff7ff;
    box-shadow: inset 0px 4px 15px 0px #93ccfdb2;
    border-radius: 24px;
    padding: 32px 12px;
    text-align: center;
    width: 100%;
    max-width: 180px;
    height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.stat strong {
    font-size: 48px;
    color: #1d5bd8;
}

.stat span {
    font-weight: 600;
    color: #232325;
    font-size: 16px;
}

.hero__visual {
    display: grid;
    gap: 18px;
}

.hero-card {
    background: linear-gradient(
        150deg,
        rgba(37, 99, 235, 0.1),
        rgba(14, 116, 144, 0.12)
    );
    padding: 26px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.hero-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-700);
    font-weight: 600;
}

.hero-card h3 {
    margin: 10px 0 8px;
}

.hero-card__footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--ink-500);
    font-weight: 600;
}

.hero-grid {
    display: grid;
    gap: 14px;
}

.hero-grid__item {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.section-heading {
    text-align: center;
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.section-heading-left {
  text-align: left;
  display: grid;
  gap: 20px;
  margin-bottom: 44px;
}

.section-heading--split {
    grid-template-columns: 1fr 1fr;
    align-items: left;
}

.section-heading.section-heading--split {
  text-align: left;
  font-weight: 700;
  font-size: 48px;
  font-style: bold;
  gap: 24px;
  margin-bottom: 32px;
}
.section-heading.section-heading--split p {
    padding-top: 20px;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.section-heading-left h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}

.section-heading p {
    color: #0c0c0d;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 100%;
}

.logo-pill {
    background: #fff;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    font-weight: 600;
    color: var(--ink-500);
    justify-items: center;
}

.logo-slide {
    display: contents;
}

.slider-dots--mobile {
    display: none;
}
@media (max-width: 1280px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
}

.services {
  padding: 120px 0;
  background: #fafafa;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 70%);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card__content {
  padding: 20px 20px 24px 20px;
  display: grid;
  gap: 12px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--brand-700);
    font-weight: 600;
    padding: 0;
}

.projects {
  overflow: hidden;
  background: #fff;
  padding: 152px 0 140px;
}

.project-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.project-row::-webkit-scrollbar {
    display: none;
}

.project-card {
  padding: 28px 16px 24px;
  border: 1px solid #93ccfd;
  height: 100%; 
  width: 384px;
  max-width: calc(100vw - 48px);
  scroll-snap-align: start;
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;

}

.project-card__media {
  overflow: hidden;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-image: var(--bg-image-project-card);
}

.project-card::before {
  content: attr(data-number);
  position: absolute;
  top: -40px;
  left: 45px;
  background-color: #1d5bd8;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.project-card::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 128px;
  height: 8px;
  background-color: #1d5bd8;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #1d5bd8;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: transparent;
    color: #1d5bd8;
}

.slider-btn img {
    width: 100%;
    height: 100%;
    display: block;
}

.project-line {
    margin-bottom: 40px;
    border: 4px solid #1d5bd8;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    opacity: 1;
}

.project-card__media {
    position: relative;
    width: 100%;
    height: 222px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.project-card__body {
  padding-top: 24px;
  display: grid;
  gap: 8px;
}

.project-card__tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-700);
}

.team__inner {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.dot-indicators{
  display:flex;
  gap:8px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#BFDFFE; 
  cursor:pointer;
  transition:all 0.3s ease;
}

.dot.active{
  background:#1D5BD8;  
  transform:scale(1.2);
}

.quote-card {
  padding: 32px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(180deg, #bfdffe 0%, #eff7ff 100%);
  width: 100%;
  height: 100%;
}

.quote-content {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.quote-mark {
  width: 60px;
  height: 94.46px;
  font-size: 180px;
  color: #b2d1f7;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: start;
  margin-left: -15px;
  margin-top: -20px;
}

.quote-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 24px;
}

.avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--surface);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quote-author .author-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quote-author .author-position {
  font-size: 16px;
  font-weight: 500;
}

.author {
    display: flex;
    gap: 8px;
}

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

.quote-author strong {
    display: block;
}

@media (max-width: 479.999px) {
  .quote-author {
    gap: 12px;
  }
  .avatar {
    width: 44px;
    height: 44px;
  }
  .quote-author .author-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
  }
  .quote-author .author-position {
    font-size: 12px;
    font-weight: 400;
  }
}

.dot-indicators {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.5);
}

.dot.active {
    background: var(--brand-600);
}

.team__visual {
    position: relative;
    height: 420px;
}

.team-panel {
    position: absolute;
    right: 0;
    width: 70%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(
        160deg,
        rgba(59, 130, 246, 0.4),
        rgba(14, 116, 144, 0.2)
    );
}

.team-panel--secondary {
    width: 55%;
    height: 92%;
    right: 18%;
    top: 6%;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.testimonial__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.testimonial-image {
    height: 420px;
    border-radius: 28px;
    background: linear-gradient(
        140deg,
        rgba(59, 130, 246, 0.35),
        rgba(251, 146, 60, 0.3)
    );
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #FAFAFA;
  background: linear-gradient(
    282.24deg,
    rgba(230, 242, 254, 0.98) 0.32%,
    rgba(255, 255, 255, 0) 99.87%
  );
  border-image-source: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.6) 0%,
    #fafafa 100%
  );
  backdrop-filter: blur(2px);
  box-shadow: 0px 2px 8px 0px #0000001f;
  display: grid;
  gap: 24px;
}

.testimonial-card hr {
  border: none;
  border-top: 2px solid rgba(191, 223, 254, 1);
  margin: 16px 0;
}

.rating {
  display: flex;
  gap: 4px;
}

.rating img {
  width: 24px;
  height: 24px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-footer .author {
  gap: 12px;
  align-items: center;
}

.testimonial-footer .author .author-field {
  display: flex;
  flex-direction: column;
}

.testimonial-footer .author .author-name {
  font-size: 18px;
  margin-bottom: 2px;
}

.arrows button {
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #fff;
    border-radius: 999px;
    width: 36px;
    height: 36px;
}

.cta {
    padding: 40px 0;
    background-image: var(--bg-image-desktop);
}

.cta__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.cta h3 {
    margin: 0 0 8px;
}

.footer {
    background: #0b1739;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

.footer__about .logo {
    width: 124px;
    height: 100px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.6fr 0.8fr 0.5fr;
    gap: 28px;
}

.footer__links,
.footer__contact {
    display: grid;
    gap: 10px;
}

.footer__links a {
    color: #cbd5f5;
    text-decoration: none;
}

.footer__social {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.qr {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer__icons {
    display: flex;
    gap: 8px;
}

.footer__icons span {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffffff0f;
}

.footer__bottom {
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.7);
}

@media (max-width: 1024px) {
  .hero__inner,
  .team__inner,
  .testimonial__inner,
  .contact__panel {
    grid-template-columns: 1fr;
  }

    .section-heading--split {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .nav-links {
        gap: 14px;
    }

    .hero {
        padding: 100px 0 70px;
    }

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

.nav-links a.is-active {
    color: var(--brand-700);
    font-weight: 700;
}

.blog-page {
    background: #fff;
    color: #0c0c0d;
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

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

.blog-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.blog-hero__bg img:last-child {
    opacity: 0.75;
}

.blog-hero__inner {
    position: relative;
    z-index: 1;
}

.blog-hero__crumb {
    color: #2d2d2f;
    font-weight: 500;
    margin: 0 0 12px;
}

.blog-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin: 0;
}

.blog-listing {
    padding: 80px 0;
}

.blog-listing__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.blog-listing__posts {
    display: grid;
    gap: 24px;
}

.blog-card {
    border: 1px solid #e5e5e8;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 24px;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.blog-card__media {
    width: 360px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    display: grid;
    gap: 12px;
}

.blog-card__content h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #232325;
}

.blog-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #61636b;
    font-size: 0.9rem;
}

.blog-card__meta img {
    width: 24px;
    height: 24px;
}

.blog-card__content p {
    margin: 0;
    color: #61636b;
    line-height: 1.6;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-pagination button {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e5e5e8;
    background: #fff;
    color: #898995;
    font-weight: 600;
}

.blog-pagination .is-active {
    border-color: #1d5bd8;
    color: #1d5bd8;
}

.blog-sidebar {
    border: 1px solid #e5e5e8;
    border-radius: 20px;
    padding: 24px;
    background: #fff;
}

.blog-sidebar h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    color: #232325;
}

.blog-sidebar ul {
    margin: 0;
    padding-left: 20px;
    color: #232325;
    display: grid;
    gap: 12px;
    font-weight: 600;
}

.blog-contact {
    padding: 20px 0 120px;
}

.blog-contact__heading {
    max-width: 620px;
    display: grid;
    gap: 16px;
}

.blog-contact__heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #201c1c;
}

.blog-contact__heading h2 span {
    color: #1d5bd8;
}

.blog-contact__heading p {
    margin: 0;
    color: #232325;
}

.blog-contact__content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.blog-contact__form {
    border: 1px solid #ceced3;
    border-radius: 20px;
    padding: 32px;
    background: #fff;
    display: grid;
    gap: 20px;
}

.blog-field {
    border: 1px solid #ceced3;
    border-radius: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    gap: 10px;
    color: #7a7c85;
}

.blog-field select {
    border: none;
    background: transparent;
    font-size: 1rem;
    color: inherit;
    width: 100%;
    outline: none;
    appearance: none;
}

.blog-field img {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
}

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

.blog-contact__form input,
.blog-contact__form textarea {
    border: 1px solid #ceced3;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 1rem;
}

.blog-contact__form textarea {
    resize: none;
    height: 160px;
}

.blog-contact__form button {
    border: none;
    background: linear-gradient(120deg, #1e4aaf, #2470eb);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
}

.blog-contact__form button img {
    width: 20px;
    height: 20px;
}

.blog-contact__map {
    border-radius: 20px;
    overflow: hidden;
    height: 488px;
}

.blog-contact__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-cta {
    position: relative;
    overflow: hidden;
    padding: 38px 0;
    background: #99c4fc;
}

.blog-cta__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.blog-cta__bg img:last-child {
    width: 480px;
    height: auto;
    right: 120px;
    left: auto;
    top: -30px;
}

.blog-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-cta__content h2 {
    margin: 0 0 12px;
    font-size: 1.9rem;
    color: #1d5bd8;
}

.blog-cta__content p {
    margin: 0;
    color: #0c0c0d;
}

.blog-footer {
    background: #172954;
    color: #fff;
    padding: 120px 0;
}

.blog-footer__content {
    display: grid;
    grid-template-columns: 1.1fr 0.5fr 1fr 0.5fr;
    gap: 40px;
}

.blog-footer__about img {
    height: 90px;
    width: auto;
}

.blog-footer__about p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.blog-footer__links,
.blog-footer__contacts {
    display: grid;
    gap: 16px;
}

.blog-footer__links h3,
.blog-footer__contacts h3 {
    margin: 0;
    font-size: 1.4rem;
}

.blog-footer__links a {
    color: #fff;
    text-decoration: none;
}

.blog-footer__contacts div {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.blog-footer__contacts img {
    width: 24px;
    height: 24px;
}

.blog-footer__qr {
    display: grid;
    gap: 24px;
    justify-items: center;
}

.blog-footer__qr img {
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

.blog-footer__socials {
    display: flex;
    gap: 10px;
}

.blog-footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
}

.blog-footer__socials img {
    width: 24px;
    height: 24px;
}

.blog-detail-page {
    background: #fff;
    color: #0c0c0d;
}

.blog-detail-crumb {
    padding: 20px 0 10px;
}

.blog-detail-crumb p {
    margin: 0;
    color: #2d2d2f;
    font-weight: 500;
}

.blog-detail {
    padding: 10px 0 100px;
}

.blog-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.blog-detail__content {
    display: grid;
    gap: 24px;
}

.blog-detail__content h1 {
    margin: 0;
    font-size: clamp(1.8rem, 2.6vw, 2.1rem);
    line-height: 1.35;
    color: #232325;
}

.blog-detail__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #36373a;
    font-weight: 500;
}

.blog-detail__meta img {
    width: 24px;
    height: 24px;
}

.blog-detail__content p {
    margin: 0;
    color: #232325;
    line-height: 1.6;
}

.blog-detail__image {
    height: 416px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail__sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    display: grid;
    gap: 20px;
}

.blog-detail__sidebar h3 {
    margin: 0;
    font-size: 1.25rem;
}

.blog-detail__related {
    display: grid;
    gap: 12px;
}

.blog-detail__related-card {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.blog-detail__related-card img {
    width: 120px;
    height: 100px;
    border-radius: 5px;
    object-fit: cover;
    display: block;
}

.blog-detail__related-card span {
    display: block;
    font-size: 0.9rem;
    color: #7a7c85;
    margin-bottom: 6px;
}

.blog-detail__related-card strong {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    color: #232325;
    font-weight: 600;
}

.blog-detail-cta {
    position: relative;
    overflow: hidden;
    padding: 38px 0;
    background: #99c4fc;
}

.blog-detail-cta__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.blog-detail-cta__bg img:last-child {
    width: 480px;
    height: auto;
    right: 120px;
    left: auto;
    top: -30px;
}

.blog-detail-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-detail-cta__content h2 {
    margin: 0 0 12px;
    font-size: 1.9rem;
    color: #1d5bd8;
}

.blog-detail-cta__content p {
    margin: 0;
    color: #0c0c0d;
}

.blog-detail-footer {
    background: #172954;
    color: #fff;
    padding: 120px 0;
}

.blog-detail-footer__content {
    display: grid;
    grid-template-columns: 1.1fr 0.5fr 1fr 0.5fr;
    gap: 40px;
}

.blog-detail-footer__about img {
    height: 90px;
    width: auto;
}

.blog-detail-footer__about p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.blog-detail-footer__links,
.blog-detail-footer__contacts {
    display: grid;
    gap: 16px;
}

.blog-detail-footer__links h3,
.blog-detail-footer__contacts h3 {
    margin: 0;
    font-size: 1.4rem;
}

.blog-detail-footer__links a {
    color: #fff;
    text-decoration: none;
}

.blog-detail-footer__contacts div {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.blog-detail-footer__contacts img {
    width: 24px;
    height: 24px;
}

.blog-detail-footer__qr {
    display: grid;
    gap: 24px;
    justify-items: center;
}

.blog-detail-footer__qr img {
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

.blog-detail-footer__socials {
    display: flex;
    gap: 10px;
}

.blog-detail-footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
}

.blog-detail-footer__socials img {
    width: 24px;
    height: 24px;
}

.recruitment-form {
    border: 1px solid #e5e5e8;
    border-radius: 20px;
    padding: 32px;
    background: #fff;
    height: fit-content;
}

.recruitment-form__header {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
}

.recruitment-form__header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.recruitment-form__header p {
    margin: 0;
    color: #36373a;
}

.recruitment-form__fields {
    display: grid;
    gap: 16px;
}

.recruitment-form__fields input,
.recruitment-form__fields textarea {
    border: 1px solid #e5e5e8;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: "Manrope", sans-serif;
}

.recruitment-form__fields textarea {
    resize: none;
}

.recruitment-form__fields button {
    border: none;
    background: linear-gradient(120deg, #1e4aaf, #2470eb);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 16px;
}

.recruitment-form__fields img {
    width: 24px;
    height: 24px;
}

.recruitment-cta {
    position: relative;
    overflow: hidden;
    padding: 38px 0;
    background: #99c4fc;
}

.recruitment-cta__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.recruitment-cta__bg img:last-child {
    width: 480px;
    height: auto;
    right: 120px;
    left: auto;
    top: -30px;
}

.recruitment-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.recruitment-cta__content h2 {
    margin: 0 0 12px;
    font-size: 1.9rem;
    color: #1d5bd8;
}

.recruitment-cta__content p {
    margin: 0;
    color: #0c0c0d;
}

.recruitment-footer {
    background: #172954;
    color: #fff;
    padding: 120px 0;
}

.recruitment-footer__content {
    display: grid;
    grid-template-columns: 1.1fr 0.5fr 1fr 0.5fr;
    gap: 40px;
}

.recruitment-footer__about img {
    height: 90px;
    width: auto;
}

.recruitment-footer__about p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.recruitment-footer__links,
.recruitment-footer__contacts {
    display: grid;
    gap: 16px;
}

.recruitment-footer__links h3,
.recruitment-footer__contacts h3 {
    margin: 0;
    font-size: 1.4rem;
}

.recruitment-footer__links a {
    color: #fff;
    text-decoration: none;
}

.recruitment-footer__contacts div {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.recruitment-footer__contacts img {
    width: 24px;
    height: 24px;
}

.recruitment-footer__qr {
    display: grid;
    gap: 24px;
    justify-items: center;
}

.recruitment-footer__qr img {
    width: 160px;
    height: 160px;
    border-radius: 8px;
}

.recruitment-footer__socials {
    display: flex;
    gap: 10px;
}

.recruitment-footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
}

.recruitment-footer__socials img {
    width: 24px;
    height: 24px;
}

@media (max-width: 1100px) {
    .recruitment-cta__bg img:last-child {
        right: 20px;
        width: 340px;
    }
}

@media (max-width: 900px) {
    .recruitment-cta__content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .recruitment-form {
        margin-top: 40px;
        padding: 16px;
    }

    .recruitment-form__header h3 {
        font-size: 18px;
    }

    .recruitment-form__header p {
        font-size: 14px;
    }

    .recruitment-form__fields input,
    .recruitment-form__fields textarea {
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 14px;
    }

    .recruitment-form__fields button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .recruitment-form__fields img {
        width: 20px;
        height: 20px;
    }

    .recruitment-footer__content {
        grid-template-columns: 1fr;
    }
}

.recruitment-detail-page {
    background: #fff;
}

.recruitment-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.recruitment-detail-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.recruitment-detail-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.recruitment-detail-hero__bg img:last-child {
    opacity: 0.75;
}

.recruitment-detail-hero__inner {
    position: relative;
    z-index: 1;
}

.recruitment-detail-hero__crumb {
    color: #2d2d2f;
    font-weight: 500;
    margin: 0 0 12px;
}

.recruitment-detail-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin: 0;
}

.recruitment-detail {
    padding: 100px 0 120px;
}

.recruitment-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 384px;
    gap: 24px;
    align-items: start;
}

.recruitment-detail__content {
    display: grid;
    gap: 40px;
    padding-right: 40px;
}

.recruitment-detail__content h2 {
    margin: 0;
    color: #1d5bd8;
    font-size: clamp(1.9rem, 3vw, 2.25rem);
}

.recruitment-detail__block {
    display: grid;
    gap: 12px;
}

.recruitment-detail__block h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #232325;
}

.recruitment-detail__block ul {
    margin: 0;
    padding-left: 20px;
    color: #2d2d2f;
    display: grid;
    gap: 8px;
}

.recruitment-detail__cta {
    border: none;
    background: linear-gradient(120deg, #1e4aaf, #2470eb);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.recruitment-detail__back {
    color: #1d5bd8;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .recruitment-detail__layout {
        grid-template-columns: 1fr;
    }

    .recruitment-detail__content {
        padding-right: 0;
    }
}

@media (max-width: 720px) {
    .recruitment-detail {
        padding: 80px 0 100px;
    }
}

.recruitment-apply-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 50;
}

.recruitment-apply-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border: none;
}

.recruitment-apply-modal__card {
    position: relative;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    padding: 32px;
    width: min(800px, 92vw);
    display: grid;
    gap: 24px;
    z-index: 1;
}

.recruitment-apply-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    border: none;
    background: transparent;
    padding: 0;
}

.recruitment-apply-modal__close img {
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
}

.recruitment-apply-modal__header {
    display: grid;
    gap: 8px;
}

.recruitment-apply-modal__header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.recruitment-apply-modal__header p {
    margin: 0;
    color: #232325;
}

.recruitment-apply-modal__form {
    display: grid;
    gap: 16px;
}

.recruitment-apply-modal__form input,
.recruitment-apply-modal__form textarea {
    border: 1px solid #e5e5e8;
    border-radius: 60px;
    padding: 14px 20px;
    font-size: 1rem;
}

.recruitment-apply-modal__form textarea {
    border-radius: 20px;
    resize: none;
}

.recruitment-apply-modal__upload {
    border: 1px solid #e5e5e8;
    border-radius: 20px;
    padding: 16px 20px;
    min-height: 160px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
    color: #0c0c0d;
    font-size: 1rem;
}

.recruitment-apply-modal__upload img {
    width: 28px;
    height: 28px;
}

.recruitment-apply-modal__upload input {
    display: none;
}

.recruitment-apply-modal__form button {
    border: none;
    background: linear-gradient(120deg, #1e4aaf, #2470eb);
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .recruitment-apply-modal__card {
        padding: 24px;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .blog-listing__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-detail__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-contact__content {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-detail-cta__bg img:last-child {
        width: 360px;
        right: 40px;
    }

    .blog-cta__bg img:last-child {
        width: 360px;
        right: 40px;
    }

    .blog-footer__content {
        grid-template-columns: 1fr 1fr;
    }

    .blog-detail-footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .blog-card {
        flex-direction: column;
    }

    .blog-card__media {
        width: 100%;
    }

    .blog-contact__row {
        grid-template-columns: 1fr;
    }

    .blog-cta__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-footer__content {
        grid-template-columns: 1fr;
    }

    .blog-detail-cta__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-detail-footer__content {
        grid-template-columns: 1fr;
    }
}
