/* Sogody.com homepage — styles translated verbatim from the live repo SCSS
   (src/assets/scss/components/*). Desktop-faithful recreation. */

:root { --green: #67be83; --ink: #2b2b2b; --gray: #f8f8f8; }

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: "HelveticaNeueLT Pro 65 Md", -apple-system, Arial, sans-serif;
  color: #2b2b2b;
  background-color: #f8f8f8;
}
a { color: inherit; }
img { display: block; }

/* ============ HEADER / NAVBAR ============ */
/* Legacy .header-wrapper / .header-container layout rules were removed: every
   page renders the homepage header (SrcHeader) styled by styles/main-compiled.css.
   The old rules forced position:sticky and padding:16px 20px 12px, which made the
   menu sit ~10px higher (extra 12px bottom padding) than on the homepage. */
.navbar-brand img { width: 130.77px; height: 40px; object-fit: contain; }

.navbar-inner-div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #e8e8e8;
  padding: 5px 12px;
  gap: 14px;
  border-radius: 50px;
}
.nav-link-black {
  font-family: "HelveticaNeueLT Pro 65 Md", Arial, sans-serif;
  font-size: 16px;
  padding: 8px 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  color: #2b2b2b;
  text-decoration: none;
  cursor: pointer;
  border-radius: 32px;
  transition: color 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}
