/* ============================== */
/* CSS RESET & BASE STYLES        */
/* ============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1D1D1D;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

/* ============================== */
/* HEADER / NAVIGATION            */
/* ============================== */
.header {
  position: relative;
  width: 100%;
  padding: 24px 0;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 62px;
}

.header__logo {
  font-size: 16px;
  font-weight: 700;
  color: #1D1D1D;
  transition: opacity 0.2s ease;
}

.header__logo--regular {
  font-weight: 400;
}

.header__logo--regular:hover {
  font-weight: 700;
}


/* Desktop Navigation */
.header__nav {
  display: block;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 62px;
}

.header__nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #1D1D1D;
  transition: font-weight 0.15s ease;
}

.header__nav-link:hover {
  font-weight: 700;
}

.header__nav-link--active {
  font-weight: 700;
}

/* Header Overlay Variant (for dark backgrounds) */
.header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header--overlay .header__logo {
  color: #FFFFFF;
  font-weight: 400;
  transition: font-weight 0.15s ease;
}

.header--overlay .header__logo:hover {
  font-weight: 700;
}

.header--overlay .header__nav-link {
  color: #FFFFFF;
}

.header--overlay .header__hamburger-line {
  background-color: #FFFFFF;
}

/* Header Overlay Dark Variant (for light backgrounds) */
.header--overlay-dark .header__logo {
  color: #1D1D1D;
}

.header--overlay-dark .header__nav-link {
  color: #1D1D1D;
}

.header--overlay-dark .header__hamburger-line {
  background-color: #1D1D1D;
}

/* ============================== */
/* SURENT PROJECT PAGE            */
/* ============================== */
.surent-hero {
  position: relative;
}

.surent-hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Surent Overview Section */
.surent-overview {
  padding-top: 100px;
}

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

.surent-overview__label {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(69, 69, 69, 0.6);
  margin: 0;
}

.surent-overview__heading {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  max-width: 543px;
  margin: 25px 0 0 0;
}

.surent-overview__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 155px;
  row-gap: 100px;
  margin-top: 204px;
}

.surent-overview__block--left .surent-overview__text {
  max-width: 700px;
}

.surent-overview__block--right .surent-overview__text {
  max-width: 240px;
}

.surent-overview__block {
  display: flex;
  flex-direction: column;
}

.surent-overview__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #111012;
  margin: 0;
}

.surent-overview__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  margin: 23px 0 0 0;
}

/* Surent Quick Search Section */
.surent-quicksearch {
  margin-top: 170px;
}

.surent-quicksearch__video-wrapper {
  background-color: #136F66;
  padding: 100px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.surent-quicksearch__video-container {
  max-width: 1292px;
  width: 100%;
  border-radius: 30px;
  border: 20px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-sizing: border-box;
}

.surent-quicksearch__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.surent-quicksearch__caption {
  font-size: 18px;
  font-weight: 400;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 0;
  padding: 21px 24px;
}

/* Surent Process Section */
.surent-process {
  margin-top: 50px;
}

.surent-process__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Surent User Research Section */
.surent-research {
  margin-top: 50px;
}

.surent-research__header {
  background-color: #D9E3E1;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.surent-research__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

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

/* User Interview */
.surent-research__interview {
  margin-top: 100px;
}

.surent-research__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #111012;
  margin: 0;
}

.surent-research__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  max-width: 728px;
  margin: 23px 0 0 0;
}

/* Key Findings */
.surent-research__findings {
  margin-top: 150px;
}

.surent-research__findings-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #111012;
  margin: 0;
  text-align: center;
}

.surent-research__findings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 114px;
  margin-top: 60px;
}

.surent-research__finding-card {
  display: flex;
  flex-direction: column;
}

.surent-research__finding-card--centered {
  grid-column: 1;
  max-width: 429px;
}

.surent-research__percentage {
  font-size: 46px;
  font-weight: 400;
  color: #111012;
}

.surent-research__finding-headline {
  font-size: 18px;
  font-weight: 500;
  color: #111012;
  max-width: 429px;
  margin: 10px 0 0 0;
}

.surent-research__finding-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  max-width: 429px;
  margin: 15px 0 0 0;
}

/* User Survey */
.surent-research__survey {
  margin-top: 150px;
}

/* Survey Carousel */
.surent-carousel {
  margin-top: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.surent-carousel__slides {
  max-width: 980px;
  width: 100%;
  overflow: hidden;
}

.surent-carousel__slide {
  display: none;
  flex-direction: column;
  align-items: center;
}

.surent-carousel__slide--active {
  display: flex;
}

.surent-carousel__image {
  width: 100%;
  height: auto;
  display: block;
}

.surent-carousel__caption {
  font-size: 18px;
  font-weight: 400;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin-top: 74px;
}

.surent-carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background-color: #FFFFFF;
  border: 1px solid #EDF0F1;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.surent-carousel__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.surent-carousel__btn img {
  width: 22px;
  height: 22px;
}

/* Competitor Research */
.surent-research__competitor {
  margin-top: 157px;
}

.surent-research__text--competitor {
  max-width: 744px;
}

.surent-research__competitor-image {
  width: 100%;
  max-width: 1314px;
  height: auto;
  display: block;
  margin-top: 123px;
}

/* ============================== */
/* DEFINE SECTION                 */
/* ============================== */
.surent-define {
  margin-top: 100px;
}

.surent-define__header {
  background-color: #D9E3E1;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.surent-define__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

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

/* User Persona */
.surent-define__persona {
  margin-top: 100px;
}

.surent-define__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #111012;
  margin: 0;
}

.surent-define__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  max-width: 743px;
  margin: 23px 0 0 0;
}

