@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@200;300;400;600&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-pale-green: #E1FCEE;
  --color-med-green: #BBE8D7;
  --color-dark-green: #01603d/*#3B8C6E*/;
  --color-light-blue: #91CCCC;
  --color-med-blue: #1E5959;
  --color-dark-blue: #003840;
  --color-neon-yellow: #D7FF64;
  --color-label: #3B8C6E;
  --color-accent: #01603d;
  --color-highlight: #D7FF64;
  --color-text-dark: #003840;
  --color-text-light: #EFFFF7;
}

/* Global style reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 200;
  color: var(--color-text-dark);
  font-size: 1.1rem;
  line-height: 1.5rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5rem 1rem;
  
}

b {font-weight: 600;}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter Tight', sans-serif;
}

.shadow {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.cs-icon {
max-height: 8rem;
  margin-bottom: 1rem;
}

.case-study-stack {
  width: 1440px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .case-study-stack {
    width: 100%;  
  }
}

.cs-slide {
  display: flex;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1440px;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 20rem;
  margin: 5rem auto;
  /* background: var(--color-pale-green); */
}

.cs-slide-short {
  display: flex;
  width: 100%;
  max-width: 1440px;
  border-radius: 0.5rem;
  margin: 5rem auto;
  height: fit-content;
}

.cs-slide-left, .cs-slide-right {
  padding: 3rem 2.5rem;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
}

.cs-slide-left {
  border-radius: 0.5rem 0 0 0.5rem;
  justify-content: space-between;
}

.cs-slide-right {
  border-radius: 0 0.5rem 0.5rem 0;
  justify-content: center;
}

/* Unified Text Styles */
.cs-title-xl {
  font-family: 'Inter Tight', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
  margin-bottom: 1rem;
}

.cs-title-l {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.1rem;
  line-height: 2.4rem;
  font-weight: 700;
}

.about .cs-title-l {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.cs-body-lg {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.6rem;
  font-weight: 100;
  line-height: 1.3;
}

.cs-body-md {
  font-size: 1.2rem;
  line-height: 1.4;
}
.cs-body-sm {
  font-size: 1rem;
  line-height: 1.2;
}

.cs-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  /* margin-bottom: 0.3rem; */
}


/* Color modifiers */
.cs-dark {
  color: var(--color-text-light);
}
.cs-light {
  color: var(--color-text-dark) !important;
}
.cs-accent {
  color: var(--color-accent);
}
.cs-highlight {
  color: var(--color-neon-yellow) !important;
}
.cs-light-blue {
  color: #91CCCC !important;
}

.cs-hilite {
  background-color: var(--color-highlight) !important;
}

.bg-lightest {
  background: var(--color-pale-green) !important;
}
.bg-dark {
  background: var(--color-dark-blue) !important;
}
.bg-right {
  background: var(--color-med-green) !important;
}

.bg-impact-left {
  background: #ECFBFB !important;
}
.bg-impact-right {
  background: #91CCCC !important;
}

.cs-slide-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.5rem;
}

/* .cs-slide-img video {
  width: 100%;
  height: 100%;


  display: block;
  border-radius: 0.5rem;
} */

.cs-slide-img--small {

  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cs-slide-caption {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  color: var(--color-dark-blue);
  margin-top: 0.2rem;
  text-align: left;
  width: 100%;
}

.cs-slide-section-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7FE3C3;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
}

.cs-slide-section-body {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: #EFFFF7;
  margin-bottom: 0.7rem;
}

