/* ===== BASE LAYOUT ===== */
.screen {
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

.screen .TQ {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
}

.screen .main-content {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* ===== HEADER ===== */
.screen .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background-color: rgba(0, 29, 61, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-sizing: border-box;
}

.screen .container-65 {
  display: flex;
  width: auto;
  height: 43px;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}

.screen .container-56 {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.screen .container-66 {
  display: flex;
  flex-direction: column;
  height: 43px;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.screen .text-4 {
  position: relative;
  width: auto;
  flex: 1;
}

.screen .text-wrapper-42 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 28px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .text-5 {
  position: relative;
  width: auto;
  height: 15px;
}

.screen .text-wrapper-43,
.screen .text-wrapper-51 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #8ec5ff;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 15px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.screen .navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.screen .button-8,
.screen .button-9 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.screen .button-10 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.screen .text-wrapper-52 {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", Helvetica;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
  width: auto;
  margin-top: 0;
}

.screen .text-wrapper-53 {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .icon-6 {
  position: relative;
  top: auto;
  left: auto;
  width: 14px;
  height: 14px;
}

.screen .button-11 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  height: 36px;
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 33554400px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.screen .text-wrapper-54 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #003399;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

/* ===== HERO SECTION (section-4) — shown first via order ===== */
.screen .section-4 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  order: -1;
  overflow: hidden;
}

/* ---- Carousel slides ---- */
.screen .hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.screen .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.screen .hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.screen .hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.screen .hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 45, 98, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.screen .hero-slide .container-50 {
  z-index: 2;
}

/* ---- Arrow buttons ---- */
.screen .hero-prev,
.screen .hero-next {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.2s, border-color 0.2s;
}

.screen .hero-prev:hover,
.screen .hero-next:hover {
  background-color: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
}

.screen .hero-prev { left: 32px; }
.screen .hero-next { right: 32px; }

/* ---- Thumbnail indicators ---- */
.screen .hero-dots {
  position: absolute;
  bottom: 32px;
  right: 48px;
  left: auto;
  transform: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.screen .hero-dot {
  all: unset;
  box-sizing: border-box;
  width: 72px;
  height: 44px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.screen .hero-dot:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.screen .hero-dot.active {
  opacity: 1;
  border-color: #ffffff;
  transform: scale(1.08);
}

/* Legacy containers kept for safety */
.screen .container-47 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  background: url(../img/image--nine-credit-education-background-.png) 50% 50% / cover;
}

.screen .container-48 {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(0, 45, 98, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.screen .container-49 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  top: auto;
  left: auto;
  width: auto;
  height: 4px;
  z-index: 20;
}

.screen .container-50 {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: min(700px, 75%);
  height: auto;
  display: flex;
  flex-direction: column;
}

.screen .container-51 {
  width: fit-content;
  height: 26px;
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: #ffffff1a;
  border-radius: 33554400px;
  border: 1px solid #ffffff33;
  padding: 0 13px;
  margin-top: 0;
}

.screen .text-3 {
  width: 8px;
  height: 8px;
  background-color: #51a2ff;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
}

.screen .text-wrapper-37 {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
  margin: 0;
}

.screen .heading-10 {
  position: relative;
  margin-top: 24px;
  height: auto;
}

.screen .text-wrapper-38 {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.screen .text-wrapper-39 {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #51a2ff;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.screen .nine-credit-wrapper {
  width: 100%;
  max-width: 672px;
  margin-top: 24px;
  display: flex;
}

.screen .nine-credit {
  width: 100%;
  color: #eff6ffcc;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: 0;
  line-height: 1.6;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  margin-top: 0;
}

.screen .container-52 {
  display: flex;
  width: 100%;
  position: relative;
  margin-top: 40px;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.screen .button-5 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  padding: 16px 32px;
  background-color: #003399;
  border-radius: 10px;
  box-shadow: 0px 8px 10px -6px #1c398e33, 0px 20px 25px -5px #1c398e33;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen .text-wrapper-40 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .icon-5 {
  position: relative;
  top: auto;
  left: auto;
  width: 20px;
  height: 20px;
}

.screen .button-6 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  padding: 16px 32px;
  background-color: #ffffff1a;
  border-radius: 10px;
  border: 1px solid #ffffff4c;
  cursor: pointer;
}

.screen .text-wrapper-41 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

/* ===== ABOUT SECTION (section) ===== */
.screen .section {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 96px 80px;
  background-color: #ffffff;
  top: auto;
  left: auto;
}

.screen .container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
}

.screen .div {
  position: relative;
  top: auto;
  left: auto;
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  order: 2;
}

.screen .div-wrapper {
  width: fit-content;
  height: 28px;
  display: flex;
  align-items: center;
  background-color: #eff6ff;
  border-radius: 33554400px;
  padding: 4px 16px;
}

.screen .text-wrapper {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  margin: 0;
}

.screen .heading {
  height: auto;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.screen .text-wrapper-2 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
  width: auto;
  height: auto;
  margin-top: 0;
}

.screen .text-wrapper-3 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
  width: auto;
  height: auto;
}

.screen .paragraph {
  width: 100%;
  margin-top: 24px;
  display: flex;
}

.screen .text-wrapper-4 {
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4a5565;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
  margin-top: 0;
  height: auto;
}

.screen .container-2 {
  display: grid;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.screen .container-3 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.screen .img {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.screen .container-4 {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: auto;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  width: auto;
}

.screen .div-wrapper-2 {
  position: relative;
  width: 100%;
  height: auto;
}

.screen .text-wrapper-5 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .div-2 {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.screen .text-wrapper-6 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6a7282;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  top: auto;
  left: auto;
  white-space: normal;
}

.screen .container-5 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.screen .container-6 {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: auto;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  width: auto;
}

.screen .button {
  all: unset;
  box-sizing: border-box;
  width: 160px;
  height: 48px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003399;
  border-radius: 10px;
  cursor: pointer;
}

.screen .text-wrapper-7 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", Helvetica;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  margin: 0;
  width: auto;
  height: auto;
}

.screen .container-7 {
  display: grid;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 40px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #f3f4f6;
}

.screen .container-8 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.screen .container-9 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.screen .container-10 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.screen .container-11 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 4 / 5;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.screen .paragraph-2 {
  position: relative;
  width: 100%;
  height: auto;
}

.screen .text-wrapper-8 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .paragraph-3 {
  display: flex;
  height: auto;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.screen .text-wrapper-9 {
  position: relative;
  flex: 1;
  margin-top: 0;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #99a1af;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 16px;
}

/* Image side of about section */
.screen .container-12 {
  position: relative;
  top: auto;
  left: auto;
  width: 50%;
  height: 520px;
  order: 1;
  flex-shrink: 0;
}

.screen .container-13 {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 220px;
  height: 220px;
  background-color: #dbeafe;
  border-radius: 20px;
  z-index: 0;
}

.screen .container-14 {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background-color: #0033991a;
  border-radius: 50%;
  z-index: 0;
}

.screen .container-15 {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 0;
  bottom: 24px;
  background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=900&q=80') center/cover no-repeat;
  border-radius: 20px;
  box-shadow: 0px 20px 48px -8px rgba(0, 51, 153, 0.22), 0px 4px 12px -2px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 1;
}

.screen .container-15::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 15, 50, 0.65) 0%, transparent 100%);
  border-radius: 0 0 20px 20px;
}

.screen .container-16 {
  display: flex;
  flex-direction: column;
  width: 260px;
  height: auto;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 20px 20px 24px;
  position: absolute;
  bottom: 48px;
  left: 48px;
  background-color: #ffffff;
  border-radius: 14px;
  border-left: 4px solid #003399;
  box-shadow: 0px 8px 24px -4px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.screen .paragraph-4 {
  position: relative;
  width: 100%;
  height: auto;
}

.screen .text-wrapper-10 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .text-wrapper-11 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4a5565;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

/* ===== SERVICES SECTION (section-2) ===== */
.screen .section-2 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 96px 80px;
  background-color: #f8fafc;
}

.screen .container-17 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 0;
}

.screen .heading-2 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.screen .text-wrapper-12 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 20px;
  white-space: nowrap;
  margin-left: 0;
  width: auto;
  height: auto;
}

.screen .heading-3 {
  width: 100%;
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.screen .text-wrapper-13 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: clamp(24px, 2.5vw, 36px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
  margin-left: 0;
  margin-top: 0;
  width: auto;
  height: auto;
}

.screen .paragraph-5 {
  width: 100%;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.screen .text-wrapper-14 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6a7282;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  margin-left: 0;
  margin-top: 0;
  width: auto;
  height: auto;
}

.screen .container-18 {
  width: 100%;
  display: flex;
  gap: 24px;
  margin-left: 0;
}

.screen .container-19,
.screen .container-24 {
  display: flex;
  flex: 1;
  min-width: 0;
  height: auto;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
}

.screen .container-20 {
  position: relative;
  width: 100%;
  height: 224px;
  background: url(../img/image----------------_1.png) 50% 50% / cover;
  flex-shrink: 0;
}

.screen .container-25 {
  position: relative;
  width: 100%;
  height: 224px;
  background: url(../img/image---------crm-------_1.png) 50% 50% / cover;
  flex-shrink: 0;
}

.screen .container-27 {
  position: relative;
  width: 100%;
  height: 224px;
  background: url(../img/image--2024------------_1.png) 50% 50% / cover;
  flex-shrink: 0;
}

.screen .container-21 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 224px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.screen .container-22,
.screen .container-26,
.screen .container-28 {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 156px;
  left: 24px;
  width: auto;
}

.screen .heading-4 {
  position: relative;
  flex: 1;
  height: 28px;
}

.screen .text-wrapper-15 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .container-23 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.screen .paragraph-6 {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
}

.screen .text-wrapper-16,
.screen .text-wrapper-19 {
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4a5565;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-top: 0;
  height: auto;
}

.screen .list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  top: auto;
  left: auto;
}

.screen .icon {
  position: relative;
  top: auto;
  left: auto;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.screen .text-wrapper-17 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6a7282;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .button-2 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid #f3f4f6;
  cursor: pointer;
  margin-top: 8px;
}

.screen .text-wrapper-18 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #364153;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  margin: 0;
  width: auto;
  height: auto;
}