.surent-define__persona-image {
  width: 100%;
  max-width: 1292px;
  height: auto;
  display: block;
  margin-top: 100px;
}

.surent-define__caption {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 58px 0 0 0;
}

/* Story Map */
.surent-define__storymap {
  margin-top: 100px;
}

.surent-define__storymap-image {
  width: 100%;
  max-width: 1415px;
  height: auto;
  display: block;
  margin-top: 100px;
}

/* ============================== */
/* IDEATE SECTION                 */
/* ============================== */
.surent-ideate {
  margin-top: 100px;
}

.surent-ideate__header {
  background-color: #D9E3E1;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.surent-ideate__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

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

/* User Flow */
.surent-ideate__userflow {
  margin-top: 100px;
}

.surent-ideate__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #111012;
  margin: 0;
}

.surent-ideate__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  max-width: 746px;
  margin: 23px 0 0 0;
}

.surent-ideate__userflow-image {
  width: 100%;
  height: auto;
  display: block;
}

.surent-ideate__userflow-image--tenant {
  max-width: 1237px;
  margin-top: 128px;
}

.surent-ideate__userflow-image--landlord {
  max-width: 1057px;
  margin-top: 150px;
}

/* Information Architecture */
.surent-ideate__ia {
  margin-top: 200px;
}

.surent-ideate__ia .surent-ideate__text {
  max-width: 738px;
}

.surent-ideate__ia-image {
  width: 100%;
  height: auto;
  display: block;
}

.surent-ideate__ia-image:first-of-type {
  margin-top: 90px;
}

/* ============================== */
/* DESIGN SECTION                 */
/* ============================== */
.surent-design {
  margin-top: 100px;
}

.surent-design__header {
  background-color: #D9E3E1;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.surent-design__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

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

.surent-design__block {
  margin-top: 100px;
}

.surent-design__block--gap {
  margin-top: 150px;
}

.surent-design__block--findings {
  margin-top: 100px;
}

.surent-design__block--responsive {
  margin-top: 100px;
}

.surent-design__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #111012;
  margin: 0;
}

.surent-design__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  margin: 23px 0 0 0;
}

.surent-design__text--wireframes {
  max-width: 706px;
}

.surent-design__text--findings {
  max-width: 710px;
}

.surent-design__text--responsive {
  max-width: 724px;
}

.surent-design__fullwidth-image {
  width: 100%;
  height: auto;
  display: block;
}

.surent-design__fullwidth-image--wireframes {
  margin-top: 100px;
}

.surent-design__fullwidth-image--findings {
  margin-top: 100px;
}

.surent-design__responsive-wrapper {
  margin-top: 100px;
}

.surent-design__caption {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 26px 0 0 0;
}

.surent-design__video-wrapper {
  margin-top: 100px;
  background-color: #136F66;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.surent-design__video-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  border: 20px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.surent-design__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.surent-design__video-caption {
  font-size: 18px;
  font-weight: 400;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 0;
  padding: 21px 24px;
}

.surent-design__other-screens {
  margin-top: 100px;
}

.surent-design__video-wrapper--inspection {
  margin-top: 100px;
}

/* ============================== */
/* LEARNINGS & OUTCOMES SECTION   */
/* ============================== */
.surent-learnings {
  margin-top: 340px;
}

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

.surent-learnings__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #111012;
  margin: 0;
}

.surent-learnings__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  max-width: 748px;
  margin: 24px 0 0 0;
}

/* ============================== */
/* THANK YOU SECTION              */
/* ============================== */
.surent-thankyou {
  margin-top: 237px;
  text-align: center;
  padding: 0 24px;
}

.surent-thankyou__title {
  font-size: 64px;
  font-weight: 400;
  color: #000000;
  margin: 0;
}

/* ============================== */
/* PROJECT FOOTER SECTION         */
/* ============================== */
.surent-footer {
  margin-top: 94px;
  background-color: #F6FCFE;
  height: 270px;
  display: flex;
  align-items: center;
}

.surent-footer__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.surent-footer__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.surent-footer__profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.surent-footer__profile-info {
  display: flex;
  flex-direction: column;
}

.surent-footer__name {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #353738;
  margin: 0;
}

.surent-footer__title {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 21px;
  color: #424242;
  margin: 0;
}

.surent-footer__contact {
  display: flex;
  align-items: center;
  gap: 70px;
}

.surent-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.surent-footer__contact-icon {
  width: 20px;
  height: 20px;
}

.surent-footer__contact-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #424242;
}

/* Hamburger Button */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  z-index: 1001;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1D1D1D;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger Active State */
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Override overlay hamburger to dark when menu is open */
.header--overlay .header__hamburger.active .header__hamburger-line {
  background-color: #1D1D1D;
}

/* ============================== */
/* HERO SECTION                   */
/* ============================== */
.hero {
  padding-top: 93px;
}

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

.hero__heading {
  font-size: 54px;
  font-weight: 400;
  line-height: 68px;
  color: #111012;
  max-width: 992px;
  margin: 0;
}

.hero__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(93, 93, 93, 0.6);
  max-width: 721px;
  margin-top: 60px;
}

/* ============================== */
/* PROJECTS SECTION               */
/* ============================== */
.projects {
  padding-top: 116px;
}

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

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 549px);
  gap: 48px;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card__thumbnail {
  width: 549px;
  height: 549px;
  overflow: hidden;
}

.project-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Eazee colored background */
.project-card__thumbnail--eazee {
  background-color: #1472CC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card__thumbnail--eazee .project-card__gif {
  width: 240px;
  height: 483px;
  object-fit: contain;
}

/* Ballot colored background */
.project-card__thumbnail--ballot {
  background-color: #E1D89F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card__thumbnail--ballot .project-card__gif {
  width: 240px;
  height: 483px;
  object-fit: contain;
}