.cs-slide-result-box {
  background: #00282D;
  border-radius: 0.5rem;
  padding: 1.2rem 2rem 1.2rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.cs-slide-result-main {
  color: #D1FF4D;
  font-size: 2.1rem;
  font-weight: 800;
  margin-right: 1.2rem;
  padding: 0;
}

.cs-slide-result-main .cs-title-l {
  margin-bottom: 0;
}

.cs-slide-result-main .cs-label {
  color: var(--color-neon-yellow) !important;
  opacity: 0.5;
}

.cs-slide-result-main .cs-body-sm {
  opacity: 0.5;
}

.cs-slide-result-label {
  color: #EFFFF7;
  font-size: 1.1rem;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 400;
}

.cs-slide-result-stats {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1;
}

.cs-slide-result-stat-block {
  display: flex;
  flex-direction: column;
  align-items: end;
  min-width: 0;
}

.cs-slide-result-stat-block .cs-body-sm {
  margin-bottom: 0.2em;
}

.cs-slide-result-stat-block .cs-label {
  margin-bottom: 0.2em;
}

.cs-slide-result-stat-block .cs-title-l {
  margin-bottom: 0;
}

.cs-slide-result-stat-block > .cs-body-sm {
  color: #91CCCC !important;
}

.cs-slide-result-stat-block > .cs-body-sm.cs-white {
  color: #fff !important;
}

.cs-slide-note {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.98rem;
  color: var(--color-light-blue);
  margin-top: 0.7rem;
  opacity: 0.8;
}

.cs-slide-right-imgs {
  display: flex;
  gap: 1.2rem;
  width: 100%;
  justify-content: center;
}

.cs-slide-right-imgs img {
width: 46%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.cs-slide-right-captions {
  display: flex;
  gap: 1.2rem;
  width: 100%;
  justify-content: center;
}

.cs-slide-right-caption {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.8rem;
  line-height: 1rem;
  color: #91CCCC;
  margin-top: 0.2rem;
  text-align: left;
}

.cs-conversion-block {
  text-align: left;
}

.cs-conversion-row {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 0.1rem;
  text-align: left;
}

.cs-conv-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
}

.cs-conv-num--bold {
  font-weight: 800;
}

.cs-conv-arrow {
  display: flex;
  align-items: center;
}

.cs-conv-date {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  color: var(--color-accent);
  margin-top: 0.1rem;
}

.cs-conversion-row--dates {
  gap: 2.5rem;
  margin-top: 0.1rem;
  margin-bottom: 0;
}

/* Utility classes for portfolio typography system */
.cs-weight-light {
  font-weight: 200 !important;
}
.cs-weight-bold {
  font-weight: 800 !important;
}
.cs-mb-xs {
  margin-bottom: 0.2em !important;
}
.cs-mb-sm {
  margin-bottom: 0.5em !important;
}
.cs-mb-md {
  margin-bottom: 1.2em !important;
}
.cs-mb-lg {
  margin-bottom: 2.2rem !important;
}
.cs-dark-green {
  color: var(--color-dark-green) !important;
}
.cs-center {
  text-align: center !important;
}

.cs-impact .cs-label {
  margin-bottom: 0.1em !important;
}
.cs-impact .cs-body-lg {
  margin-top: 0 !important;
}

/* Slide list style: 1rem spacing between items, customizable bullets */
.cs-slide-list {
  list-style-type: disc; /* Options: disc, circle, square, decimal, custom with ::marker */
  padding-left: 1.5em;
  margin: 0 0 1.2rem 0;
}
.cs-slide-list li {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}

.cs-slide-list li::marker {
  color: var(--color-accent);
  font-size: 1.1em;
  content: '\2022'; /* Unicode for • */
}


ul {
  list-style-type: disc;
  list-style-position: outside;
}
ul li {
  margin-bottom: 0.5rem;

  line-height: 1.4;
  text-indent: 0;
}
ul li::marker {
  color: var(--color-accent);
  font-size: 1.1em;
  content: '\2022'; /* Unicode for • */
}

.bg-dark ul li::marker {
  color: var(--color-light-blue);
}

ul ul {
  margin-left: 1.5em;
}

.cs-slide-section-group {
  margin-bottom: 1.5rem;
}

.cs-label.cs-dark {
  color: #91CCCC;
}

.cs-slide.bg-dark {color: var(--color-text-light);}
.bg-dark .cs-accent {color: var(--color-light-blue);}

.cs-slide-img-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 46%;
}