/* ===== CASES SECTION (container-wrapper) ===== */
.screen .container-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: flex-start;
  padding: 96px 80px;
  position: relative;
  top: auto;
  left: auto;
  background-color: #002d62;
}

.screen .container-29 {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.screen .container-30 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screen .text-wrapper-20 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #51a2ff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 20px;
  white-space: nowrap;
  margin-left: 0;
  width: auto;
  height: auto;
}

.screen .text-wrapper-21 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 36px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
  margin-left: 0;
  margin-top: 12px;
  width: auto;
  height: auto;
}

.screen .text-wrapper-22 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #dbeafe99;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  margin-left: 0;
  margin-top: 16px;
  width: auto;
  height: auto;
}

.screen .container-31 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  width: 100%;
  height: auto;
  gap: 24px;
  position: relative;
  top: auto;
  left: auto;
}

.screen .container-32-1 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  background-color: #ffffff00;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.screen .container-32-2 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  background-color: #ffffff00;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.screen .container-32-3 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  background-color: #ffffff00;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.screen .container-32-4 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 4 / 5;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  background-color: #ffffff00;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.screen .image {
  background: url(../img/image----------------_1.png) 50% 50% / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.screen .image-CRM {
  background: url(../img/image---------crm-------_1.png) 50% 50% / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.screen .image-2 {
  background: url(../img/image--2024------------_1.png) 50% 50% / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.screen .image-3 {
  background: url(../img/image-----------------1_1.png) 50% 50% / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.screen .container-33 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 51, 153, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.8;
}

.screen .heading-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 16px 24px 24px;
  position: absolute;
  top: 0;
  left: 0;
}

.screen .container-35 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 16px 24px 24px;
  position: absolute;
  top: 0;
  left: 0;
}