/* The Creek colored background */
.project-card__thumbnail--creek {
  background-color: #2B8BE3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card__thumbnail--creek .project-card__gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 400;
  color: #000000;
  margin-top: 22px;
  margin-bottom: 0;
}

.project-card:hover .project-card__title {
  text-decoration: underline;
}

/* Locked project cards (not clickable) */
.project-card--locked {
  cursor: default;
}

.project-card--locked:hover .project-card__title {
  text-decoration: none;
}

.project-card__category {
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  color: #5D5D5D;
  margin-top: 6px;
  margin-bottom: 0;
}

/* ============================== */
/* FOOTER SECTION                 */
/* ============================== */
.footer-divider {
  max-width: 1146px;
  margin: 170px auto 0;
  border: none;
  border-top: 1px solid #AAAAAA;
}

.footer {
  padding-top: 82px;
  padding-bottom: 82px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__left {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: inline-block;
  width: 33px;
  height: 30px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__text {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: #212526;
  margin-top: 92px;
  margin-bottom: 0;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transition: transform 0.2s ease;
}

.footer__social-link:hover {
  transform: scale(1.1) translateY(-2px);
}

.footer__social-link img {
  width: 100%;
  height: 100%;
}

/* ============================== */
/* MOBILE STYLES                  */
/* ============================== */

/* Tablet Breakpoint (768px - 1024px) */
@media (max-width: 1024px) {

  /* Header */
  .header__container {
    gap: 40px;
  }

  .header__nav-list {
    gap: 40px;
  }

  /* Hero Section */
  .hero {
    padding-top: 60px;
  }

  .hero__heading {
    font-size: 42px;
    line-height: 52px;
    max-width: 100%;
  }

  .hero__description {
    font-size: 16px;
    margin-top: 40px;
    max-width: 100%;
  }

  /* Projects Grid - 2 columns fluid */
  .projects {
    padding-top: 80px;
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .project-card__thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .project-card__thumbnail--eazee .project-card__gif {
    width: 160px;
    height: auto;
  }

  .project-card__thumbnail--ballot .project-card__gif {
    width: 160px;
    height: auto;
  }

  /* Footer */
  .footer-divider {
    margin-top: 100px;
  }

  .footer__text {
    font-size: 32px;
    line-height: 40px;
    margin-top: 60px;
  }
}

/* Mobile Breakpoint (768px and below) */
@media (max-width: 768px) {

  /* Header - Hamburger Menu */
  .header__container {
    justify-content: space-between;
  }

  .header__hamburger {
    display: flex;
    margin-left: auto;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .header__nav-link {
    font-size: 24px;
  }

  /* Override overlay header colors for mobile menu */
  .header--overlay .header__nav-link {
    color: #1D1D1D;
  }

  .header--overlay .header__nav {
    background-color: #fff;
  }

  /* Hero Section */
  .hero {
    padding-top: 48px;
  }

  .hero__heading {
    font-size: 32px;
    line-height: 42px;
  }

  .hero__description {
    font-size: 16px;
    margin-top: 32px;
    line-height: 1.7;
  }

  /* Projects Grid - Still 2 columns on tablet-ish */
  .projects {
    padding-top: 60px;
  }

  .projects__grid {
    gap: 24px;
  }

  .project-card__title {
    font-size: 18px;
    line-height: 24px;
    margin-top: 12px;
  }

  .project-card__category {
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
  }

  /* Footer */
  .footer-divider {
    margin: 80px 24px 0;
  }

  .footer {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer__text {
    font-size: 28px;
    line-height: 36px;
    margin-top: 40px;
  }

  .footer__right {
    align-self: flex-start;
  }

  .footer__social-link {
    width: 24px;
    height: 24px;
  }
}

/* Small Mobile Breakpoint (480px and below) */
@media (max-width: 480px) {

  /* Hero Section */
  .hero__heading {
    font-size: 28px;
    line-height: 38px;
  }

  .hero__description {
    font-size: 15px;
    margin-top: 24px;
  }

  /* Projects Grid - 1 column */
  .projects__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-card__thumbnail--eazee .project-card__gif {
    width: 140px;
    height: auto;
  }

  .project-card__thumbnail--ballot .project-card__gif {
    width: 140px;
    height: auto;
  }

  .project-card__title {
    font-size: 20px;
    margin-top: 20px;
  }

  .project-card__category {
    font-size: 14px;
  }

  /* Footer */
  .footer__text {
    font-size: 24px;
    line-height: 32px;
    margin-top: 32px;
  }
}

/* ============================== */
/* BALLOT PROJECT PAGE            */
/* ============================== */

/* Ballot Overview */
.ballot-overview {
  padding: 100px 0 0 0;
}

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

.ballot-overview__label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(69, 69, 69, 0.6);
  text-transform: uppercase;
  margin: 0;
}

.ballot-overview__heading {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #111012;
  max-width: 600px;
  margin: 24px 0 0 0;
}

.ballot-overview__background {
  margin-top: 100px;
}

.ballot-overview__background-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 16px;
}

.ballot-overview__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: #111012;
  margin: 0;
}

.ballot-overview__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(69, 69, 69, 0.6);
  margin: 16px 0 0 0;
}

.ballot-overview__background-block .ballot-overview__text:first-child {
  margin-top: 0;
}

.ballot-overview__about-goal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
}

.ballot-overview__list {
  margin: 16px 0 0 0;
  padding-left: 20px;
  color: rgba(69, 69, 69, 0.6);
  font-size: 16px;
  line-height: 1.7;
}

.ballot-overview__list li {
  margin-top: 8px;
}

.ballot-overview__list li:first-child {
  margin-top: 0;
}

