/* Case Study Page - NaviPartner Layout */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-up-hor-left {
  0% {
    transform: scaleX(0.4);
    transform-origin: 0% 0%;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
  }
}

@keyframes scale-up-hor-right {
  0% {
    transform: scaleX(0);
    transform-origin: 100% 100%;
  }
  100% {
    transform: scaleX(1);
    transform-origin: 100% 100%;
  }
}

.cs-page {
  padding-top: 0;
  padding-bottom: 6vw;
  background: #f4f8fc;
}

.cs-container {
  max-width: 78vw;
  margin: 0 auto;
  padding-top: 6vw;
}

/* Hero Section - Left Aligned with Logo Right */
.cs-hero-new {
  position: relative;
  min-height: 65vh;
  width: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 6vw 0 5vw 0;
}

.cs-hero-content-wrapper {
  position: relative;
  max-width: 80vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6vw;
  z-index: 2;
  width: 100%;
}

.cs-hero-text-content {
  flex: 1;
  max-width: 60%;
  text-align: left;
}

.cs-hero-title-new {
  position: relative;
  font-family: "markProBold";
  font-size: 4vw;
  line-height: 1.15;
  letter-spacing: -0.05vw;
  margin: 0;
  color: #222;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Gradient text helper, same look as case studies main hero */
.gradientType {
  background-image: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%);
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cs-hero-line {
  display: block;
}

.cs-hero-line-black {
  color: #222;
}

.cs-hero-line-blue {
  color: #345cad;
}

.cs-hero-logo-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5vw;
  background: #f8fafb;
  border-radius: 1.5vw;
  box-shadow: 0 4px 20px rgba(40,84,162,0.1);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cs-hero-client-logo {
  width: 100%;
  height: auto;
  max-width: 18vw;
  max-height: 12vw;
  object-fit: contain;
  display: block;
}

.cs-hero-seor {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 25vh;
  width: auto;
  z-index: 1;
  opacity: 0.6;
  animation: scale-up-br 0.8s ease-out both;
}

.cs-hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #e0e0e0;
  z-index: 3;
}

@keyframes scale-up-br {
  0% {
    transform: scale(0.5);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: scale(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}

/* Client Metadata Section */
.cs-metadata {
  margin-bottom: 4vw;
  padding: 2vw;
  background: #fff;
  border-radius: 1vw;
  box-shadow: 0 2px 8px rgba(40,84,162,0.08);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cs-metadata-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
}

.cs-metadata-grid-extended {
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
}

.cs-metadata-item {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  position: relative;
  padding-left: 1vw;
}

.cs-metadata-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3vw;
  width: 0.3vw;
  height: 0.3vw;
  background: #345cad;
  border-radius: 50%;
}

.cs-metadata-item:nth-child(2)::before {
  background: #1ed197;
}

.cs-metadata-item:nth-child(3)::before {
  background: linear-gradient(135deg, #345cad 0%, #1ed197 100%);
}

.cs-metadata-label {
  font-family: "markProMedium";
  font-size: 1vw;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #345cad;
}

.cs-metadata-value {
  font-family: "markProRegular";
  font-size: 1.3vw;
  line-height: 1.5;
  color: #222;
}

/* Section Styles */
.cs-section {
  margin-bottom: 4vw;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  background: #fff;
  padding: 3vw;
  border-radius: 1vw;
  box-shadow: 0 2px 8px rgba(40,84,162,0.06);
}

.cs-section-heading {
  font-family: "markProBold";
  font-size: 1.2vw;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1.2vw 0;
  color: #345cad;
  position: relative;
  padding-bottom: 0.8vw;
}

.cs-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4vw;
  height: 0.2vw;
  background: linear-gradient(90deg, #345cad 0%, #1ed197 100%);
  border-radius: 2px;
  animation: scale-up-hor-left 1s ease-in-out both;
}

.cs-section-text {
  font-family: "markProRegular";
  font-size: 1.3vw;
  line-height: 1.7;
  margin: 0 0 1.2vw 0;
  color: #222;
}

.cs-section-text:last-child {
  margin-bottom: 0;
}

.cs-link {
  color: #345cad;
  text-decoration: none;
  font-family: "markProMedium";
  transition: all 0.3s ease;
  position: relative;
}

.cs-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #345cad 0%, #1ed197 100%);
  transition: width 0.3s ease;
}

.cs-link:hover::after {
  width: 100%;
}

/* Two Column Layout */
.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: start;
}