.screen .heading-5 {
  display: flex;
  width: 100%;
  height: auto;
  align-items: flex-start;
  position: relative;
}

.screen .text-wrapper-23 {
  position: relative;
  flex: 1;
  margin-top: 0;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(13px, 1.2vw, 20px);
  letter-spacing: 0;
  line-height: 1.3;
}

.screen .text-wrapper-24 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(13px, 1.2vw, 20px);
  line-height: 1.3;
  font-family: "Inter", Helvetica;
  letter-spacing: 0;
}

.screen .text-wrapper-25 {
  position: relative;
  width: auto;
  margin-top: 0;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(13px, 1.2vw, 20px);
  letter-spacing: 0;
  line-height: 1.3;
}

.screen .heading-6 {
  position: relative;
  width: 100%;
  height: auto;
}

.screen .button-3 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background-color: #ffffff;
  border-radius: 14px;
  cursor: pointer;
  align-self: center;
}

.screen .icon-2 {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
}

.screen .text-wrapper-26 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  margin: 0;
  width: auto;
  height: auto;
}

/* ===== NEWS SECTION (section-3) ===== */
.screen .section-3 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: flex-start;
  gap: 48px;
  padding: 96px 80px;
  position: relative;
  top: auto;
  left: auto;
  background-color: #ffffff;
}