.ballot-overview__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.ballot-overview__detail-title {
  font-size: 30px;
  font-weight: 400;
  color: #111012;
  margin: 0;
}

.ballot-overview__detail-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  margin: 12px 0 0 0;
}

/* Ballot Mockup Section */
.ballot-mockup {
  margin-top: 100px;
}

.ballot-mockup__image {
  width: 100%;
  height: auto;
  display: block;
}

.ballot-mockup__caption {
  font-size: 16px;
  font-weight: 400;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 24px 0 0 0;
}

/* Ballot Process Section */
.ballot-process {
  margin-top: 100px;
}

.ballot-process__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Ballot Research Section */
.ballot-research {
  margin-top: 100px;
}

.ballot-research__header {
  background-color: #E1D89F;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.ballot-research__header {
  background-color: #E1D89F;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.ballot-research__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

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

.ballot-research__intro {
  margin-top: 100px;
  max-width: 728px;
  margin-left: 0;
  margin-right: auto;
}

.ballot-research__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(69, 69, 69, 0.6);
  margin-top: 24px;
}

.ballot-research__text:first-child {
  margin-top: 0;
}

/* Our Assumptions */
.ballot-research__assumptions {
  max-width: 1200px;
  margin: 150px auto 0;
  padding: 0 24px;
}

.ballot-research__assumptions-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: #111012;
  text-align: center;
  margin: 0;
}

.ballot-research__assumptions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.ballot-research__assumption-card {
  background-color: #F5F5F5;
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  box-sizing: border-box;
}

.ballot-research__assumption-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #454545;
  max-width: 498px;
  margin: 0;
}

/* User Interviews */
.ballot-research__interviews {
  max-width: 1200px;
  margin: 150px auto 0;
  padding: 0 24px;
}


.ballot-research__interviews .ballot-research__section-title {
  max-width: 100%;
  text-align: left;
}

.ballot-research__interviews .ballot-research__text {
  max-width: 728px;
}

.ballot-research__section-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: #111012;
  margin: 0;
}

/* Interview Feedback */
.ballot-research__feedback {
  max-width: 1200px;
  margin: 150px auto 0;
  padding: 0 24px;
}

.ballot-research__feedback-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: #111012;
  text-align: center;
  margin: 0;
}

.ballot-research__feedback-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-top: 60px;
}

/* ============================== */
/* BALLOT DEFINE SECTION          */
/* ============================== */

/* Main Section Spacing */
.ballot-overview,
.ballot-research,
.ballot-define,
.ballot-ideate,
.ballot-design {
  margin-bottom: 200px;
}

.ballot-define {
  margin-top: 0;
}

.ballot-define__header {
  background-color: #E1D89F;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.ballot-define__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

.ballot-define__container {
  max-width: 1298px;
  margin: 0 auto;
  padding: 0 24px;
}

.ballot-define__intro {
  margin-top: 100px;
  max-width: 728px;
}

.ballot-define__section-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: #111012;
  margin: 0;
}

.ballot-define__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(69, 69, 69, 0.6);
  margin-top: 24px;
}

.ballot-define__affinity-image {
  width: 100%;
  max-width: 1298px;
  height: auto;
  display: block;
  margin-top: 60px;
}

/* Pulling Out Findings from each Theme */
.ballot-define__themes {
  margin-top: 230px;
  max-width: 1200px;
}

.ballot-define__themes .ballot-define__text {
  max-width: 728px;
}

.ballot-define__themes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.ballot-define__theme-card {
  background-color: #F5F5F5;
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  box-sizing: border-box;
}

.ballot-define__theme-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #454545;
  max-width: 498px;
  margin: 0;
}

/* Analyzing Themes and Findings to Gain Insights */
.ballot-define__insights {
  margin-top: 230px;
  max-width: 1200px;
}

.ballot-define__insights .ballot-define__text {
  max-width: 728px;
}

.ballot-define__insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.ballot-define__insight-card {
  background-color: #F5F5F5;
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  box-sizing: border-box;
}

.ballot-define__insight-card--tall {
  min-height: 220px;
}

.ballot-define__insight-card--top-aligned {
  align-items: flex-start;
  padding-top: 20px;
}

.ballot-define__insight-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #454545;
  max-width: 498px;
  margin: 0;
}

.ballot-define__key-insight-label {
  font-size: 24px;
  font-weight: 400;
  color: #454545;
  margin: 40px 0 0 0;
}

.ballot-define__key-insight-card {
  background-color: #FFF8D7;
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  box-sizing: border-box;
}

.ballot-define__key-insight-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #454545;
  margin: 0;
}

/* Sticking with Inclusiveness in the Process */
.ballot-define__inclusiveness {
  margin-top: 330px;
}

.ballot-define__inclusiveness .ballot-define__text {
  max-width: 728px;
}

/* Some Findings from the Focused Research */
.ballot-define__focused-research {
  margin-top: 200px;
}

.ballot-define__focused-research .ballot-define__text {
  max-width: 728px;
}

.ballot-define__focused-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.ballot-define__focused-card {
  background-color: #F5F5F5;
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 24px 28px;
  box-sizing: border-box;
}

.ballot-define__focused-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #454545;
  max-width: 498px;
  margin: 0;
}

.ballot-define__key-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

/* Visualizing User Attitudes and Behaviors Through Empathy Mapping */
.ballot-define__empathy-mapping {
  margin-top: 330px;
}

.ballot-define__empathy-mapping .ballot-define__section-title {
  max-width: 794px;
}

.ballot-define__empathy-mapping .ballot-define__text {
  max-width: 728px;
}

.ballot-define__empathy-image {
  width: 100%;
  max-width: 1300px;
  height: auto;
  display: block;
  margin-top: 60px;
}