.nav-link-black:hover { background: #fff; color: #2b2b2b; }
.nav-link-black.active { color: #67be83; }
.mini-arrow { display: inline-flex; transition: transform 0.3s ease; }
.mini-arrow img { width: 9px; }
.nav-link-black:hover .mini-arrow { transform: rotate(180deg); }

.nav-contact { display: flex; }
.contact-us-link {
  font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif;
  font-size: 16px;
  line-height: normal;
  background-color: #67be83;
  color: #ffffff;
  min-width: 120px;
  min-height: 45px;
  height: auto;
  border: none;
  outline: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 4px 24px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.contact-us-link:hover { background-color: #4d8e62; }

/* ============ EXPLORE LINK ============ */
.explore-link {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
}
.explore-link-text {
  font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif;
  font-size: 16px;
  color: #2b2b2b;
  padding-right: 5px;
  display: flex;
  align-items: center;
}
.explore-link-text.underlined { text-decoration: underline; text-underline-offset: 3px; }
.arrow-span-styling { margin-left: 2px; }
.explore-link .arrow-icon { display: inline-flex; }
.explore-link .arrow-icon img { width: 17px; height: 15px; }

/* ============ HERO / MAIN BANNER ============ */
.banner-padding {
  margin-top: 0;
  color: #2b2b2b;
  background-color: #f8f8f8;
  text-align: center;
  padding-top: 60px;
}
.banner-styling {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.banner-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.04;
  margin: 0 auto 30px;
  display: block;
}
.banner-styling p.subtitle {
  width: 90%;
  margin: 0 auto;
  font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #2b2b2b;
}
.book-meeting {
  margin: 32px 0 54px;
  display: flex;
  justify-content: center;
}
.book-meeting .buttons {
  display: flex;
  align-items: center;
  column-gap: 18px;
}
.banner-carousel-div {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}
.banner-carousel-div video.border-radius {
  border-radius: 24px 24px 0 0;
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* clients carousel (Trusted by:) */
.clients-carousel {
  display: flex;
  flex-direction: column;
  background-color: #2b2b2b;
  border-radius: 0 0 24px 24px;
  margin-top: -10px;
  color: #f8f8f8;
}
.clients-carousel .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 15px 55px;
}
.clients-carousel .title-styling {
  font-size: 16px;
  line-height: 1;
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
  font-weight: 400;
  margin: 0;
  color: #f8f8f8;
  white-space: nowrap;
}
.clients-carousel .carousel-slider-wrapper { flex: 1; width: 100%; overflow: hidden; }
.clients-carousel .logo-slider { display: flex; align-items: center; overflow: hidden; white-space: nowrap; }
.clients-carousel .slider-track { display: flex; animation: scroll 15s linear infinite; padding: 20px 0; }
.clients-carousel .logo-item { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; padding: 0 28px; }
.clients-carousel .logo-item img { opacity: 0.5; width: auto; height: 40px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ WHERE WE COME IN ============ */
.where-we-come-in-section { margin: 100px 0; }
.where-we-come-in-wrapper { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.where-we-come-in-text {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 32px;
  line-height: 44px;
  color: #4a4a4a;
  margin: 0;
  font-weight: 400;
}
.where-we-come-in-label {
  display: inline-flex;
  align-items: center;
  background-color: #2b2b32;
  color: #fff;
  padding: 12px 10px 8px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
  margin-right: 16px;
  vertical-align: baseline;
  transform: translateY(-6px);
}
.where-we-come-in-text-strong { color: #2b2b2b; font-weight: 400; font-family: "Cabinet Grotesk", sans-serif; }
.where-we-come-in-text-light { color: #6b6b6b; font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; }

/* ============ SERVICES ============ */
.service { max-width: 1240px; margin: 0 auto; }
.service.service-has-padding { padding: 0 20px; }
.service a { text-decoration: none; }
.services-desktop-wrapper { margin-top: 80px; }
.services-desktop-box {
  background: #ffffff;
  border-radius: 32px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.services-desktop-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px 30px 0;
  grid-column: span 1;
}
.services-desktop-intro-group { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.services-eyebrow {
  font-size: 14px;
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 20px;
  width: 80%;
  margin: 0;
}
.services-explore-link .explore-link-text { font-size: 15px; }
.services-desktop-intro h4 {
  font-size: 24px;
  line-height: 28px;
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 400;
  color: #2b2b2b;
  margin: 0;
}
.services-desktop-cards { grid-column: span 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-box {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-content { display: flex; flex-direction: column; height: 100%; }
.service-img { width: 100%; }
.service-img-ctn {
  max-width: 320px;
  height: 280px;
  border-radius: 16px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.service-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.3s linear; }
.circular-parent { position: absolute; top: 14px; right: 14px; z-index: 10; }
.service-text { padding: 24px 16px 16px; }
.service-title {
  font-size: 16px;
  line-height: 20px;
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #2b2b2b;
  margin: 0;
  transition: color 0.2s linear;
}
.service-col:hover .service-image { transform: scale(1.08); }
.service-col:hover .service-title { color: #67be83; }

/* ============ CIRCULAR BUTTON ============ */
.circular-btn-container { display: inline-flex; justify-content: end; }
.circular-btn {
  background-color: #2b2b2b;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
}
.circular-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 50%;
  transition: width 0.2s ease-in-out, height 0.3s ease-in-out;
  z-index: 1;
}
.circular-btn.black { background-color: #2b2b2b; }
.circular-btn.black::before { background-color: #fff; }
.circular-btn .arrow-icon { position: relative; z-index: 3; display: flex; }
.circular-btn .arrow-icon img { width: 14px; }
.service-col:hover .circular-btn::before,
.circular-btn:hover::before { width: 100%; height: 100%; }

/* ============ WHAT WE BUILD ============ */
.what-we-build-section { margin: 100px 0; position: relative; background: transparent; }
.what-we-build-section::before {
  content: "";
  position: absolute;
  background: url("../assets/images/what-we-build-bg.webp");
  background-position: center;
  background-size: 100% 95%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.what-we-build-wrapper { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.what-we-build-header { display: flex; margin: 40px 0; width: 248px; }
.what-we-build-eyebrow {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #2b2b2b;
  margin: 23px 0 0 8px;
  position: relative;
  z-index: 9;
}
.what-we-build-card { border-radius: 32px; overflow: hidden; display: flex; gap: 40px; padding-bottom: 40px; }
.what-we-build-left { flex: 0 0 500px; display: flex; flex-direction: column; max-width: 40%; }
.what-we-build-video {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: auto;
}
.what-we-build-right { flex: 1; display: flex; flex-direction: column; }
.what-we-build-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 2fr) minmax(0, 1fr);
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.what-we-build-row:last-of-type { border-bottom: none; }
.what-we-build-row-index {
  font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif;
  font-size: 14px;
  color: #2b2b2b;
  padding-top: 4px;
}
.what-we-build-row-title {
  font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #2b2b2b;
  margin: 0;
  padding-right: 80px;
}
.what-we-build-row-description {
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2b2b2b;
}
.what-we-build-row-description p { margin: 0; }

/* ============ CASE STUDIES (Explore Our Work) ============ */
.case-studies { width: 100%; margin: 100px 0; }
.case-studies-wrapper { max-width: 1240px; padding: 0 20px; margin: 0 auto; }
.our-cs-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 64px; gap: 40px; }
.our-cs-title { flex: 0 0 auto; max-width: 300px; padding-right: 80px; }
.our-cs-title h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  margin: 0;
  color: #2b2b2b;
  font-family: "Cabinet Grotesk", sans-serif;
}
.our-cs-content { flex: 1; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; max-width: 360px; }
.our-cs-description { font-size: 16px; line-height: 1.6; color: #2b2b2b; margin: 0; font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; }
.case-studies-scroll-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.case-studies-scroll-wrapper::-webkit-scrollbar { display: none; }
.case-studies-track { display: flex; gap: 32px; padding: 0 32px 8px; justify-content: center; min-width: min-content; }
.case-study-card-link { text-decoration: none; color: inherit; display: block; flex-shrink: 0; }
.case-study-card-item {
  position: relative;
  border-radius: 10.14px;
  overflow: hidden;
  width: clamp(400px, 30vw, 560px);
  aspect-ratio: 4 / 5;
  background: #f8f8f8;
}
.case-study-card-image { width: 100%; height: 100%; position: relative; overflow: hidden; }
.case-study-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.case-study-card-item:hover .case-study-card-image img { transform: scale(1.08); }
.case-study-card-overlay {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  margin: 0 15px 15px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: background 0.3s ease;
}
.case-study-card-item:hover .case-study-card-overlay {
  background: rgba(88, 170, 120, 0.35);
  border-color: rgba(140, 220, 170, 0.35);
}
.case-study-card-title {
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 300;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-study-card-overlay .circular-btn {
  width: 46px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}
.case-study-card-overlay .circular-btn::before { width: 0 !important; height: 0 !important; }
.case-study-card-overlay .arrow-icon img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

/* ============ BOOK A MEETING ============ */
.cta-meet { margin: 100px 0; width: 100%; }
.cta-meet-container { max-width: 1240px; padding: 0 20px; margin: 0 auto; }
.cta-meet-content {
  background-color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  width: 100%;
  padding: 64px 40px;
}
.cta-meet-content-column { grid-row: 1; display: flex; }
.cta-meet-content-column:first-child { grid-column: 1 / span 2; }
.cta-meet-content-column:nth-child(2) { grid-column: 4 / span 3; }
.cta-meet-content-column:last-child { grid-column: 8 / span 2; }
.cta-meet-content--title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #2b2b2b;
  margin: 0;
}
.cta-meet-content--description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #636363;
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
  margin: 0;
}
.cta-meet-content .contact-us-link { font-size: 18px; font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; margin: 0; }

/* ============ UPDATES ============ */
.updates-wrapper { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.updates-single-container.homepage-updates { margin-top: 0; }
.title-subtitle-row { display: flex; gap: 30px; align-items: start; justify-content: space-between; width: 100%; margin-bottom: 1rem; }
.title-subtitle-row .title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  max-width: 420px;
}
.subtitle-div { max-width: 270px; display: flex; flex-direction: column; gap: 15px; }
.subtitle-div .subtitle {
  text-align: left;
  margin: 0;
  padding-top: 5px;
  font-size: 16px;
  line-height: 22px;
  color: #636363;
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
}
.updates-list { display: flex; flex-direction: column; }
.update-card { display: flex; justify-content: space-between; gap: 20px; padding: 0; transition: background-color 0.5s ease; background-color: transparent; position: relative; }
.update-card:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  border-bottom: 1px solid #e8e8e8;
}
.update-card:hover { background-color: #fff; }
.update-content-row { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0.5rem 0; transition: padding 0.5s ease; }
.update-card:hover .update-content-row { padding-left: 0.5rem; padding-right: 0.5rem; }
.update-text { flex: 1; max-width: 50%; }
.update-text .title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  padding: 0;
  margin: 0 0 12px;
}
.update-text .subtitle {
  font-size: 16px;
  line-height: 18px;
  padding: 0;
  margin: 0 0 16px;
  color: #636363;
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
}
.update-image {
  max-width: 40%;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

/* ============ FOOTER ============ */
.footer { width: 100%; margin: 0 auto; max-width: 1240px; padding: 0 20px 18px; }
.footer-container { background: #2b2b2b; color: #f8f8f8; border-radius: 20px; padding: 52px 40px 18px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; width: 100%; }
.footer-block { display: flex; flex-direction: column; gap: 5px; min-width: 120px; text-align: left; }
.footer-block p, .footer-block a {
  font-size: 14px;
  margin: 0;
  color: #b2b2b2;
  text-decoration: none;
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 500;
}
.footer-block .title-white, .footer-block .title-white a { color: #ececec; }
.footer-block a:hover { color: #67be83; }
.social-icons { display: flex; gap: 10px; margin-top: 5px; }
.social-icons img { width: 25px; transition: transform 0.3s ease; }
.social-icons a:hover img { transform: translateY(-5%); }
.footer-bottom { margin-top: 52px; text-align: center; }
.footer-bottom .title-gray { color: #b2b2b2; font-size: 12px; font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; margin: 0; }