.screen .container-38 {
  display: flex;
  height: auto;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.screen .container-39 {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.screen .text-wrapper-27 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .heading-7 {
  position: relative;
  width: 100%;
  height: auto;
}

.screen .text-wrapper-28 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .button-4 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  height: auto;
}

.screen .text-wrapper-29 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .icon-3 {
  position: relative;
  top: auto;
  left: auto;
  width: 20px;
  height: 20px;
}

.screen .container-40 {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  gap: 32px;
}

.screen .container-41,
.screen .container-44,
.screen .container-46 {
  position: relative;
  top: auto;
  left: auto;
  flex: 1;
  min-width: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
}

.screen .container-42,
.screen .container-45 {
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  align-items: center;
  gap: 16px;
}

.screen .text {
  display: flex;
  height: 24px;
  align-items: center;
  padding: 4px 8px;
  position: relative;
  background-color: #eff6ff;
  border-radius: 4px;
  width: fit-content;
}

.screen .text-wrapper-30 {
  position: relative;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #003399;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 16px;
  white-space: nowrap;
  margin-top: 0;
  width: auto;
}

.screen .text-2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  height: auto;
  width: auto;
}

.screen .icon-4 {
  position: relative;
  top: auto;
  left: auto;
  width: 14px;
  height: 14px;
}

.screen .text-wrapper-31 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #99a1af;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 16px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .heading-8,
.screen .heading-9 {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 0;
}

.screen .text-wrapper-32,
.screen .text-wrapper-34,
.screen .text-wrapper-36 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #101828;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  margin-top: 0;
}

.screen .paragraph-7,
.screen .paragraph-8 {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 0;
}

.screen .text-wrapper-33,
.screen .text-wrapper-35 {
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6a7282;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-top: 0;
  height: auto;
}

.screen .container-43 {
  width: 40px;
  height: 4px;
  background-color: #f3f4f6;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.screen .footer {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: flex-start;
  gap: 48px;
  padding: 80px 80px 0;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  background-color: #001a3d;
}