/* Describing Typical User Through a Persona */
.ballot-define__personas-text {
  margin-top: 330px;
}

.ballot-define__personas-text .ballot-define__text {
  max-width: 728px;
}

.ballot-define__personas-images {
  max-width: 1376px;
  margin: 140px auto 0;
  padding: 0 24px;
}

.ballot-define__persona-image {
  width: 100%;
  max-width: 1376px;
  height: auto;
  display: block;
}

.ballot-define__persona-image--two {
  margin-top: 60px;
}

.ballot-define__persona-caption {
  font-size: 16px;
  font-weight: 400;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 24px 0 0 0;
}

/* Mapping the User Journeys */
.ballot-define__journey-intro {
  margin-top: 330px;
}

.ballot-define__journey-intro .ballot-define__text {
  max-width: 728px;
}

.ballot-define__journey-map {
  max-width: 1335px;
  margin: 60px auto 0;
  padding: 0 24px;
}

.ballot-define__journey-image {
  width: 100%;
  max-width: 1335px;
  height: auto;
  display: block;
}

.ballot-define__journey-caption {
  font-size: 16px;
  font-weight: 400;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 24px 0 0 0;
}

/* GIF Caption - Reduced top margin due to container padding */
.ballot-design__gif-caption {
  font-size: 16px;
  font-weight: 400;
  color: rgba(69, 69, 69, 0.6);
  text-align: center;
  margin: 24px 0 0 0;
}

/* Crafting Point of View - Problem Statements */
.ballot-define__pov {
  margin-top: 250px;
}

.ballot-define__pov .ballot-define__text {
  max-width: 728px;
}

/* Generating "How Might We" Questions */
.ballot-define__hmw {
  margin-top: 200px;
}

.ballot-define__hmw .ballot-define__text {
  max-width: 728px;
}

.ballot-define__sub-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: rgba(69, 69, 69, 0.6);
  margin-top: 40px;
  margin-bottom: 24px;
}

.ballot-define__list {
  max-width: 743px;
  padding-left: 20px;
  margin: 0;
  list-style-type: disc;
}

.ballot-define__list-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(69, 69, 69, 0.6);
  margin-bottom: 12px;
}

/* ============================== */
/* BALLOT IDEATION SECTION        */
/* ============================== */

.ballot-ideate {
  margin-top: 0;
}