.cs-two-col-left,
.cs-two-col-right {
  min-width: 0;
}

/* Quote Box */
.cs-quote {
  background: #fff;
  border-left: 0.3vw solid #345cad;
  padding: 1.8vw 2vw;
  margin: 0;
  box-shadow: 0 2px 8px rgba(40,84,162,0.08);
  border-radius: 0.5vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(40,84,162,0.12);
}

.cs-quote-text {
  font-family: "markProRegular";
  font-size: 1.3vw;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1.5vw 0;
  color: #222;
}

.cs-quote-author {
  font-family: "markProBold";
  font-size: 1.3vw;
  margin: 0 0 0.3vw 0;
  color: #111;
}

.cs-quote-role {
  font-family: "markProRegular";
  font-size: 1.15vw;
  margin: 0;
  color: #666666;
}

/* Solution Section */
.cs-section-subheading {
  font-family: "markProMedium";
  font-size: 1.3vw;
  margin: 1.5vw 0 0.8vw 0;
  color: #111;
}

.cs-bullet-list {
  font-family: "markProRegular";
  font-size: 1.3vw;
  line-height: 1.8;
  margin: 0;
  padding-left: 1.5vw;
  color: #222;
}

.cs-bullet-list li::marker {
  color: #345cad;
}

.cs-bullet-list li {
  margin-bottom: 0.5vw;
}

.cs-bullet-list li strong {
  font-family: "markProBold";
  color: #111;
}

/* CTA Section */
.cs-cta {
  margin-bottom: 4vw;
  text-align: center;
  background: linear-gradient(135deg, #345cad 0%, #1ed197 100%);
  color: #fff;
  padding: 4vw 3vw !important;
}

.cs-cta .cs-section-heading {
  color: #fff;
  font-size: 1.8vw;
  margin-bottom: 1.5vw;
}

.cs-cta .cs-section-heading::after {
  display: none;
}

.cs-cta .cs-section-text {
  color: #fff;
  font-size: 1.2vw;
  max-width: 55vw;
  margin: 0 auto 2.5vw auto;
  opacity: 0.95;
}

.cs-cta-content {
  max-width: 75vw;
  margin: 0 auto;
}

.cs-cta-buttons {
  display: flex;
  gap: 2vw;
  justify-content: center;
  align-items: center;
}

.cs-cta-button,
a.cs-cta-button {
  font-family: "markProMedium";
  font-size: 1.1vw;
  padding: 1vw 2.5vw;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  color: #345cad;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cs-cta-button:hover,
a.cs-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.cs-cta-button-secondary,
a.cs-cta-button-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
}

.cs-cta-button-secondary:hover,
a.cs-cta-button-secondary:hover {
  background: #fff;
  color: #345cad;
}

/* Video Section */
.cs-video-section {
  margin-bottom: 4vw;
}

.cs-video-wrapper {
  margin-top: 2vw;
}

.cs-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 1vw;
  box-shadow: 0 4px 16px rgba(40,84,162,0.15);
  background: #000;
}

.cs-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1vw;
}

/* Related Cases Slider */
.cs-related-cases {
  margin-bottom: 4vw;
}

.cs-slider-wrapper {
  margin-top: 2vw;
  overflow: hidden;
  position: relative;
}