.screen .container-53 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  height: auto;
  gap: 48px;
  width: 100%;
}

.screen .container-54 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.screen .container-59 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  width: 100%;
  height: 244px;
}

.screen .container-60 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  width: 100%;
  height: 244px;
}

.screen .container-61 {
  position: relative;
  grid-row: 1 / 2;
  grid-column: 4 / 5;
  width: 100%;
  height: 200px;
}

.screen .container-55 {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  gap: 8px;
  position: relative;
  top: auto;
  left: auto;
}

.screen .container-57 {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
  width: auto;
}

.screen .paragraph-9 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 24px;
}

.screen .text-wrapper-44 {
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #dbeafe99;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 26px;
  margin-top: 0;
  height: auto;
}

.screen .container-58 {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  margin-top: 24px;
}

.screen .list-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: flex-start;
  gap: 16px;
  position: absolute;
  top: 60px;
  left: 0;
}

.screen .text-wrapper-45 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #dbeafe99;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .heading-11 {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.screen .text-wrapper-46 {
  height: 28px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
  margin-top: 0;
}

.screen .text-6 {
  width: 32px;
  height: 4px;
  background-color: #003399;
}

.screen .paragraph-10 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
}

.screen .text-wrapper-47 {
  width: 100%;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #dbeafe99;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-top: 0;
  height: auto;
}

.screen .container-62 {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 132px;
  left: 0;
}

.screen .email-input {
  display: flex;
  height: 50px;
  align-items: center;
  padding: 12px 16px;
  position: relative;
  flex: 1;
  background-color: #ffffff0d;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ffffff1a;
}

.screen .text-wrapper-48 {
  position: relative;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff80;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  width: auto;
}

.screen .button-7 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 64px;
  height: 50px;
  background-color: #003399;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.screen .text-wrapper-49 {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .container-63 {
  display: flex;
  height: 61px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  border-top: 1px solid #ffffff0d;
}

.screen .paragraph-11 {
  position: relative;
  height: auto;
  width: auto;
}

.screen .text-wrapper-50 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #dbeafe66;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  top: auto;
  left: auto;
}

.screen .container-64 {
  display: flex;
  height: 20px;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  width: auto;
}

.screen .link {
  width: auto;
  position: relative;
  height: 20px;
}

.screen .link-2 {
  flex: 1;
  flex-grow: 1;
  position: relative;
  height: 20px;
  width: auto;
}

/* ===== HAMBURGER BUTTON ===== */
.screen .hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.screen .hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.screen .hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.screen .hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.screen .hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.screen .mobile-menu {
  display: none;
}

.screen .mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.screen .mobile-nav-item {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s;
}

