:root {
  --primary: #0e9ad6;
  --dark: #1a1a1f;
  --text: #2f2f34;
  --muted: #666b72;
  --bg: #f4f4f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

p {
  margin: 0;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-header {
  position: relative;
  z-index: 100;
  background: #f0f0f0;
  border-bottom: 1px solid #d8d8d8;
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  min-width: 170px;
}

.logo-image {
  width: 155px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #21242c;
}

.top-contact p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: #20252d;
  overflow-wrap: anywhere;
}

.contact-chip {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.top-contact-address {
  flex: 1;
  max-width: 450px;
}

.top-contact-email {
  min-width: 190px;
  justify-content: flex-end;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.pin-icon {
  color: #22a450;
}

.mail-icon {
  color: #1299dc;
}

.pin-icon svg,
.mail-icon svg {
  fill: currentColor;
}

.main-nav {
  background: #1a1a1d;
  border-top: 1px solid #242428;
  border-bottom: 1px solid #242428;
  position: relative;
  z-index: 20;
}

.main-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

body.nav-fixed .top-header {
  padding-bottom: 64px;
}

.nav-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.menu > li {
  position: relative;
}

.menu-mobile-head {
  display: none;
}

.menu a {
  text-decoration: none;
  color: #f0f1f5;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.1;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: #f0f1f5;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", Arial, sans-serif;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  line-height: 1.1;
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 19px);
  left: -10px;
  width: fit-content;
  min-width: 240px;
  max-width: 92vw;
  background: #f5f5f5;
  border: 1px solid #dbdbdb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 30;
  display: none;
}

.has-dropdown.is-open .menu-dropdown {
  display: block;
}

.menu-dropdown li {
  border-bottom: 1px solid #e5e5e5;
}

.menu-dropdown li:last-child {
  border-bottom: 0;
}

.menu-dropdown a {
  display: block;
  color: #111;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 14px;
  white-space: normal;
}

.service-dropdown {
  left: -6px;
}

.industry-dropdown {
  left: -4px;
}

.service-dropdown a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  padding: 14px 16px;
}

.industry-dropdown a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  padding: 14px 16px;
}

.menu-dropdown a:hover {
  background: #ededed;
}

.menu .caret {
  width: 12px;
  height: 12px;
  font-size: 12px;
  line-height: 1;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: #f0f1f5;
  border-radius: 2px;
}

.menu-overlay {
  display: none;
}

.menu-close {
  border: 0;
  background: transparent;
  color: #2e3139;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 11px 26px;
  border: 0;
  cursor: pointer;
}

