/* Sogody — page-level styles for Work, Updates, Careers, Company, Services,
   Contact, Privacy/Terms, 404 and the single content templates. Loaded after
   site.css. Translated from the live repo SCSS vocabulary. */

.container-mainbanner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.h2-styling { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; }
.margin-bottom { margin-bottom: 100px; }

/* ============ BANNER WORK (Work / Updates hero) ============ */
.banner-work {
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 56px 36px;
  margin-top: 24px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Match the header-to-hero gap used on the What We Do (services) page: main
   has padding-top:80px globally, so 30px here lands the hero at the same 110px. */
.work .banner-work, .up-final .banner-work { margin-top: 30px; }
.banner-work::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,24,0.12), rgba(20,20,24,0.30)); z-index: 0; }
.banner-work-row, .banner-work-divider, .banner-work .clients-carousel { position: relative; z-index: 1; }
.banner-work-row { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; }
.banner-work-title { max-width: 760px; text-align: center; }
.banner-work-title h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 16px;
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
}
.banner-work-title .subtitle {
  font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #e8e8e8;
  max-width: 560px;
  margin: 0 auto 28px;
}
.banner-work-divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 32px 40px 0; }
.banner-work .clients-carousel { background: transparent; border-radius: 0; margin-top: 0; }
.banner-work .clients-carousel .logo-item img { filter: brightness(0) invert(1); opacity: 0.7; }
.banner-work .clients-carousel .title-styling { color: #fff; }

/* ============ FILTER + GRID (Work / Updates) ============ */
.updates2 { margin-top: 56px; }
.case-studies-load { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.our-cs.custom-case-studies {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-section { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-item {
  font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 32px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #2b2b2b;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.filter-item:hover { border-color: #67be83; color: #67be83; }
.filter-item.active { background: #2b2b2b; border-color: #2b2b2b; color: #fff; }

.cs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cs-grid-link { text-decoration: none; color: inherit; display: block; }

/* case-study card */
.cs-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ececec;
}
.cs-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.cs-grid-link:hover .cs-card-img { transform: scale(1.06); }
.cs-card-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 32px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  z-index: 2;
}
.cs-card-tag span { font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.cs-card-tag-arrow img { width: 14px; display: block; }
.cs-card-hover {
  position: absolute;
  inset: 0;
  background: #2b2b2b;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.cs-card-hover.show { opacity: 1; }
.cs-card-hover h2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 24px; line-height: 1.2; margin: 0; }

/* update card */
.update-card-grid { display: flex; flex-direction: column; gap: 14px; }
.update-card-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ececec;
  background-size: cover;
  background-position: center;
}
.update-card-circle { position: absolute; top: 14px; right: 14px; z-index: 2; }
.update-card-title {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: #2b2b2b;
  margin: 0;
}
.cs-grid-link:hover .update-card-title { color: #67be83; }

.preview-section { display: flex; justify-content: center; margin: 56px 0 0; }
.show-more-btn { border: none; cursor: pointer; }

/* ============ CAREERS ============ */
.careers-banner { max-width: 1240px; margin: 0 auto; padding: 80px 20px 0; text-align: center; }
.careers-banner .banner-title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 52px; line-height: 1.05; margin: 0 0 20px; }
.careers-banner .subtitle { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 18px; line-height: 1.5; color: #636363; max-width: 720px; margin: 0 auto 40px; }
.careers-banner img { width: 100%; border-radius: 20px; height: 280px; object-fit: cover; }
.careers-positions { max-width: 1240px; margin: 0 auto; padding: 64px 20px 0; }
.careers-positions .title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 32px; margin: 0 0 28px; }
.positions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.career-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.career-card:hover { background: #2b2b2b; color: #fff; }
.career-card .position-title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 22px; margin: 0 0 6px; }
.career-card .position-location { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; color: #888; margin: 0; }
.career-card:hover .position-location { color: #b2b2b2; }
.rotating-arrow-icon { width: 22px; transition: transform 0.3s ease; }
.career-card:hover .rotating-arrow-icon { transform: rotate(45deg); filter: brightness(0) invert(1); }
.role-banner { border-radius: 20px; background-size: cover; background-position: center; padding: 64px 48px; color: #fff; }
.role-banner .title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 34px; margin: 0 0 16px; }
.role-banner .subtitle { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #e8e8e8; margin: 0 0 16px; }
.role-banner .green { color: #67be83; text-decoration: none; font-size: 18px; }

/* ============ COMPANY ============ */
.container-company { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.company-intro { padding: 90px 0 40px; }
.company-intro h2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 40px; line-height: 1.15; max-width: 980px; margin: 0; color: #2b2b2b; }
.company-intro h2 .green { color: #67be83; }
.company-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 60px 0; }
.company-gallery .gallery-item { border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; background: #ececec; background-size: cover; background-position: center; }
.company-gallery .gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.ceo-quote { background: #2b2b2b; color: #fff; border-radius: 24px; padding: 72px 64px; margin: 60px 0; text-align: center; }
.ceo-quote blockquote { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 32px; line-height: 1.3; margin: 0 auto 28px; max-width: 900px; }
.ceo-quote .ceo-name { font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 16px; }
.ceo-quote .ceo-role { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; color: #9a9aa3; }
.staff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 40px 0 80px; }
.staff-card { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; background: #ececec; background-size: cover; background-position: center; position: relative; }

/* ============ TESTIMONIALS ============ */
.testimonials { margin: 80px 0; }
.testimonials h2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 32px; text-align: center; margin: 0 0 48px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border-radius: 20px; padding: 36px 32px; }
.testimonial-card p { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 20px; line-height: 1.4; color: #2b2b2b; margin: 0 0 24px; }
.testimonial-card .t-author { font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 15px; color: #2b2b2b; }
.testimonial-card .t-role { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 13px; color: #888; }

/* ============ SERVICES PAGE ============ */
.services-page-banner { max-width: 1240px; margin: 0 auto; padding: 90px 20px 40px; }
.services-page-banner h1 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 56px; line-height: 1.04; max-width: 900px; margin: 0 0 20px; }
.services-page-banner p { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 20px; line-height: 1.5; color: #636363; max-width: 680px; margin: 0; }
.service-category-list { max-width: 1240px; margin: 60px auto; padding: 0 20px; display: flex; flex-direction: column; gap: 20px; }
.service-category {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.service-category-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: #ececec; }
.service-category-img > video, .service-category-img > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-category-img-bg { width: 100%; height: 100%; background-size: cover; background-position: center; }

/* "Unforgettable experiences" photo grid (3-col masonry, mirrors live /services) */
.services-photo-grid { columns: 3; column-gap: 20px; margin-top: 8px; }
.services-photo { break-inside: avoid; margin-bottom: 20px; border-radius: 16px; overflow: hidden; background: #ececec; }
.services-photo > img, .services-photo > video { width: 100%; height: auto; display: block; object-fit: cover; }
@media (max-width: 900px) { .services-photo-grid { columns: 2; } }
@media (max-width: 560px) { .services-photo-grid { columns: 1; } }
.service-category h2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 30px; margin: 0 0 10px; }
.service-category .eyebrow { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 13px; color: #67be83; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 14px; }
.service-category .lead { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #636363; margin: 0 0 24px; }
.service-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 24px; }
.service-point h4 { font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 16px; margin: 0 0 6px; }
.service-point p { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; line-height: 1.5; color: #888; margin: 0; }
.optimized-services { max-width: 1240px; margin: 80px auto; padding: 64px 20px; text-align: center; }
.optimized-services h2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 40px; line-height: 1.15; margin: 0 0 20px; }
.optimized-services p { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 18px; color: #636363; max-width: 640px; margin: 0 auto; }

/* ============ SERVICE DETAIL PAGE ============ */
.service-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; padding: 70px 0 0; }
.service-hero-copy { max-width: 560px; }
.service-hero-title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 52px; line-height: 1.05; margin: 0 0 22px; }
.service-hero-sub { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 19px; line-height: 1.55; color: #636363; margin: 0 0 30px; }
.service-hero-cta { display: inline-flex; }
.service-hero-media { border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 11; background: #e1f2e6; }
.service-hero-media > video { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-hero-divider { border: none; border-top: 1px solid #e8e8e8; margin: 56px 0 0; }

.service-section-title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 40px; line-height: 1.12; margin: 0 0 40px; max-width: 820px; }

.service-caps { max-width: 1240px; margin: 96px auto; padding: 0 20px; }
.service-caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-cap-card {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: box-shadow 0.3s ease;
}
.service-cap-card:hover { box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.service-cap-card h3 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 23px; line-height: 1.2; margin: 0 0 14px; }
.service-cap-card p { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #636363; margin: 0; }
.service-cap-cta {
  background: #2b2b2b; color: #fff; border-radius: 20px; padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 12px;
}
.service-cap-cta-name { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; color: #8ed3a4; margin: 0; }
.service-cap-cta-line { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 26px; line-height: 1.15; margin: 0 0 10px; }
.service-cap-cta .contact-us-link { align-self: flex-start; }

.service-process { max-width: 1240px; margin: 96px auto; padding: 0 20px; }
.service-process-sub { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 19px; line-height: 1.55; color: #636363; max-width: 720px; margin: 0 0 44px; }
.service-steps { display: flex; flex-direction: column; gap: 0; }
.service-step {
  display: grid; grid-template-columns: 110px 320px 1fr; align-items: center; gap: 28px;
  padding: 26px 0; border-top: 1px solid #e8e8e8;
}
.service-step:last-child { border-bottom: 1px solid #e8e8e8; }
.service-step-num { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; color: #67be83; text-transform: uppercase; letter-spacing: 0.06em; }
.service-step-label { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 26px; }
.service-step-bar { height: 6px; border-radius: 50px; background: linear-gradient(90deg, #67be83, #9aa6e8 55%, #f2a9a0); opacity: 0.85; }

.service-tech { max-width: 1240px; margin: 96px auto 40px; padding: 0 20px; }
.service-tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-tech-card {
  background: #f8f8f8; border: 1px solid #e8e8e8; border-radius: 20px; padding: 30px 28px;
  transition: background 0.3s ease;
}
.service-tech-card:hover { background: #f1f6f5; }
.service-tech-card h3 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 24px; margin: 0 0 8px; }
.service-tech-card p { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 15px; color: #888; margin: 0; }

@media (max-width: 900px) {
  .service-hero { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; }
  .service-hero-title { font-size: 36px; }
  .service-section-title { font-size: 30px; }
  .service-caps-grid, .service-tech-grid { grid-template-columns: 1fr 1fr; }
  .service-step { grid-template-columns: 90px 1fr; }
  .service-step-bar { display: none; }
}
@media (max-width: 600px) {
  .service-caps-grid, .service-tech-grid { grid-template-columns: 1fr; }
  .service-step { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ CONTACT ============ */
.contact-page { max-width: 1240px; margin: 0 auto; padding: 80px 20px 0; }
.contact-page .h2-styling { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 52px; text-align: center; margin: 0 0 28px; }
.contact-assurances { display: flex; justify-content: center; flex-wrap: wrap; gap: 36px; margin-bottom: 48px; }
.contact-assurance { display: flex; align-items: center; gap: 10px; }
.contact-assurance img { width: 20px; }
.contact-assurance p { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 15px; color: #636363; margin: 0; }
.contact-form-card { background: #fff; border-radius: 24px; padding: 48px; max-width: 760px; margin: 0 auto 64px; }
.contact-linkedin-card { background: #2b2b2b; color: #fff; border-radius: 24px; padding: 40px; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-linkedin-card .author-row { display: flex; align-items: center; gap: 14px; }
.contact-linkedin-card .author-image { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.contact-linkedin-card .author-name { font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 16px; }
.contact-linkedin-card .author-role { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; color: #9a9aa3; }
.contact-linkedin-card p.quote { font-family: "Cabinet Grotesk", sans-serif; font-size: 20px; line-height: 1.35; margin: 0; }
.linkedin-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #2b2b2b; border: none; border-radius: 32px; padding: 12px 22px; font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; align-self: flex-start; text-decoration: none; transition: background 0.2s ease, color 0.2s ease; }
.linkedin-btn:hover { background: #67be83; color: #fff; }
.linkedin-btn img { width: 16px; }
.offices { margin: 80px 0; }
.offices h2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 32px; margin: 0 0 32px; }
.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.office-card { background: #fff; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.office-card .office-map { height: 220px; background-size: cover; background-position: center; background-color: #ececec; }
.office-card .office-body { padding: 28px 30px; }
.office-card h3 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 22px; margin: 0 0 10px; }
.office-card p, .office-card a { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 15px; color: #636363; margin: 0 0 6px; text-decoration: none; display: block; }
.office-card a:hover { color: #67be83; }

/* ============ FAQ ============ */
.faq-container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; margin: 64px 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 24px 0; cursor: pointer; text-align: left; font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 20px; color: #2b2b2b; }
.faq-icon img { width: 16px; transition: transform 0.3s ease; transform: rotate(45deg); }
.faq-item.open .faq-icon img { transform: rotate(0deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a p { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #636363; margin: 0; padding-bottom: 24px; }

/* ============ TERMS / PRIVACY ============ */
.terms-banner { max-width: 1240px; margin: 0 auto; padding: 90px 20px 24px; }
.terms-banner .banner-title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 56px; margin: 0; }
.terms-banner .green { color: #67be83; }
.terms-cnt { max-width: 860px; margin: 0 auto 100px; padding: 0 20px; }
.terms-content .heading2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 26px; margin: 40px 0 14px; }
.terms-content .terms-paragraph { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 16px; line-height: 1.7; color: #4a4a4a; margin: 0 0 16px; }
.terms-content .ul-list, .terms-content .ol-list { padding-left: 22px; margin: 0 0 16px; }
.terms-content .ul-list li, .terms-content .ol-list li { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 16px; line-height: 1.7; color: #4a4a4a; margin-bottom: 8px; }
.terms-content a { color: #67be83; }

/* ============ 404 ============ */
.not-found { max-width: 900px; margin: 0 auto; padding: 80px 20px 120px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.not-found .title { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; letter-spacing: 0.3em; text-transform: uppercase; font-size: 14px; color: #888; margin: 0; }
.not-found .logo-404 { width: min(560px, 100%); margin: 32px 0; }
.not-found .bordered-title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 28px; max-width: 620px; margin: 0 0 40px; line-height: 1.3; }
.not-found .nf-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.not-found .secondary-contact-us { background: #fff; color: #67be83; border: 1px solid #67be83; }
.not-found .secondary-contact-us:hover { background: #67be83; color: #fff; }

/* ============ SINGLE CONTENT TEMPLATE (case study / update) ============ */
.single-update-container { max-width: 1240px; margin: 0 auto; padding: 60px 20px 100px; }
.main-content-container { display: flex; gap: 48px; align-items: flex-start; }
.updates-images { flex: 0 0 360px; position: sticky; top: 100px; }
.cs-logo { width: 100%; height: 440px; border-radius: 20px; background-size: cover; background-position: center; background-color: #ececec; margin-bottom: 16px; }
.next-update-card { background: #fff; border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.next-update-card .next-img { width: 100%; height: 120px; object-fit: cover; border-radius: 10px; }
.next-cards-row { display: flex; gap: 10px; }
.next-cards-row .next-update-card { flex: 1; }
.single-up-content { flex: 1; min-width: 0; }
.category-tag { font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: #67be83; background: rgba(103,190,131,0.12); padding: 6px 12px; border-radius: 32px; margin-right: 8px; }
.single-up-content .title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 40px; line-height: 1.1; margin: 16px 0 32px; }
.single-update .up-paragraph { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 17px; line-height: 1.7; color: #2b2b2b; margin: 0 0 20px; }
.single-update .heading2 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 26px; margin: 36px 0 14px; }
.single-update .heading3 { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 21px; margin: 28px 0 12px; }
.single-update .update-cnt-image { width: 100%; border-radius: 16px; margin: 20px 0; }
.single-update .ul-list { padding-left: 22px; }
.share-article { display: flex; align-items: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }
.share-links { display: flex; align-items: center; gap: 14px; }
.share-label { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; color: #888; }
.share-icons { display: flex; gap: 10px; }
.share-icons img { width: 24px; transition: transform 0.3s ease; }
.share-icons a:hover img { transform: translateY(-3px); }

/* ============ SINGLE CAREER (job post) ============ */
.single-career-content { max-width: 980px; margin: 0 auto; padding: 0 20px 100px; }
.career-job-banner { max-width: 1240px; margin: 0 auto; padding: 80px 20px 0; text-align: center; }
.career-job-banner .banner-title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 400; font-size: 44px; margin: 0 0 12px; }
.career-job-banner .subtitle { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; color: #636363; margin: 0 0 32px; }
.career-job-banner img { width: 100%; height: 320px; object-fit: cover; border-radius: 20px; background: #ececec; }
.details-card { background: #fff; border-radius: 20px; padding: 32px; margin: -60px auto 48px; position: relative; max-width: 760px; }
.job-details-flex { display: flex; justify-content: center; gap: 64px; text-align: center; flex-wrap: wrap; }
.detail-item .detail-item-title { font-family: "HelveticaNeueLT Pro 55 Roman", Arial, sans-serif; font-size: 12px; letter-spacing: 0.08em; }
.detail-item .green { color: #67be83; }
.detail-item p { font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 18px; margin: 8px 0 0; }
.career-introduction { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.career-introduction .cr-paragraph { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 18px; line-height: 1.6; color: #4a4a4a; }
.job-accordion { border-bottom: 1px solid #e0e0e0; }
.job-accordion .acc-header { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; padding: 26px 0; cursor: pointer; text-align: left; font-family: "Cabinet Grotesk", sans-serif; font-weight: 500; font-size: 22px; color: #2b2b2b; }
.job-accordion .acc-header .faq-icon img { width: 16px; transition: transform 0.3s ease; transform: rotate(45deg); }
.job-accordion.open .acc-header .faq-icon img { transform: rotate(0deg); }
.job-accordion .acc-body-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.job-accordion.open .acc-body-wrap { grid-template-rows: 1fr; }
.job-accordion .acc-body { overflow: hidden; }
.job-accordion .acc-body .cr-paragraph { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 16px; line-height: 1.7; color: #4a4a4a; margin: 0 0 16px; }
.apply-form { display: flex; flex-direction: column; gap: 14px; padding: 12px 0 0; }
.apply-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-form input, .apply-form textarea { font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 15px; padding: 12px 14px; border: 1px solid #c6c7ce; border-radius: 12px; outline: none; width: 100%; }
.apply-form input:focus, .apply-form textarea:focus { border-color: #67be83; box-shadow: 0 0 0 3px rgba(103,190,131,0.18); }
.upload-btn { display: inline-flex; align-items: center; gap: 8px; background: #f2f1f6; border: 1px dashed #c6c7ce; border-radius: 12px; padding: 12px 18px; cursor: pointer; font-family: "HelveticaNeueLT Pro 45 Lt", Arial, sans-serif; font-size: 14px; width: fit-content; }
.apply-btn { border: none; cursor: pointer; align-self: stretch; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1023px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .company-gallery { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .positions-grid, .office-grid, .service-points { grid-template-columns: 1fr; }
  .service-category { grid-template-columns: 1fr; }
  .faq-container { grid-template-columns: 1fr; }
  .main-content-container { flex-direction: column; }
  .updates-images { position: static; flex: none; width: 100%; }
  .cs-logo { height: 300px; }
  .banner-work { padding: 40px 28px 0; }
  .banner-work-title h1 { font-size: 34px; margin-bottom: 10px; }
  /* Tighten the mobile hero: less air between title, copy, divider and the
     "Trusted by" band so it doesn't sprawl down the screen. */
  .banner-work-title .subtitle { margin-bottom: 18px; }
  .banner-work-divider { margin: 20px 0 0; }
}
@media (max-width: 600px) {
  .cs-grid { grid-template-columns: 1fr; }
  .staff-grid, .company-gallery { grid-template-columns: 1fr 1fr; }
  .careers-banner .banner-title, .terms-banner .banner-title, .contact-page .h2-styling, .services-page-banner h1 { font-size: 36px; }
  .apply-form .row2 { grid-template-columns: 1fr; }
  .ceo-quote, .contact-form-card, .service-category { padding: 32px 24px; }
}