.ballot-ideate__header {
  background-color: #E1D89F;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.ballot-ideate__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

.ballot-ideate__broad-set {
  margin-top: 100px;
}

.ballot-ideate__broad-set .ballot-define__text,
.ballot-ideate__brainstorming .ballot-define__text {
  max-width: 728px;
}

.ballot-ideate__brainstorming {
  margin-top: 100px;
}

.ballot-ideate__matrix {
  margin-top: 100px;
}

.ballot-ideate__matrix .ballot-define__text {
  max-width: 728px;
}

.ballot-ideate__matrix-image {
  width: 100%;
  max-width: 751px;
  height: auto;
  display: block;
  margin-top: 60px;
  margin-bottom: 100px;
}

/* ============================== */
/* BALLOT DESIGN SECTION          */
/* ============================== */

.ballot-design {
  margin-top: 0;
}

.ballot-design__header {
  background-color: #E1D89F;
  height: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  box-sizing: border-box;
}

.ballot-design__header-title {
  font-size: 50px;
  font-weight: 400;
  line-height: 62px;
  color: #111012;
  margin: 0;
  text-align: center;
}

.ballot-design__user-flows {
  margin-top: 200px;
}

.ballot-design__user-flows .ballot-define__text {
  max-width: 728px;
}

.ballot-design__flow-image-container {
  max-width: 1237px;
  margin: 60px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ballot-design__flow-image {
  width: 100%;
  max-width: 1237px;
  height: auto;
  display: block;
}

.ballot-design__sketches {
  margin-top: 200px;
}

.ballot-design__sketches .ballot-define__text {
  max-width: 728px;
}

.ballot-design__sketches-image-container {
  width: 100%;
  margin: 60px 0 0;
}

.ballot-design__sketches-image {
  width: 100%;
  height: auto;
  display: block;
}

.ballot-design__mid-fi {
  margin-top: 200px;
}

.ballot-design__mid-fi .ballot-define__text {
  max-width: 728px;
}

.ballot-design__mid-fi-image-container {
  width: 100%;
  margin: 60px 0 0;
}

.ballot-design__mid-fi-image {
  width: 100%;
  height: auto;
  display: block;
}

.ballot-design__user-testing {
  margin-top: 200px;
}

.ballot-design__user-testing .ballot-define__text {
  max-width: 728px;
}

.ballot-design__key-findings-image-container {
  width: 100%;
  margin: 60px 0 0;
}

.ballot-design__key-findings-image {
  width: 100%;
  height: auto;
  display: block;
}

/* UI Design Section */
.ballot-design__ui-design {
  margin-top: 200px;
}

.ballot-design__ui-design .ballot-define__text {
  max-width: 728px;
}

/* Accessibility Section */
.ballot-design__accessibility {
  margin-top: 150px;
}

.ballot-design__accessibility .ballot-define__text {
  max-width: 728px;
}

.ballot-design__accessibility-image-container {
  width: 100%;
  margin: 100px 0 0;
  background-color: #6A6555;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ballot-design__accessibility-image {
  width: 234px;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 10px solid rgba(255, 255, 255, 0.15);
}

/* Digital Voters' Card */
.ballot-design__digital-card {
  margin-top: 200px;
}

.ballot-design__digital-card .ballot-define__text {
  max-width: 728px;
}

/* Verification Section */
.ballot-design__verification {
  margin-top: 100px;
}

.ballot-design__verification .ballot-define__text {
  max-width: 728px;
}

.ballot-design__verification-image-container {
  width: 100%;
  margin: 100px 0 0;
  background-color: #6A6555;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ballot-design__verification-image {
  width: 234px;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 10px solid rgba(255, 255, 255, 0.15);
}

/* Responsive Landing Section */
.ballot-design__responsive-landing-container {
  width: 100%;
  margin-top: 200px;
}

.ballot-design__responsive-landing-image {
  width: 100%;
  height: auto;
  display: block;
}

/* All Screens Section */
.ballot-design__all-screens-container {
  width: 100%;
  margin-top: 200px;
}

.ballot-design__all-screens-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Voting Section */
.ballot-design__voting-image-container {
  width: 100%;
  margin: 200px 0 0;
  background-color: #6A6555;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ballot-design__voting-image {
  width: 234px;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 10px solid rgba(255, 255, 255, 0.15);
}

/* Learnings Section */
.ballot-learnings {
  margin-top: 200px;
}

.ballot-learnings .ballot-define__text {
  max-width: 728px;
}



/* ============================== */
/* SURENT PAGE RESPONSIVE STYLES  */
/* ============================== */

/* Tablet Breakpoint for Surent */
@media (max-width: 1024px) {
  .surent-overview__heading {
    font-size: 40px;
    line-height: 50px;
    max-width: 100%;
  }

  .surent-overview__grid {
    column-gap: 80px;
    row-gap: 60px;
    margin-top: 120px;
  }

  .surent-overview__title {
    font-size: 24px;
    line-height: 32px;
  }

  .surent-overview__text {
    font-size: 16px;
    margin-top: 16px;
  }

  .surent-quicksearch {
    margin-top: 100px;
  }

  .surent-quicksearch__video-wrapper {
    padding: 60px 24px;
  }

  .surent-problem,
  .surent-solution,
  .surent-research,
  .surent-personas,
  .surent-design {
    margin-top: 80px;
  }

  .surent-problem__title,
  .surent-solution__title,
  .surent-research__title,
  .surent-personas__title,
  .surent-design__title {
    font-size: 40px;
    line-height: 50px;
  }

  .surent-learnings {
    margin-top: 200px;
  }

  .surent-thankyou {
    margin-top: 150px;
  }

  .surent-thankyou__title {
    font-size: 48px;
  }
}

/* Mobile Breakpoint for Surent */
@media (max-width: 768px) {
  .surent-overview {
    padding-top: 60px;
  }

  .surent-overview__label {
    font-size: 14px;
    line-height: 24px;
  }

  .surent-overview__heading {
    font-size: 28px;
    line-height: 38px;
    margin-top: 16px;
  }

  .surent-overview__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  .surent-overview__block--left .surent-overview__text,
  .surent-overview__block--right .surent-overview__text {
    max-width: 100%;
  }

  .surent-overview__title {
    font-size: 20px;
    line-height: 28px;
  }

  .surent-overview__text {
    font-size: 15px;
    margin-top: 12px;
  }

  .surent-quicksearch {
    margin-top: 60px;
  }

  .surent-quicksearch__video-wrapper {
    padding: 40px 16px;
  }

  .surent-quicksearch__video-container {
    border-radius: 16px;
    border-width: 10px;
  }

  .surent-quicksearch__caption,
  .surent-carousel__caption,
  .surent-define__caption,
  .surent-design__caption,
  .surent-design__video-caption,
  .ballot-define__journey-caption,
  .ballot-design__gif-caption,
  .ballot-define__persona-caption {
    font-size: 14px;
    line-height: 22px;
    padding: 8px 16px;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section Headers - Reduced height and text size */
  .surent-research__header,
  .surent-define__header,
  .surent-ideate__header,
  .surent-design__header,
  .ballot-define__affinity-image,
  .ballot-define__empathy-image,
  .ballot-define__persona-image--two,
  .ballot-define__journey-map,
  .ballot-ideate__matrix-image,
  .ballot-design__flow-image-container,
  .ballot-design__sketches-image-container,
  .ballot-design__mid-fi-image-container,
  .ballot-design__key-findings-image-container,
  .ballot-design__accessibility-image-container {
    margin-top: 40px !important;
  }

  .ballot-define__journey-map,
  .ballot-design__flow-image-container {
    margin: 40px auto 0 !important;
  }

  .ballot-research__header,
  .ballot-define__header,
  .ballot-ideate__header,
  .ballot-design__header {
    height: auto;
    min-height: 120px;
    padding: 40px 16px;
  }

  .surent-research__header-title,
  .surent-define__header-title,
  .surent-ideate__header-title,
  .surent-design__header-title,
  .ballot-research__header-title,
  .ballot-define__header-title,
  .ballot-ideate__header-title,
  .ballot-design__header-title {
    font-size: 28px;
    line-height: 36px;
  }

  .surent-problem,
  .surent-solution,
  .surent-research,
  .surent-personas {
    margin-top: 60px;
  }

  .surent-problem__container,
  .surent-solution__container,
  .surent-research__container,
  .surent-personas__container {
    padding: 0 16px;
  }

  .surent-problem__title,
  .surent-solution__title,
  .surent-research__title,
  .surent-personas__title,
  .surent-design__title,
  .surent-define__title,
  .surent-ideate__title,
  .ballot-research__assumptions-title,
  .ballot-research__section-title,
  .ballot-research__feedback-title,
  .ballot-define__section-title {
    font-size: 20px;
    line-height: 28px;
  }

  .ballot-overview__title {
    font-size: 20px !important;
    line-height: 28px;
  }

  .ballot-overview__detail-title {
    font-size: 20px !important;
    font-weight: 400 !important;
  }

  .surent-problem__text,
  .surent-solution__text,
  .surent-research__text,
  .surent-define__text,
  .surent-ideate__text,
  .surent-personas__text,
  .surent-design__text,
  .ballot-research__text,
  .ballot-define__text,
  .ballot-research__assumption-text,
  .ballot-define__theme-text,
  .ballot-define__insight-text,
  .ballot-define__focused-text,
  .ballot-define__key-insight-text {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 100%;
  }

  .ballot-research__feedback-image {
    margin-top: 30px;
  }

  .ballot-define__persona-caption {
    margin-bottom: 40px !important;
  }

  .ballot-research__assumptions-grid {
    margin-top: 24px;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  /* Define Section - Tighten gaps on mobile */
  .ballot-define__themes,
  .ballot-define__insights,
  .ballot-define__inclusiveness,
  .ballot-define__focused-research,
  .ballot-define__empathy-mapping,
  .ballot-define__personas-text,
  .ballot-define__journey-intro,
  .ballot-define__pov,
  .ballot-define__hmw,
  .ballot-design__user-flows,
  .ballot-design__sketches,
  .ballot-design__mid-fi,
  .ballot-design__user-testing,
  .ballot-design__ui-design,
  .ballot-design__accessibility,
  .ballot-design__digital-card,
  .ballot-design__responsive-landing-container,
  .ballot-design__all-screens-container,
  .ballot-design__voting-image-container {
    margin-top: 100px !important;
  }

  /* Group Verification Content - Mobile */
  .ballot-design__verification {
    margin-top: 24px !important;
  }

  .ballot-design__verification-image-container,
  .ballot-design__accessibility-image-container,
  .ballot-design__voting-image-container {
    margin-top: 40px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Key Findings & Insights Section - Mobile */
  .ballot-define__key-insight-label {
    font-size: 20px;
    margin-top: 24px;
  }

  .ballot-define__key-insight-text {
    font-size: 14px !important;
  }

  /* Learnings Section - Mobile */
  .ballot-learnings {
    margin-top: 100px !important;
  }

  .surent-research__findings {
    margin-top: 60px;
  }

  .surent-research__findings-title {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
  }

  .surent-research__findings-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 32px;
  }

  .surent-research__finding-card--centered {
    max-width: 100%;
  }

  .surent-research__percentage {
    font-size: 32px;
  }

  .surent-research__finding-headline {
    font-size: 15px;
    max-width: 100%;
  }

  .surent-research__finding-text {
    font-size: 14px;
    max-width: 100%;
  }

  /* User Survey & Competitor Research - Consistent spacing */
  .surent-research__survey,
  .surent-research__competitor {
    margin-top: 60px;
  }

  /* Define & Ideate sections - Consistent spacing */
  .surent-define__persona,
  .surent-define__storymap,
  .surent-ideate__userflow,
  .surent-ideate__wireframe {
    margin-top: 60px;
  }

  .surent-define__persona-image,
  .surent-define__storymap-image {
    margin-top: 40px;
  }

  /* Ideate Section - Reduced spacing */
  .surent-ideate__userflow-image--tenant,
  .surent-ideate__userflow-image--landlord {
    margin-top: 40px;
  }

  .surent-ideate__ia {
    margin-top: 60px;
  }

  .surent-ideate__ia-image:first-of-type {
    margin-top: 40px;
  }

  /* Survey Carousel - Mobile Horizontal Scroll */
  .surent-carousel {
    margin-top: 40px;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .surent-carousel__btn {
    display: none;
  }

  .surent-carousel__slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    padding: 0 16px;
    max-width: 100%;
  }

  .surent-carousel__slides::-webkit-scrollbar {
    display: none;
  }

  .surent-carousel__slide {
    display: flex;
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .surent-carousel__slide--active {
    display: flex;
  }

  .surent-carousel__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .surent-carousel__caption {
    margin-top: 16px;
  }

  /* Competitor Research - reduced spacing */
  .surent-research__competitor-image {
    margin-top: 40px;
  }

  /* Persona Cards */
  .surent-personas__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Design Section */
  .surent-design {
    margin-top: 60px;
  }

  .surent-design__video-wrapper {
    padding: 40px 16px;
  }

  .surent-design__video-container {
    border-radius: 16px;
    border-width: 10px;
  }

  /* Carousel */
  .surent-landing-carousel {
    margin-top: 60px;
  }

  .surent-landing-carousel__container {
    padding: 0 16px;
  }

  /* Learnings & Thank You */
  .surent-learnings {
    margin-top: 100px;
  }

  .surent-learnings__container {
    padding: 0 16px;
  }

  .surent-learnings__title {
    font-size: 20px;
    line-height: 28px;
  }

  .surent-learnings__text {
    font-size: 15px;
    max-width: 100%;
    margin-top: 16px;
  }

  .surent-thankyou {
    margin-top: 80px;
  }

  .surent-thankyou__title {
    font-size: 40px;
  }

  /* Project Footer */
  .surent-footer {
    margin-top: 60px;
    height: auto;
    padding: 48px 0;
  }

  .surent-footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 16px;
  }

  .surent-footer__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .surent-footer__name {
    font-size: 16px;
  }

  .surent-footer__title {
    font-size: 13px;
  }
}

/* ============================== */
/* BALLOT PAGE MOBILE STYLES      */
/* ============================== */
@media (max-width: 768px) {

  /* Global Adjustments */
  .ballot-section {
    padding: 60px 0;
  }

  /* Restore section spacing for mobile (Override Desktop 200px) */
  .ballot-overview,
  .ballot-research,
  .ballot-define,
  .ballot-ideate,
  .ballot-design {
    margin-bottom: 60px !important;
  }

  /* Reset top margins on mobile to avoid double spacing */
  .ballot-research,
  .ballot-define,
  .ballot-ideate,
  .ballot-design {
    margin-top: 0 !important;
  }

  /* Add consistent container padding on mobile */
  .ballot-overview__container,
  .ballot-research__container,
  .ballot-define__container,
  .ballot-ideate__container,
  .ballot-design__container {
    padding: 0 16px;
  }

  /* Typography Overrides */
  .ballot-overview__heading,
  .ballot-hero__title {
    font-size: 28px;
    line-height: 1.4;
  }


  .ballot-research__header-title,
  .ballot-define__header-title,
  .surent-thankyou__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .ballot-define__section-title,
  .ballot-define__key-insight-label {
    font-size: 20px !important;
    line-height: 1.4;
  }

  .ballot-define__sub-title {
    font-size: 16px !important;
    line-height: 1.5;
  }

  /* Ensure User Interviews title fits on mobile */
  .ballot-research__interviews .ballot-research__section-title {
    max-width: 100%;
    text-align: left;
  }

  /* Hero Section */
  .ballot-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .ballot-hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .ballot-hero__text {
    max-width: 100%;
  }

  .ballot-hero__title {
    margin-bottom: 16px;
  }

  .ballot-hero__visuals {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .ballot-hero__mockup-1,
  .ballot-hero__mockup-2 {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 320px;
  }

  .ballot-hero__mockup-2 {
    display: none;
    /* Simplification for mobile */
  }

  /* Overview */
  .ballot-overview__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .ballot-overview__about-goal {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    /* Consistent with gap */
  }

  .ballot-overview__about,
  .ballot-overview__goal {
    padding-right: 0;
  }

  .ballot-overview__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
  }

  .ballot-overview__detail {
    width: 100%;
  }

  /* Process */
  .ballot-process__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ballot-process__step::after {
    display: none;
  }

  /* Research */
  .ballot-research__grid,
  .ballot-research__assumptions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ballot-research__feedback-image {
    max-width: 100%;
    height: auto;
  }

  /* Define */
  .ballot-define__grid,
  .ballot-define__themes-grid,
  .ballot-define__key-insights-grid,
  .ballot-define__insights-grid,
  .ballot-define__focused-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ballot-define__card,
  .ballot-define__theme-card,
  .ballot-define__insight-card,
  .ballot-define__key-insight-card,
  .ballot-define__focused-card {
    min-height: auto;
    width: 100%;
    /* Ensure cards take full width */
  }

  .ballot-define__affinity-image,
  .ballot-define__empathy-image,
  .ballot-define__journey-image {
    max-width: 100%;
    height: auto;
  }

  .ballot-define__personas-images {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ballot-define__persona-image {
    max-width: 90%;
    /* prevent edge-to-edge */
    height: auto;
    margin: 0 auto;
    /* center alignment */
    display: block;
  }

  .ballot-define__persona-image--two {
    margin-top: 0 !important;
  }

  /* Ideate */
  .ballot-ideate__matrix-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ballot-ideate__matrix-image {
    max-width: 100%;
    height: auto;
  }

  .ballot-ideate__flows-grid {
    grid-template-columns: 1fr;
  }

  /* Design */
  .ballot-design__grid {
    grid-template-columns: 1fr;
  }

  .ballot-design__flow-image,
  .ballot-design__sketches-image,
  .ballot-design__mid-fi-image,
  .ballot-design__key-findings-image,
  .ballot-design__accessibility-image,
  .ballot-design__verification-image,
  .ballot-design__responsive-landing-image,
  .ballot-design__all-screens-image,
  .ballot-design__voting-image {
    max-width: 100%;
    height: auto;
  }

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

  /* Containers holding images that might be flex */
  .ballot-design__flow-image-container,
  .ballot-design__sketches-image-container,
  .ballot-design__mid-fi-image-container,
  .ballot-design__key-findings-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }

  /* Responsiveness Mockup Section */
  .ballot-responsive {
    padding: 60px 0;
  }

  .ballot-responsive__mockup {
    margin-top: 40px;
  }

  .ballot-mockup__image {
    max-width: 100%;
    height: auto;
  }

  /* Learnings */
  .ballot-learnings__grid {
    grid-template-columns: 1fr;
  }
}

/* Additional Layout Refinements for Mobile */
@media (max-width: 768px) {
  .ballot-define__personas-images {
    margin-top: 60px;
    padding: 0;
  }

  .ballot-process__image {
    margin-top: 40px;
    padding: 0 16px;
  }
}

/* ============================== */
/* ABOUT PAGE STYLES              */
/* ============================== */

.about {
  padding-top: 100px;
}

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

.about__top {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.about__image-wrapper {
  flex-shrink: 0;
}

.about__image {
  width: 365px;
  height: 474px;
  object-fit: cover;
  display: block;
}

.about__content {
  max-width: 668px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  color: #111012;
  margin: 0 0 24px 0;
}

.about__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.6);
  margin: 0;
}

.about__bottom {
  margin-top: 100px;
  max-width: 1133px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-footer {
  margin-top: 0;
}

/* About page divider - use 200px spacing */
.about__bottom+.footer-divider {
  margin-top: 200px;
}

/* About Page Mobile */
@media (max-width: 768px) {
  .about {
    padding-top: 60px;
  }

  .about__container {
    padding: 0 16px;
  }

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

  .about__image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about__image {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .about__content {
    max-width: 100%;
    gap: 20px;
  }

  .about__heading {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
  }

  .about__text {
    font-size: 15px;
    line-height: 1.6;
  }

  .about__bottom {
    margin-top: 40px;
    max-width: 100%;
    gap: 20px;
  }

  .about__bottom+.footer-divider {
    margin-top: 100px;
  }

  .about-footer {
    margin-top: 0;
  }
}