.btn-nav,
.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-nav {
  text-transform: none;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 0;
  height: 64px;
  min-width: 344px;
  padding: 0 26px 0 52px;
  gap: 8px;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.nav-phone-icon {
  font-size: 25px;
  line-height: 1;
}

.nav-phone-number {
  line-height: 1;
}

.hero {
  height: 500px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 4;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.hero-content.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-content.is-outgoing {
  opacity: 0;
  transform: translateY(10px);
}

.hero-content.is-incoming {
  opacity: 0;
  transform: translateY(16px);
}

.hero-kicker {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-title-line {
  display: block;
}

.hero-seq-item {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
  transition-delay: calc(var(--line-order, 0) * 0.22s);
}

.hero-content.is-active .hero-seq-item {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-title {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-title span {
  color: #0e9ad6;
}

.btn-hero {
  margin-top: 30px;
  background: #0e9ad6;
  color: #fff;
  min-width: 150px;
  height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.8s ease, transform 4s ease-out;
  transform-origin: center center;
  will-change: transform, opacity;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide.is-incoming {
  opacity: 0;
  transform: scale(1.12);
  z-index: 2;
}

.hero-slide.is-outgoing {
  opacity: 0;
  transform: scale(1.02);
  z-index: 3;
}

.hero-slide-1 {
  background-image: url("assets/hero-main.png");
}

.hero-slide-2 {
  background-image: url("assets/hero-second.png");
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-arrow-left {
  left: 18px;
}

.hero-arrow-right {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(14, 154, 214, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-dot.is-active {
  background: #0e9ad6;
  transform: scale(1.2);
}

.intro-section {
  position: relative;
  z-index: 1;
  background: #f2f2f4;
  padding: 56px 0 64px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.section-line {
  width: 22px;
  height: 3px;
  background: #e22872;
  margin-bottom: 16px;
}

.intro-text-card h2 {
  font-size: 46px;
  line-height: 0.9;
  margin-bottom: 20px;
  font-weight: 700;
  color: #23262d;
}

.intro-text-card p {
  max-width: 230px;
  font-size: 12px;
  line-height: 2.35;
  color: #2f323a;
  margin-bottom: 28px;
}

.intro-text-card .btn-primary {
  min-width: 110px;
  height: 30px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  margin-bottom: 10px;
}

.mini-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
  color: #20242d;
}

.mini-card p {
  font-size: 12px;
  line-height: 2;
  color: #1f242c;
}

.mini-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.split-highlight {
  display: block;
  position: relative;
}

.split-image {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-image: url("assets/why-quess.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.split-content {
  position: relative;
  z-index: 1;
  margin-left: 50%;
  width: 50%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #08a0dd;
  color: var(--white);
  padding: 62px 54px;
}

.small-label {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 14px;
}

.split-content h2 {
  font-size: 40px;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 18px;
}

.split-content p {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 12px;
}

.contact-band {
  position: relative;
  z-index: 1;
  background: #1f2028;
  color: var(--white);
}

.contact-band-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.contact-band p {
  font-size: clamp(20px, 2.3vw, 26px);
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
}

.services {
  position: relative;
  z-index: 1;
  padding: 74px 0 78px;
  background: #f3f3f3;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .section-line {
  width: 18px;
  height: 4px;
  margin-inline: auto;
  margin-bottom: 10px;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2.1px;
  color: #a9a9ad;
  margin-bottom: 2px;
}

.section-head h2 {
  font-size: 47px;
  font-weight: 700;
  color: #2b2f36;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 42px;
}

.service-card {
  background: transparent;
  border-radius: 6px;
  padding: 2px;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid #12a2e5;
  color: #12a2e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}

.service-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  display: block;
}

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

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

.service-icon-devops img,
.service-icon-manpower img,
.service-icon-training img {
  width: 42px;
  height: 42px;
}

.service-card h3 {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0;
  color: #11141c;
  word-break: break-word;
}

.service-card p {
  font-size: 12px;
  line-height: 2;
  color: #2e3239;
}

@media (max-width: 980px) {
  .menu {
    gap: 14px;
  }

  .btn-nav {
    font-size: 27px;
    min-width: 286px;
    height: 56px;
    padding: 0 18px 0 40px;
  }

  .split-content {
    padding: 48px 36px;
  }

  .split-content h2 {
    font-size: clamp(30px, 4vw, 40px);
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #171923;
  border-top: 1px solid #252733;
}

.footer-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
}

.footer-row a {
  color: #e4e8ef;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

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

  .split-image {
    position: sticky;
    min-height: 300px;
    height: 56vh;
    top: 60px;
  }

  .split-content {
    position: relative;
    z-index: 2;
    margin-left: 0;
    width: 100%;
    min-height: auto;
    margin-top: -24px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
}

@media (max-width: 780px) {
  .header-row {
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
  }

  .logo-wrap {
    margin-right: auto;
  }

  .top-contact {
    width: auto;
    justify-content: center;
    position: relative;
  }

  .top-contact-email {
    min-width: 0;
    justify-content: center;
  }

  .top-contact-address {
    flex: 0;
    max-width: none;
    margin-left: 4px;
  }

  .top-contact-email {
    margin-left: 6px;
  }

  .contact-chip {
    width: 30px;
    height: 30px;
  }

  .contact-chip .icon {
    width: 20px;
    height: 20px;
  }

  .contact-detail {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(260px, 72vw);
    background: #0e9ad6;
    color: #fff;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.45;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
    display: none;
    z-index: 1200;
  }

  .top-contact.is-open .contact-detail {
    display: block;
  }

  .nav-row {
    min-height: auto;
    padding: 12px 0;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: center;
    border: 0;
    border-radius: 0;
    width: 42px;
    height: 36px;
  }

  .main-nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
  }

  body.nav-fixed .top-header {
    padding-bottom: 60px;
  }

  .menu {
    width: min(78vw, 320px);
    max-width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1300;
    background: #d9ecf8;
    padding: 0 0 20px;
    flex-direction: column;
    gap: 0;
    display: flex;
    transform: translateX(-104%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  .nav-row.is-open .menu {
    transform: translateX(0);
  }

  .menu > li {
    width: 100%;
    border-bottom: 1px solid #dadddf;
  }

  .menu-mobile-head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid #dadddf;
    padding: 0 16px;
  }

  .menu a {
    font-size: 20px;
    color: #10131b;
    width: 100%;
    padding: 14px;
    font-weight: 600;
    line-height: 1.25;
  }

  .nav-dropdown-toggle {
    color: #10131b;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    justify-content: space-between;
    padding: 14px;
  }

  .menu-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 0;
    border: 0;
    border-top: 1px solid #dadddf;
    background: #e2e6eb;
    box-shadow: none;
  }

  .service-dropdown {
    left: 0;
  }

  .industry-dropdown {
    left: 0;
  }

  .menu-dropdown a {
    font-size: 15px;
    padding: 11px 16px;
    color: #20242d;
    line-height: 1.35;
    font-weight: 500;
  }

  .menu-dropdown li {
    border-bottom: 1px solid #cfd4da;
  }

  .menu-dropdown a:hover {
    background: #d9dee5;
  }

  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(20, 23, 30, 0.42);
    z-index: 1250;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }

  .main-nav.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .btn-nav {
    display: inline-flex;
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    font-size: 15px;
    min-width: 170px;
    height: 34px;
    padding: 0 10px 0 24px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0;
    z-index: 1320;
  }

  .btn-nav .nav-phone-icon {
    font-size: 14px;
  }

  .nav-row.is-open .btn-nav {
    display: inline-flex;
  }

  .hero {
    height: 320px;
  }

  .hero-kicker {
    font-size: 14px;
  }

  .hero-title {
    font-size: 28px;
  }

  .btn-hero {
    margin-top: 16px;
    min-width: 122px;
    height: 40px;
  }

  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .intro-text-card {
    grid-column: 1 / -1;
  }

  .intro-text-card h2 {
    font-size: 31px;
  }

  .intro-text-card p {
    max-width: none;
  }

  .mini-card img {
    aspect-ratio: 4 / 3;
    margin-bottom: 8px;
  }

  .mini-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .mini-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .split-content {
    padding: 42px 24px;
    margin-top: -18px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .split-content h2 {
    font-size: 32px;
  }

  .contact-band-inner {
    min-height: auto;
    padding: 18px 0 24px;
    flex-direction: column;
    text-align: center;
  }

  .contact-band p {
    font-size: 20px;
  }

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

  .section-kicker {
    font-size: 9px;
    letter-spacing: 1.7px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .service-title-row {
    margin-bottom: 8px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

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

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

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

  .service-icon-devops img,
  .service-icon-manpower img,
  .service-icon-training img {
    width: 34px;
    height: 34px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-row {
    flex-wrap: wrap;
    gap: 16px 26px;
    padding: 14px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1180px, 94%);
  }

  .intro-grid {
    gap: 12px;
  }

  .header-row {
    gap: 8px;
  }

  .top-contact {
    gap: 2px;
  }

  .contact-detail {
    width: min(244px, 84vw);
    font-size: 11px;
    padding: 9px 10px;
  }

  .logo-image {
    width: 132px;
  }

  .btn-nav {
    font-size: 13px;
    min-width: 152px;
    height: 30px;
    padding: 0 8px 0 20px;
  }

  .btn-nav .nav-phone-icon {
    font-size: 12px;
  }

  .hero {
    height: 280px;
  }

  .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.05;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }

  .hero-dots {
    bottom: 12px;
    gap: 7px;
  }

  .split-image {
    position: sticky;
    min-height: 260px;
    height: 48vh;
    top: 56px;
  }

  .split-content {
    margin-left: 0;
    width: 100%;
    min-height: auto;
    padding: 34px 18px;
    margin-top: -14px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }

  .split-content h2 {
    font-size: 28px;
  }

  .split-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .section-head h2 {
    font-size: 30px;
  }
}

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

  .intro-text-card {
    grid-column: auto;
  }
}