.cs-slide-img-col img {
  width: 100%;
  display: block;
}



.cs-white {
  color: #fff !important;
}

.cs-drop {
  color: #FF5C5C !important;
}

.cs-examples-label-row {
  text-align: left;
  margin-bottom: 0.5rem;
}

.cs-examples-columns-labels {
  display: flex;
  gap: 20px;
  margin-bottom: 0.5rem;
}

.cs-examples-col-label {
  flex: 1;
  text-align: left;
}

.cs-conv-arrow svg line,
.cs-conv-arrow svg polyline {
  stroke: #91CCCC !important;
}

.confetti-video {
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* === CASE STUDY INDEX PAGE STYLES START === */
.case-index {
  padding-top: 5rem;
}
.case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.case-card {
  display: flex;
  align-items: stretch;
  background: var(--color-pale-green, #E1FCEE);
  border-radius: 1rem;
  /* box-shadow: 0 2px 2px rgba(0,0,0,0.08); */
  overflow: visible;
  text-decoration: none;
  transition: box-shadow 0.6s cubic-bezier(.4,0,.2,1),
    transform 0.6s cubic-bezier(.4,0,.2,1);
  position: relative;
  max-width: 1440px;
  width: 100%;
  height: 20rem;
  margin: 3.5rem auto;
  color: var(--color-text-dark);
}
.case-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1.5px 8px rgba(0,0,0,0.03);
}

.case-card.sunny {
  flex-direction: row-reverse;
}

.case-card.sunny .case-card-phone {
  right: unset; left: 6rem;
}

.case-card-content {
  flex: 1 1 0;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-card-content .cs-title-l {
  margin-bottom: 1rem;
}

.case-card-phone-wrapper {
  position: relative;
  height: 32rem;
  align-self: end;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  width: 24rem;
}
.case-card-phone {
  position: absolute;
  right: 6rem;
  width: 16rem;
  bottom: 0;
  /* transition: transform 0.5s cubic-bezier(.4,0,.2,1); */
  display: flex;
  justify-content: center;
}

/* @keyframes settleIn {
  to {
    transform: translateY(8.125rem) rotate(0deg);
  }
} */

.case-card-phone img {
  width: 100%;
  display: block;
  pointer-events: none;
  transform: translateY(8rem) rotate(0deg);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1); 
  animation: settleIn 0.4s ease-out 0.3s forwards;
}

.case-card.sunny .case-card-phone img {
  /* transform: translateY(4rem) rotate(-8deg);*/
  /*transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  animation: settleIn 0.4s ease-out 0.45s forwards; */
}

/* Add a class for the final resting state */
.case-card-phone img.settled {
  /* transform: translateY(8.125rem) rotate(0deg); */
  /* animation: none; */
}

.case-card.leadgen-index:hover .case-card-phone img {
  transform: translateY(2rem) rotate(8deg) !important;
  /* transition: transform 0.5s cubic-bezier(.4,0,.2,1);  */
}

.case-card.sunny:hover .case-card-phone img {
  transform: translateY(2rem) rotate(-8deg);
  /*transition: transform 0.5s cubic-bezier(.4,0,.2,1); */
}


.enrollment-index .case-card-phone-wrapper {height: 29rem; width: 38rem;}
.enrollment-index .case-card-phone {right: 11rem;}
.enrollment-index .case-card-phone img:not(:first-child) {
  margin-left: -12rem;
}

.enrollment-index .case-card-phone img {box-shadow: 0 0 20px rgba(0,0,0,0.08);}

.case-card.enrollment-index .case-card-phone img:nth-child(1) {z-index: 104;}
.case-card.enrollment-index .case-card-phone img:nth-child(2) {z-index: 103;}
.case-card.enrollment-index .case-card-phone img:nth-child(3) {z-index: 102;}

.case-card.enrollment-index:hover .case-card-phone img:nth-child(1) {
  transform: translateY(4rem) translateX(-4rem) rotate(-10deg) !important;
  
}
.case-card.enrollment-index:hover .case-card-phone img:nth-child(2) {
  transform: translateY(3rem) rotate(0deg) !important;
  
}
.case-card.enrollment-index:hover .case-card-phone img:nth-child(3) {
  transform: translateY(4rem) translateX(4rem) rotate(10deg) !important;
  
}

/* === CASE STUDY INDEX PAGE STYLES END === */

/* Additional sections styling */
.additional-sections {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3rem;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.additional-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-pale-green);
  border-radius: 1rem;
  padding: 2rem;
  text-decoration: none;
  color: var(--color-text-dark);
  transition: box-shadow 0.6s cubic-bezier(.4,0,.2,1),
    transform 0.6s cubic-bezier(.4,0,.2,1);
  max-width: calc((1440px - 2rem) / 2);
}