.cs-slider-container {
  display: flex;
  gap: 2vw;
  padding: 1vw 0;
  animation: autoScroll 20s linear infinite;
}

.cs-slider-container:hover {
  animation-play-state: paused;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cs-slider-card {
  flex: 0 0 auto;
  width: 18vw;
  min-width: 18vw;
  background: #f4f8fc;
  border-radius: 1vw;
  padding: 2vw;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

.cs-slider-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(40,84,162,0.2);
  border-color: #345cad;
  background: #fff;
}

.cs-slider-logo {
  width: 100%;
  height: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5vw;
}

.cs-slider-logo img {
  max-width: 12vw;
  max-height: 6vw;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cs-slider-card:hover .cs-slider-logo img {
  transform: scale(1.05);
}

.cs-slider-name {
  font-family: "markProBold";
  font-size: 1.2vw;
  color: #345cad;
}

.cs-slider-client-name {
  font-family: "markProMedium";
  font-size: 1.1vw;
  color: #222;
  margin: 0;
}

/* Divider */
.cs-divider {
  width: 100%;
  height: 0.05vw;
  background: linear-gradient(90deg, #345cad 0%, #1ed197 100%);
  margin-top: 3vw;
}

/* Key Optimization Table */
.cs-optimization-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2vw 0;
  box-shadow: 0 2px 8px rgba(40,84,162,0.08);
  border-radius: 0.5vw;
  overflow: hidden;
}

.cs-optimization-table thead {
  background: linear-gradient(135deg, #345cad 0%, #1ed197 100%);
}

.cs-optimization-table thead th {
  font-family: "markProBold";
  font-size: 1.1vw;
  color: #fff;
  padding: 1.2vw 1.5vw;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cs-optimization-table tbody tr {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease;
}

.cs-optimization-table tbody tr:hover {
  background: #f8fafb;
}

.cs-optimization-table tbody tr:last-child {
  border-bottom: none;
}

.cs-optimization-table tbody td {
  font-family: "markProRegular";
  font-size: 1.1vw;
  color: #222;
  padding: 1.2vw 1.5vw;
  vertical-align: top;
}

.cs-optimization-table tbody td:first-child {
  font-family: "markProMedium";
  color: #345cad;
  width: 20%;
}

.cs-optimization-table tbody td:nth-child(2) {
  width: 50%;
}

.cs-optimization-table tbody td:last-child {
  font-family: "markProBold";
  color: #1ed197;
  width: 30%;
}

/* Three Column Challenge/Solution Blocks */
.cs-three-col-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  margin-top: 2vw;
}

.cs-challenge-block,
.cs-solution-block {
  background: #fff;
  border-radius: 1vw;
  padding: 2vw;
  box-shadow: 0 2px 12px rgba(40,84,162,0.1);
  transition: all 0.3s ease;
  border-top: 0.3vw solid #345cad;
}

.cs-solution-block {
  border-top-color: #1ed197;
}

.cs-challenge-block:hover,
.cs-solution-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(40,84,162,0.2);
}

.cs-block-number {
  font-family: "markProBlack";
  font-size: 3vw;
  color: #345cad;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.5vw;
}

.cs-solution-block .cs-block-number {
  color: #1ed197;
}

.cs-block-title {
  font-family: "markProBold";
  font-size: 1.3vw;
  color: #111;
  margin: 0 0 1vw 0;
  line-height: 1.3;
}

.cs-block-text {
  font-family: "markProRegular";
  font-size: 1.1vw;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

/* Creative Results Section */
.cs-results-creative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  margin-top: 2vw;
}

.cs-results-left {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.cs-results-card {
  background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
  border-radius: 1vw;
  padding: 2vw;
  box-shadow: 0 2px 12px rgba(40,84,162,0.08);
  border-left: 0.3vw solid #345cad;
}

.cs-results-card:nth-child(2) {
  border-left-color: #1ed197;
}

.cs-results-card h3 {
  font-family: "markProBold";
  font-size: 1.2vw;
  color: #345cad;
  margin: 0 0 1.2vw 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cs-results-card:nth-child(2) h3 {
  color: #1ed197;
}

.cs-results-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-results-card li {
  font-family: "markProRegular";
  font-size: 1.1vw;
  color: #222;
  padding: 0.8vw 0;
  padding-left: 2vw;
  position: relative;
  line-height: 1.6;
}

.cs-results-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1ed197;
  font-family: "markProBold";
  font-size: 1.3vw;
}

.cs-results-card li strong {
  font-family: "markProBold";
  color: #111;
}

.cs-testimonial-large {
  background: linear-gradient(135deg, #345cad 0%, #1ed197 100%);
  border-radius: 1vw;
  padding: 3vw;
  color: #fff;
  box-shadow: 0 8px 24px rgba(40,84,162,0.2);
  position: relative;
  overflow: hidden;
}

.cs-testimonial-large::before {
  content: '"';
  position: absolute;
  top: 1vw;
  left: 2vw;
  font-family: "markProBlack";
  font-size: 12vw;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

.cs-testimonial-large-text {
  font-family: "markProRegular";
  font-size: 1.3vw;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 2vw 0;
  position: relative;
  z-index: 1;
}

.cs-testimonial-large-author {
  font-family: "markProBold";
  font-size: 1.2vw;
  margin: 0 0 0.3vw 0;
  position: relative;
  z-index: 1;
}

.cs-testimonial-large-role {
  font-family: "markProMedium";
  font-size: 1vw;
  opacity: 0.9;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet landscape and smaller desktops */
@media (max-width: 1024px) {
  .cs-container {
    max-width: 85vw;
    padding-top: 5vw;
  }

  .cs-hero-new {
    min-height: 55vh;
    padding: 5vw 0 4vw 0;
  }

  .cs-hero-content-wrapper {
    max-width: 85vw;
    gap: 4vw;
  }

  .cs-hero-title-new {
    font-size: 4.5vw;
  }

  .cs-hero-client-logo {
    max-width: 20vw;
    max-height: 14vw;
  }

  .cs-section {
    padding: 2.5vw;
    margin-bottom: 3.5vw;
  }

  .cs-section-heading {
    font-size: 1.4vw;
  }

  .cs-section-text {
    font-size: 1.4vw;
  }

  .cs-metadata-label {
    font-size: 1.1vw;
  }

  .cs-metadata-value {
    font-size: 1.4vw;
  }

  .cs-three-col-blocks {
    gap: 1.8vw;
  }

  .cs-block-title {
    font-size: 1.4vw;
  }

  .cs-block-text {
    font-size: 1.2vw;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .cs-page {
    padding-bottom: 8vw;
  }

  .cs-container {
    max-width: 90vw;
    padding-top: 6vw;
  }

  .cs-hero-new {
    min-height: auto;
    padding: 8vw 0 6vw 0;
  }

  .cs-hero-content-wrapper {
    max-width: 90vw;
    flex-direction: column;
    gap: 6vw;
  }

  .cs-hero-text-content {
    max-width: 100%;
    text-align: center;
  }

  .cs-hero-title-new {
    font-size: 6.5vw;
    line-height: 1.2;
  }

  .cs-hero-logo-wrapper {
    padding: 5vw;
    border-radius: 2.5vw;
    width: 100%;
    max-width: 60vw;
    margin: 0 auto;
  }

  .cs-hero-client-logo {
    max-width: 45vw;
    max-height: 18vw;
  }

  .cs-hero-seor {
    height: 20vh;
    opacity: 0.5;
  }

  .cs-section {
    padding: 4vw;
    margin-bottom: 4vw;
    border-radius: 2vw;
  }

  .cs-section-heading {
    font-size: 2.8vw;
    margin-bottom: 2vw;
    padding-bottom: 1.5vw;
  }

  .cs-section-heading::after {
    width: 8vw;
    height: 0.4vw;
  }

  .cs-section-text {
    font-size: 2.8vw;
    line-height: 1.8;
    margin-bottom: 2vw;
  }

  .cs-section-subheading {
    font-size: 3vw;
    margin: 2.5vw 0 1.5vw 0;
  }

  .cs-metadata {
    padding: 4vw;
    margin-bottom: 4vw;
    border-radius: 2vw;
  }

  .cs-metadata-grid {
    grid-template-columns: 1fr;
    gap: 3vw;
  }

  .cs-metadata-grid-extended {
    grid-template-columns: 1fr;
  }

  .cs-metadata-item {
    gap: 1.2vw;
    padding-left: 2vw;
  }

  .cs-metadata-item::before {
    width: 0.6vw;
    height: 0.6vw;
    top: 0.6vw;
  }

  .cs-metadata-label {
    font-size: 2.5vw;
  }

  .cs-metadata-value {
    font-size: 3vw;
  }

  .cs-two-col {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .cs-quote {
    border-left-width: 0.5vw;
    padding: 3vw 3.5vw;
    border-radius: 1.5vw;
  }

  .cs-quote-text {
    font-size: 2.8vw;
    margin-bottom: 2.5vw;
  }

  .cs-quote-author {
    font-size: 3vw;
    margin-bottom: 0.6vw;
  }

  .cs-quote-role {
    font-size: 2.5vw;
  }

  .cs-optimization-table {
    margin: 3vw 0;
    border-radius: 1.5vw;
  }

  .cs-optimization-table thead th {
    font-size: 2.5vw;
    padding: 2.5vw 2vw;
  }

  .cs-optimization-table tbody td {
    font-size: 2.5vw;
    padding: 2.5vw 2vw;
  }

  .cs-optimization-table tbody td:first-child {
    font-size: 2.8vw;
  }

  .cs-three-col-blocks {
    grid-template-columns: 1fr;
    gap: 3.5vw;
    margin-top: 3vw;
  }

  .cs-challenge-block,
  .cs-solution-block {
    padding: 3.5vw;
    border-radius: 2vw;
    border-top-width: 0.5vw;
  }

  .cs-block-number {
    font-size: 7vw;
    margin-bottom: 1vw;
  }

  .cs-block-title {
    font-size: 3.5vw;
    margin-bottom: 1.5vw;
  }

  .cs-block-text {
    font-size: 2.8vw;
    line-height: 1.8;
  }

  .cs-bullet-list {
    font-size: 2.8vw;
    padding-left: 3vw;
  }

  .cs-bullet-list li {
    margin-bottom: 1vw;
  }

  .cs-results-creative {
    grid-template-columns: 1fr;
    gap: 3.5vw;
    margin-top: 3vw;
  }

  .cs-results-left {
    gap: 3.5vw;
  }

  .cs-results-card {
    padding: 3.5vw;
    border-radius: 2vw;
    border-left-width: 0.5vw;
  }

  .cs-results-card h3 {
    font-size: 3vw;
    margin-bottom: 2vw;
  }

  .cs-results-card li {
    font-size: 2.8vw;
    padding: 1.5vw 0;
    padding-left: 4vw;
  }

  .cs-results-card li::before {
    font-size: 3vw;
  }

  .cs-testimonial-large {
    padding: 5vw;
    border-radius: 2vw;
  }

  .cs-testimonial-large::before {
    font-size: 18vw;
    top: 2vw;
    left: 3vw;
  }

  .cs-testimonial-large-text {
    font-size: 2.8vw;
    margin-bottom: 3vw;
  }

  .cs-testimonial-large-author {
    font-size: 3vw;
    margin-bottom: 0.6vw;
  }

  .cs-testimonial-large-role {
    font-size: 2.5vw;
  }

  .cs-video-wrapper {
    margin-top: 3vw;
  }

  .cs-video-container {
    padding-bottom: 56.25%;
    border-radius: 2vw;
  }

  .cs-video-iframe {
    border-radius: 2vw;
  }

  .cs-cta {
    padding: 6vw 4vw !important;
    margin-bottom: 4vw;
    border-radius: 2vw;
  }

  .cs-cta .cs-section-heading {
    font-size: 4.5vw;
    margin-bottom: 2.5vw;
  }

  .cs-cta .cs-section-text {
    font-size: 2.8vw;
    max-width: 90vw;
    margin-bottom: 4vw;
  }

  .cs-cta-buttons {
    flex-direction: column;
    gap: 2.5vw;
  }

  .cs-cta-button,
  a.cs-cta-button {
    font-size: 3vw;
    padding: 2.5vw 5vw;
    border-radius: 1.5vw;
    width: 100%;
    max-width: 80vw;
  }

  .cs-slider-wrapper {
    margin-top: 3vw;
  }

  .cs-slider-container {
    gap: 3vw;
    padding: 2vw 0;
  }

  .cs-slider-card {
    width: 55vw;
    min-width: 55vw;
    padding: 3.5vw;
    border-radius: 2vw;
    gap: 2vw;
  }

  .cs-slider-logo {
    height: 18vw;
    margin-bottom: 1vw;
  }

  .cs-slider-logo img {
    max-width: 35vw;
    max-height: 14vw;
  }

  .cs-slider-name {
    font-size: 3.5vw;
  }

  .cs-slider-client-name {
    font-size: 3vw;
  }

  .cs-divider {
    height: 0.1vw;
    margin-top: 4vw;
  }
}

/* Mobile landscape and large phones */
@media (max-width: 480px) {
  .cs-page {
    padding-bottom: 10vw;
  }

  .cs-container {
    max-width: 92vw;
    padding-top: 8vw;
  }

  .cs-hero-new {
    padding: 10vw 0 8vw 0;
  }

  .cs-hero-content-wrapper {
    max-width: 92vw;
    gap: 8vw;
  }

  .cs-hero-title-new {
    font-size: 8vw;
    line-height: 1.15;
  }

  .cs-hero-logo-wrapper {
    padding: 6vw;
    border-radius: 3vw;
    max-width: 75vw;
  }

  .cs-hero-client-logo {
    max-width: 55vw;
    max-height: 22vw;
  }

  .cs-hero-seor {
    height: 16vh;
    opacity: 0.4;
  }

  .cs-section {
    padding: 5vw;
    margin-bottom: 5vw;
    border-radius: 2.5vw;
  }

  .cs-section-heading {
    font-size: 3.5vw;
    margin-bottom: 2.5vw;
    padding-bottom: 2vw;
  }

  .cs-section-heading::after {
    width: 12vw;
    height: 0.5vw;
  }

  .cs-section-text {
    font-size: 3.5vw;
    line-height: 1.8;
    margin-bottom: 2.5vw;
  }

  .cs-section-subheading {
    font-size: 3.8vw;
    margin: 3vw 0 2vw 0;
  }

  .cs-metadata {
    padding: 5vw;
    margin-bottom: 5vw;
    border-radius: 2.5vw;
  }

  .cs-metadata-grid {
    gap: 4vw;
  }

  .cs-metadata-item {
    gap: 1.5vw;
    padding-left: 2.5vw;
  }

  .cs-metadata-item::before {
    width: 0.8vw;
    height: 0.8vw;
    top: 0.8vw;
  }

  .cs-metadata-label {
    font-size: 3vw;
  }

  .cs-metadata-value {
    font-size: 3.8vw;
  }

  .cs-two-col {
    gap: 5vw;
  }

  .cs-quote {
    border-left-width: 0.6vw;
    padding: 4vw 4.5vw;
    border-radius: 2vw;
  }

  .cs-quote-text {
    font-size: 3.5vw;
    margin-bottom: 3vw;
  }

  .cs-quote-author {
    font-size: 3.8vw;
    margin-bottom: 0.8vw;
  }

  .cs-quote-role {
    font-size: 3vw;
  }

  .cs-optimization-table {
    margin: 4vw 0;
    border-radius: 2vw;
    overflow: hidden;
    display: block;
  }

  .cs-optimization-table thead {
    display: none;
  }

  .cs-optimization-table tbody {
    display: block;
  }

  .cs-optimization-table tbody tr {
    display: block;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 1.5vw;
    margin-bottom: 3vw;
    padding: 3vw;
    box-shadow: 0 2px 8px rgba(40,84,162,0.08);
  }

  .cs-optimization-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .cs-optimization-table tbody td {
    display: block;
    width: 100% !important;
    font-size: 3vw;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    margin-bottom: 2vw;
    line-height: 1.6;
  }

  .cs-optimization-table tbody td:first-child {
    font-family: "markProBold";
    font-size: 3.8vw;
    color: #345cad;
    margin-bottom: 1.5vw;
    padding-bottom: 1vw;
    border-bottom: 2px solid #345cad;
    line-height: 1.3;
  }

  .cs-optimization-table tbody td:nth-child(2),
  .cs-optimization-table tbody td:last-child {
    margin-bottom: 0;
    line-height: 1.7;
  }

  .cs-optimization-table tbody td:nth-child(2) {
    color: #222;
  }

  .cs-optimization-table tbody td:last-child {
    font-family: "markProBold";
    color: #1ed197;
    font-size: 3.2vw;
  }

  .cs-three-col-blocks {
    gap: 4.5vw;
    margin-top: 4vw;
  }

  .cs-challenge-block,
  .cs-solution-block {
    padding: 4.5vw;
    border-radius: 2.5vw;
    border-top-width: 0.6vw;
  }

  .cs-block-number {
    font-size: 9vw;
    margin-bottom: 1.5vw;
  }

  .cs-block-title {
    font-size: 4.5vw;
    margin-bottom: 2vw;
  }

  .cs-block-text {
    font-size: 3.5vw;
  }

  .cs-bullet-list {
    font-size: 3.5vw;
    padding-left: 4vw;
  }

  .cs-bullet-list li {
    margin-bottom: 1.5vw;
  }

  .cs-results-creative {
    gap: 4.5vw;
    margin-top: 4vw;
  }

  .cs-results-left {
    gap: 4.5vw;
  }

  .cs-results-card {
    padding: 4.5vw;
    border-radius: 2.5vw;
    border-left-width: 0.6vw;
  }

  .cs-results-card h3 {
    font-size: 3.8vw;
    margin-bottom: 2.5vw;
  }

  .cs-results-card li {
    font-size: 3.5vw;
    padding: 2vw 0;
    padding-left: 5vw;
  }

  .cs-results-card li::before {
    font-size: 3.8vw;
  }

  .cs-testimonial-large {
    padding: 6vw;
    border-radius: 2.5vw;
  }

  .cs-testimonial-large::before {
    font-size: 22vw;
    top: 2.5vw;
    left: 3.5vw;
  }

  .cs-testimonial-large-text {
    font-size: 3.5vw;
    margin-bottom: 3.5vw;
  }

  .cs-testimonial-large-author {
    font-size: 3.8vw;
    margin-bottom: 0.8vw;
  }

  .cs-testimonial-large-role {
    font-size: 3vw;
  }

  .cs-video-wrapper {
    margin-top: 4vw;
  }

  .cs-video-container {
    border-radius: 2.5vw;
  }

  .cs-video-iframe {
    border-radius: 2.5vw;
  }

  .cs-cta {
    padding: 8vw 5vw !important;
    margin-bottom: 5vw;
    border-radius: 2.5vw;
  }

  .cs-cta .cs-section-heading {
    font-size: 5.5vw;
    margin-bottom: 3vw;
  }

  .cs-cta .cs-section-text {
    font-size: 3.5vw;
    max-width: 92vw;
    margin-bottom: 5vw;
  }

  .cs-cta-buttons {
    gap: 3vw;
  }

  .cs-cta-button,
  a.cs-cta-button {
    font-size: 3.5vw;
    padding: 3.5vw 7vw;
    border-radius: 2vw;
    max-width: 85vw;
  }

  .cs-slider-wrapper {
    margin-top: 4vw;
  }

  .cs-slider-container {
    gap: 4vw;
    padding: 2.5vw 0;
  }

  .cs-slider-card {
    width: 70vw;
    min-width: 70vw;
    padding: 5vw;
    border-radius: 2.5vw;
    gap: 2.5vw;
  }

  .cs-slider-logo {
    height: 22vw;
    margin-bottom: 1.5vw;
  }

  .cs-slider-logo img {
    max-width: 45vw;
    max-height: 18vw;
  }

  .cs-slider-name {
    font-size: 4.5vw;
  }

  .cs-slider-client-name {
    font-size: 3.8vw;
  }

  .cs-divider {
    height: 0.15vw;
    margin-top: 5vw;
  }
}

/* Small mobile phones */
@media (max-width: 320px) {
  .cs-container {
    max-width: 94vw;
    padding-top: 10vw;
  }

  .cs-hero-new {
    padding: 12vw 0 10vw 0;
  }

  .cs-hero-content-wrapper {
    max-width: 94vw;
    gap: 10vw;
  }

  .cs-hero-title-new {
    font-size: 9vw;
  }

  .cs-hero-logo-wrapper {
    padding: 7vw;
    max-width: 80vw;
  }

  .cs-hero-client-logo {
    max-width: 60vw;
    max-height: 25vw;
  }

  .cs-section {
    padding: 6vw;
    margin-bottom: 6vw;
  }

  .cs-section-heading {
    font-size: 4vw;
  }

  .cs-section-text {
    font-size: 4vw;
  }

  .cs-section-subheading {
    font-size: 4.2vw;
  }

  .cs-metadata {
    padding: 6vw;
  }

  .cs-metadata-label {
    font-size: 3.5vw;
  }

  .cs-metadata-value {
    font-size: 4.2vw;
  }

  .cs-quote-text {
    font-size: 4vw;
  }

  .cs-quote-author {
    font-size: 4.2vw;
  }

  .cs-quote-role {
    font-size: 3.5vw;
  }

  .cs-optimization-table thead th {
    font-size: 3.5vw;
  }

  .cs-optimization-table tbody td {
    font-size: 3.5vw;
  }

  .cs-optimization-table tbody td:first-child {
    font-size: 4vw;
  }

  .cs-block-number {
    font-size: 10vw;
  }

  .cs-block-title {
    font-size: 5vw;
  }

  .cs-block-text {
    font-size: 4vw;
  }

  .cs-bullet-list {
    font-size: 4vw;
  }

  .cs-results-card h3 {
    font-size: 4.2vw;
  }

  .cs-results-card li {
    font-size: 4vw;
  }

  .cs-testimonial-large-text {
    font-size: 4vw;
  }

  .cs-testimonial-large-author {
    font-size: 4.2vw;
  }

  .cs-cta .cs-section-heading {
    font-size: 6vw;
  }

  .cs-cta .cs-section-text {
    font-size: 4vw;
  }

  .cs-cta-button,
  a.cs-cta-button {
    font-size: 4vw;
    padding: 4vw 8vw;
  }

  .cs-slider-card {
    width: 80vw;
    min-width: 80vw;
  }

  .cs-slider-name {
    font-size: 5vw;
  }

  .cs-slider-client-name {
    font-size: 4.2vw;
  }
}