.screen .mobile-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.screen .mobile-nav-cta {
  all: unset;
  box-sizing: border-box;
  display: block;
  margin: 16px 20px 8px;
  padding: 14px 20px;
  background-color: #ffffff;
  color: #003399;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .screen .header {
    padding: 0 24px;
  }

  .screen .navigation {
    gap: 14px;
  }

  .screen .button-11 {
    padding: 0 14px;
  }

  .screen .section,
  .screen .section-2,
  .screen .container-wrapper,
  .screen .section-3 {
    padding: 72px 40px;
  }

  .screen .footer {
    padding: 60px 40px 0;
  }

  .screen .container {
    gap: 40px;
  }

  .screen .container-12 {
    height: 440px;
  }

  .screen .container-14 {
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
  }

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

  .screen .container-32-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .screen .container-32-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .screen .container-32-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .screen .container-32-4 { grid-column: 2 / 3; grid-row: 2 / 3; }

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

  .screen .container-54 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .screen .container-59 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .screen .container-60 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .screen .container-61 { grid-column: 2 / 3; grid-row: 2 / 3; }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* Header */
  .screen .header {
    padding: 0 16px;
    height: 56px;
  }

  .screen .navigation {
    display: none;
  }

  .screen .hamburger-btn {
    display: flex;
  }

  .screen .mobile-menu {
    display: flex;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background-color: rgba(0, 29, 61, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    padding: 8px 0 16px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    pointer-events: none;
  }

  .screen .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }

  /* Hero */
  .screen .hero-prev { left: 12px; width: 38px; height: 38px; }
  .screen .hero-next { right: 12px; width: 38px; height: 38px; }
  .screen .hero-dots { bottom: 20px; right: 16px; gap: 6px; }
  .screen .hero-dot { width: 52px; height: 32px; }

  .screen .container-50 {
    left: 20px;
    right: 20px;
    width: auto;
    transform: translateY(-50%);
    padding: 0;
  }

  .screen .text-wrapper-38,
  .screen .text-wrapper-39 {
    font-size: clamp(28px, 9vw, 48px);
    white-space: normal;
  }

  .screen .nine-credit {
    font-size: 14px;
  }

  /* About */
  .screen .section {
    padding: 60px 20px;
  }

  .screen .container {
    flex-direction: column;
    gap: 40px;
  }

  .screen .div {
    width: 100%;
    order: 1;
  }

  .screen .text-wrapper-2,
  .screen .text-wrapper-3 {
    font-size: 26px;
    white-space: normal;
  }

  .screen .container-12 {
    width: 100%;
    height: 300px;
    order: 2;
  }

  .screen .container-13 {
    width: 100px;
    height: 100px;
    top: -16px;
    left: -16px;
  }

  .screen .container-14 {
    bottom: -24px;
    right: -24px;
    width: 110px;
    height: 110px;
  }

  .screen .container-15 {
    top: 16px;
    left: 16px;
    right: 0;
    bottom: 16px;
    border-radius: 16px;
  }

  .screen .container-16 {
    width: 210px;
    bottom: 32px;
    left: 28px;
    padding: 14px 14px 14px 18px;
  }

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

  .screen .container-9 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .screen .container-10 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .screen .container-11 { grid-column: 2 / 3; grid-row: 2 / 3; }

  /* Services */
  .screen .section-2 {
    padding: 60px 20px;
    gap: 32px;
  }

  .screen .container-18 {
    flex-direction: column;
  }

  .screen .text-wrapper-13,
  .screen .text-wrapper-14 {
    white-space: normal;
  }

  /* Cases */
  .screen .container-wrapper {
    padding: 60px 20px;
  }

  .screen .container-31 {
    grid-template-columns: 1fr;
  }

  .screen .container-32-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .screen .container-32-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .screen .container-32-3 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .screen .container-32-4 { grid-column: 1 / 2; grid-row: 4 / 5; }

  .screen .container-32-1,
  .screen .container-32-2,
  .screen .container-32-3,
  .screen .container-32-4 {
    padding-bottom: 60%;
  }

  .screen .text-wrapper-21,
  .screen .text-wrapper-22 {
    white-space: normal;
  }

  /* News */
  .screen .section-3 {
    padding: 60px 20px;
    gap: 32px;
  }

  .screen .container-40 {
    flex-direction: column;
    gap: 40px;
  }

  .screen .container-38 {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .screen .text-wrapper-28 {
    white-space: normal;
  }

  .screen .text-wrapper-32,
  .screen .text-wrapper-34,
  .screen .text-wrapper-36 {
    white-space: normal;
  }

  /* Footer */
  .screen .footer {
    padding: 60px 20px 0;
    gap: 40px;
  }

  .screen .container-53 {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .screen .container-54 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .screen .container-59 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .screen .container-60 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .screen .container-61 { grid-column: 1 / 2; grid-row: 4 / 5; }

  .screen .container-63 {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    align-items: flex-start;
    gap: 12px;
  }

  .screen .text-wrapper-50 {
    white-space: normal;
  }

  .screen .container-64 {
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
  }
}