.additional-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1.5px 8px rgba(0,0,0,0.03);
}

.additional-content {
  flex: 1;
}

.additional-content .cs-title-l {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

.additional-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (max-width: 900px) {
  .additional-sections {
    flex-direction: column;
    gap: 1rem;
  }
  
  .additional-card {
    padding: 1.5rem;
  }
  
  .additional-content .cs-title-l {
    font-size: 1.1rem;
  }
}


.cs-conversion-row--columns {
  display: flex;
  align-items: flex-end;
  /* justify-content: center; */
  gap: 4rem;
}

.cs-conversion-col {
  display: flex;
  flex-direction: column;
}

.cs-conversion-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-conv-arrow {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-top: -2rem;;
  line-height: 1;
  display: flex;
  align-items: center;
}

.cs-conversion-row--vertical {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cs-conversion-row--vertical .cs-conversion-col {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.context {padding: 3.5rem 2.5rem;}

.cs-context-flex {
  display: flex;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;

}

.why-now .cs-context-flex section {
flex: 1 1 0;
}

.cs-context-side {
  display: flex;
  flex-direction: column;
  
}

.cs-context-side--left {
  flex: 1 1 0;
  width: 33%;
  background: var(--color-pale-green);
  border-radius: 0.5rem;
  padding: 2rem;
  color: var(--color-accent);
  justify-content: space-between;
}

.cs-context-side--left .cs-label {
  color: var(--color-accent);
}

.cs-context-side--right {
  flex: 2 1 0;
  width: 67%;
}

.cs-context-side--right .cs-label {
  color: var(--color-accent);
}

.cs-context-side--right .cs-body-lg {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.cs-context-block {
  margin-bottom: 1.2rem;
}

.cs-context-caption {
  font-size: 1rem;
  font-style: italic;
  color: #6CA39A;
}



/* Appendix Slide Styles */
.cs-appendix-slide {
  display: block;
  background: var(--color-pale-green);
  border-radius: 0.5rem;
  margin: 5rem auto;
  max-width: 1440px;
  padding: 2.5rem 0;
}


.cs-appendix-scroll-row {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 2.5rem;
  padding-bottom: 1.2rem;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.cs-appendix-scroll-row.dragging {
  cursor: grabbing;
  background: #F0F8F4;
}

.cs-appendix-mockup {
  height: 420px;
  max-width: none;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  /* user-drag: none; */
  user-select: none;
  pointer-events: none;
}


/* Appendix Section Styles (cleaned up) */
.cs-appendix-header-simple {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.cs-appendix-title {
  background: var(--color-med-green);
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--color-dark-green);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.cs-appendix-subtitle {
  color: var(--color-dark-green);
  font-size: 1rem;
}

.cs-appendix-image-drag {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  position: relative;
}
.cs-appendix-image-drag::-webkit-scrollbar {
  display: none;
}
.cs-appendix-image-drag.dragging {
  cursor: grabbing;
}

.cs-appendix-mockup {
  display: block;
  height: 40rem;
  min-width: 1200px;
  /* user-drag: none; */
  user-select: none;
  pointer-events: none;
  margin: 0 auto;
}

#cs-image-drag-desktop img {
  height: 57rem;
}
@media (min-width: 900px) {
  .sunny-solution p.cs-body-md {max-width: 66%; margin-top: 1rem;}
}


.sunny-solution .cs-slide-left {
  margin-bottom: -7rem;
}
.sunny-solution .cs-context-flex  img {
  height:40rem;
}

.numbers {
  width: 1.8rem; 
  height: 1.8rem; 
  border-radius: 100%;
  margin-right: 0.5rem;
  margin-top: 1rem;
  border: 1px solid var(--color-neon-yellow) !important;
  color: var(--color-neon-yellow) !important;
  text-align: center;
  line-height: 1.7rem; /* Match the height */
  
  display: inline-block;
}

.cs-quote-block {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.4;
  z-index: 1;
}
.cs-quote-block::before {
  content: "\201C";
  position: absolute;
  top: -5rem;
  left: -1.5rem;
  font-size: 24rem;
  font-weight: 800;
  color: var(--color-med-blue);
  opacity: 0.18;
  font-family: inherit;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

img.enrollment-cover {
  position: absolute; top: 5%; right: -3rem;  transform: rotate(-10deg) scale(1.4);  z-index: 2;     width: 100%; 
}

@media (max-width: 900px) {
  img.enrollment-cover {
    margin: 0 auto -8rem;
    height: auto;
    position: static;
    transform: none;
    z-index: 0;
  }
}

.enroll-before>.cs-slide-result-stats {
  padding: 3rem 2.5rem 0;
}

.enroll-before .cs-slide-result-stats .cs-slide-result-stats {
  align-items: unset;
}

.enroll-before .numbers {
  margin: 0 0.5rem 1rem 0;
}

.enroll-before ul li::marker, .texas-flow  ul li::marker {
  display: none;
}

.cs-example-switcher {
  padding: 0 2.5rem;
  overflow-x: auto;
}

.cs-example-switcher img {
  width: 100%;
}

.cs-example-switcher .cs-example-mobile { margin-left: -1rem;}

.cs-toggle-group {
 padding: 0.5rem 0 1.5rem;
 display: flex;
 align-self: center;
 gap: 1.2rem;
}

.cs-toggle-group button {
  background: none;
  color: var(--color-light-blue);
  border: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  opacity: 0.4;
  cursor: pointer;
}


.cs-toggle-group button:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.cs-toggle-group button.active {
  opacity: 1;
}



/*  ───────────────────────────────────────────────
    MOBILE (≤ 900 px)
    ─────────────────────────────────────────────── */
    @media (max-width: 900px) {

      body {
        padding: 1rem;
      }

      .case-index {
        padding-top: 2rem;
      }

      .case-index .cs-slide-right {
        padding: 0;
      }
      /* —— Context panels —— */
      .cs-context-flex               {flex-direction: column; gap: 1rem;}
      .cs-context-side--left,
      .cs-context-side--right        {width: 100%; padding: 0; flex: unset;}

      .cs-context-side--left { padding: 1rem;}
      .cs-context-side--right .cs-body-lg {font-size: 1.2rem;}
    
      /* —— Appendix —— */
      .cs-appendix-slide             {padding: 1.5rem 0; margin: 2.5rem 0;}
      .cs-appendix-header,
      .cs-appendix-header-simple     {gap: .7rem; margin-bottom: 1.2rem;}
      
      .cs-appendix-title             {font-size: 0.8rem;padding: .5rem 1rem;}
      .cs-appendix-subtitle          {font-size: 0.8rem;}
      .cs-appendix-mockup            {height: 30rem; min-width: 600px;}
      .cs-appendix-scroll-row        {gap: 1.2rem; padding-bottom: .5rem;}
      .context {padding: 1.5rem;}
      #cs-image-drag-desktop img {
        height: 30rem;
      }
    
      /* —— Phone mock-ups —— */
      .case-card {flex-direction: column; height:fit-content; padding: 1.5rem 1.5rem 0; margin: 0;}
      .case-card.sunny {flex-direction: column;}
      .case-card-content {padding: 0;}
    .case-card-phone-wrapper {height: 18rem; width: 100%; margin-top: 1rem;}
      .case-card-phone               {
        width: 100%; position: unset;
      }
      
      .case-card-phone img           {width: 16rem;margin-bottom: -7rem;}
      .enrollment-index .case-card-phone-wrapper {width: 100%;  align-items: unset; height: 20rem; }
      
      .enrollment-index .case-card-phone-wrapper img {margin: 0;  height: 29rem;transform: none; }
      .enrollment-index .case-card-phone img:not(:first-child) {margin-left: -13rem; position: static;}
    
      /* —— Slides —— */
      .cs-slide                       {flex-direction: column; aspect-ratio: unset; min-height: unset; height: fit-content;
                                       margin: 2.5rem 0; border-radius: .5rem;}
      .cs-slide-left,
      .cs-slide-right                 {padding: 1.5rem; border-radius: 0;}
      .cs-slide-right                 {justify-content: flex-start;}
      .cs-slide-right-imgs img,
      .cs-slide-right-caption         {max-width: 100%; height: auto;}
      .sunny-solution .cs-slide-left {
        margin-bottom: unset;
      }
    
      .cs-slide-img--small            {max-width: 100%;}
      /* .cs-slide-img-col               {margin-bottom: 1.2rem;} */
      .cs-slide-img-col img           {max-width: 100%; height: auto;}
      .cs-slide-section-group         {margin-bottom: 1.2rem;}
      .cs-slide-right-caption         {font-size: .9rem;}
    
      /* —— Typography tweaks —— */
      .cs-title-xl                    {font-size: 2.1rem; line-height: 2.5rem; margin-bottom: 1rem;}
      .cs-title-l                     {font-size: 1.4rem; line-height: 1.8rem; margin-bottom: 1rem;}
      .cs-body-lg                     {font-size: 1.1rem;}
      
      
      .cs-conv-num                    {font-size: 1.2rem;}
      .cs-conv-date                   {font-size: .8rem;}
    
      /* —— Conversion rows —— */
      .cs-conversion-row--columns     {flex-direction: column; align-items: flex-start; gap: .5rem;}
      .cs-conversion-col              {margin-bottom: .5rem;}
      .cs-conversion-arrow-col        {margin: 0 .5rem;}
      .cs-conv-arrow                  {font-size: 1.2rem;}
      .cs-conversion-row--vertical .cs-conversion-col {margin-bottom: .5rem;}


      .cs-slide-result-box {align-items: unset; gap: 0; margin: 1rem 0 0; flex-direction: column;}
      .cs-slide-result-stats {align-items: unset; justify-content: unset;}
      .enroll-before .cs-slide-result-stats {flex-direction: column; padding: 0; gap: 0.5rem;}
      .enroll-before>.cs-slide-result-stats {padding: 1.5rem 1.5rem 0;}
      .cs-slide-result-stat-block {align-items: baseline;}

    
      /* —— Lists —— */
      /* ul                              {padding-left: 1.2rem;} */
      ul li                           {font-size: 1rem;}

      .sunny-solution .cs-context-flex img {height: unset;}


      .cs-quote-block {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 2rem;
      }
      .cs-quote-block::before {
        font-size: 18rem;
        top: -3rem;
        left: -1rem;
      }

.enroll-before h2 { margin-bottom: 0.5rem;}
.cs-example-switcher img {width: unset; height: 30rem; margin-right: 2.5rem;}





    }
    

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1440px;
      padding: 1rem;
      position: fixed;
      top: 0;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 10000;
      /* left: 50%; */
      /* transform: translate(-50%, -50%); */
      /* z-index: 10000;
      padding: 1rem 2rem;
      border-radius: 100px;
      box-sizing: content-box; */
      /* background: rgba(255, 255, 255, 0.3);
      
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 2px solid rgba(255, 255, 255, 0.7);
      box-shadow: inset 0 0 10px 5px rgba(255, 255, 255, 0.5); */
    }


     header a {
      text-decoration: underline dotted var(--color-accent);
      text-underline-offset: 3px;
      text-decoration-thickness: 2px;
      text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}



.header-title-animated {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  
}
.title-rotate-outer {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.4em;
  width: 8.5em; /* enough for 'Director of' */
  position: relative;
  margin-right: 0.2rem;
}
.title-rotate-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  transform: translateY(0);
}
.title-rotate-inner span {
  height: 1.4em;
  line-height: 1.4em;
  display: block;
  text-align: right;
  white-space: nowrap;
}

.pd {    height: 1.4em;
  display: flex;
  align-items: center;}

.main-title {
  width: 100%; max-width: 1440px; padding: 0 0 3rem 0; font-size: 3.8rem; line-height: 4.2rem;
}

@media (max-width: 900px) {
  
  header {
    
    width: unset;
    
  }
  
  .main-title {
    font-size: 2.4rem;
    line-height: 2.8rem;
    padding: 0;
  }

  .main-title .cs-body-lg {
margin-top: 0.2rem;
line-height: 1.5rem;
  }

}

  .about>div {
    margin-bottom: 2rem;
  }




.compliments-carousel {
  position: relative;
  margin-bottom: 2rem;
}

.compliment-card {
  background: var(--color-pale-green);
  border-radius: 8px;
  padding: 1.5rem;
  color: var(--color-text-dark);
  width: 100%;

  height: 25rem;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  /* text-align: center; */
  position: absolute;
  left: 0;
  top: 0;
}

.compliment-card p {
  margin-bottom: 0.5rem;
}
.compliment-card.active {
  display: flex;
  position: relative;
}

.compliment-card blockquote {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.compliment-author {
  
  color: var(--color-dark-green);
  font-size: 0.8rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #bfe3d1;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  outline: none;
}
.carousel-dot.active {
  background: var(--color-dark-green);
}
@media (max-width: 700px) {
.compliment-card {

  height: 38rem;

  }

}

.profile-pic-wrapper {
  aspect-ratio: 3 / 4;
  width: 180px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  flex: none;
  display: block;
}
.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: clip-path 0.5s cubic-bezier(.4,2,.6,1);
}

.profile-pic:hover {
  clip-path: url(#heart-clip);
}

.about a {
  color: var(--color-dark-green);
}


.hobbies {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.borsch {
  background: var(--color-pale-green);
  border-radius: 8px;
  padding: 1.5rem;
}

#interview article {
  margin-bottom: 3rem;
}

#interview a {color: #005661;}

video { border-radius: 0.5rem;}



/* Impact section styling */
.impact-sections {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.impact-sections h3 {
  margin-bottom: 0.5rem;
}


.impact-sections .cs-slide-result-stat-block {
  padding: 1rem;
  border-radius: 0.5rem;
  align-items: unset;
background: #e9f7f7;
}

#interview .impact-sections .impact-button {
  font-family: 'Inter Tight', sans-serif;
  color: var(--color-neon-yellow);
  padding: 0.3rem 1rem;
  border-radius: 0.25rem;
  background-color:#005661; 
  display: block;
  width: fit-content;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
transition: background-color 0.7s ease;
}

#interview .impact-sections .impact-button:hover {
  background-color: #003840;
  transition: background-color 0.7s ease;
}

#brand .voice-attr, #brand .when-use {
  display: flex;
  gap: 1rem;
}

@media (max-width: 900px) {
  #brand .voice-attr, #brand .when-use {
    flex-direction: column;
    gap: 0rem;
  }
}

#brand .when-use div {
  flex: 1;
}

#brand .voice-attr h3 {
 color: var(--color-accent);
}

#brand .voice-attr h3+p {
  margin-bottom: 1rem;
 }

#brand .voice-attr div {
  border: 1px solid var(--color-light-blue);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
