:root {
  --pink: #ff3c8f;
  --pink-2: #ff70ab;
  --pink-soft: #ffe6f0;
  --teal: #005b4e;
  --teal-dark: #003f39;
  --ink: #073f39;
  --white: #ffffff;
  --surface: #ffffff;
  --soft: #f8f8f8;
  --line: #f0dce5;
  --muted: #586a67;
  --shadow: 0 10px 35px rgba(0, 63, 57, 0.08);
  --radius: 18px;
  --container: 1400px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: inherit; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 58px 0; }

.section-heading {
  margin-bottom: 28px;
}

.section-heading--center { text-align: center; }

.section-heading h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-heading h2 span {
  position: relative;
  display: inline-block;
  color: var(--pink);
  text-decoration: none;
}

.section-heading h2 span::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -10px;
  left: -3px;
  height: 10px;
  border-top: 3px solid var(--pink);
  border-radius: 50%;
  transform: rotate(-1.5deg);
  transform-origin: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 8px 10px 8px 24px;
  border-radius: 999px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button--pink { background: var(--pink); }
.button--teal { background: var(--teal); box-shadow: 0 12px 30px rgba(0, 63, 57, .18); }

.button__circle {
  position: relative;
  display: inline-block;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
}

.button__circle::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 10px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button__circle::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button__circle--pink {
  background: var(--pink);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--pink);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background: url("../assets/hero/hero.png") center right / cover no-repeat;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(255, 60, 143, .20) 0%, rgba(255, 60, 143, .05) 45%, rgba(0,0,0,0) 72%),
    linear-gradient(180deg, rgba(0, 63, 57, .05) 0%, rgba(0,0,0,0) 35%);
}

.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  padding-top: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img { width: 58px; height: 58px; }

.brand span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .18em;
}

.brand--light span { color: #fff; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 42px);
}

.site-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s ease;
}

.site-nav a:hover { opacity: .72; }

.button--header { min-height: 48px; padding-left: 22px; }

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding-top: 42px;
  padding-bottom: 92px;
}

.hero__copy { width: min(670px, 52%); }

.hero__eyebrow {
  margin: 0 0 -12px -30px;
  color: var(--teal-dark);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -9px;
  transform: rotate(-15deg);
  transform-origin: left center;
}

.hero h1 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: -0.055em;
}

.hero h1 > span,
.hero h1 > strong {
  display: block;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .97;
  font-weight: 800;
}

.hero h1 > span { color: #fff; }
.hero h1 > strong { color: var(--teal-dark); }

.hero-title__meta {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 15px;
  width: max-content;
}

.hero-title__lines {
  display: grid;
  flex: 0 0 30px;
  gap: 6px;
  width: 30px;
  transform: rotate(-10deg);
}

.hero-title__lines i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--teal-dark);
}

.hero-title__lines i:nth-child(1) { width: 18px; margin-left: 10px; }
.hero-title__lines i:nth-child(2) { width: 28px; }
.hero-title__lines i:nth-child(3) { width: 20px; margin-left: 5px; }

.hero h1 em {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: block;
  width: max-content;
  margin-top: -4px;
  color: #fff;
  font-family: "Kaushan Script", cursive;
  font-size: clamp(68px, 7vw, 104px);
  font-style: normal;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.04em;
  transform: rotate(-3deg);
}

.hero-title__underline {
  position: absolute;
  z-index: -1;
  right: -14px;
  bottom: -8px;
  left: 4px;
  display: block;
  width: calc(100% + 18px);
  height: 24px;
  overflow: visible;
  pointer-events: none;
}

.hero-title__underline path {
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__lead {
  max-width: 600px;
  margin: 28px 0 26px;
  color: #fff;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.play-link__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding-left: 3px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 14px;
}

/* Services */
.services { padding-top: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 255px;
  padding: 26px 20px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 63, 57, .12);
}

.service-card__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #253d39;
  font-size: 13px;
  line-height: 1.55;
}


/* Cases */
.case-studies { padding-top: 16px; }

.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-label {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
}

.text-link {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-left: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--teal-dark);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.case-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.case-card:hover .case-card__image {
  transform: scale(1.025);
}

.case-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 36, 31, .76) 0%, rgba(0, 36, 31, .26) 52%, rgba(0, 36, 31, 0) 75%);
}

.case-card:first-child .case-card__shade,
.case-card:last-child .case-card__shade {
  background: linear-gradient(90deg, rgba(139, 0, 59, .72) 0%, rgba(139, 0, 59, .18) 56%, rgba(139, 0, 59, 0) 78%);
}

.case-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 225px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.case-card__content span,
.case-card__content small {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.case-card__content strong {
  margin: 8px 0 7px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
}

.case-card__arrow {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  transition: transform .2s ease;
}

.case-card:hover .case-card__arrow { transform: translateX(4px); }

/* Process */
.process { padding-top: 34px; }

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-grid::before {
  position: absolute;
  top: 19px;
  right: 9%;
  left: 9%;
  content: "";
  border-top: 1px dashed #b9c3c1;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step__number {
  display: inline-grid;
  min-width: 54px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.process-step img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 24px auto 12px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
}

.process-step p {
  max-width: 185px;
  margin: 0 auto;
  color: #213b37;
  font-size: 12px;
  line-height: 1.5;
}

/* CTA */
.cta-section { padding: 30px 0 34px; }

.cta-strip {
  position: relative;
  display: grid;
  min-height: 176px;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 24px 170px 24px 160px;
  border-radius: 18px;
  background: url("../assets/cta/background.svg?v=16") center / cover no-repeat;
  color: #fff;
}

.cta-strip::before,
.cta-strip::after {
  right: 0;
  background-image: url("../assets/cta/mockup-palm-right.svg?v=19");
  background-position: right center;
}

.cta-strip::before {
  left: 0;
  background-image: url("../assets/cta/mockup-palm-left.svg?v=19");
  background-position: left center;
}

.cta-strip::after {
  right: 0;
  width: 132px;
  background-image: url("../assets/cta/mockup-palm-right.png?v=18");
  background-position: right center;
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.cta-strip__mark { width: 96px; height: 96px; }

.cta-strip__copy h2 {
  margin: 0 0 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.cta-strip__copy p { margin: 0; font-size: 15px; }

.cta-strip__button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 210px;
  padding: 12px 12px 12px 28px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}

.cta-strip__button:hover { transform: translateY(-2px); }
.cta-strip__button img { width: 40px; height: 40px; margin-left: auto; }

/* Testimonials */
.testimonials { padding-top: 28px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  min-height: 235px;
  padding: 30px 30px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-mark {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.testimonial-card > p {
  min-height: 96px;
  margin: 4px 0 25px;
  color: #263b38;
  font-size: 14px;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-author div { display: grid; gap: 4px; }
.testimonial-author strong { font-size: 13px; }
.testimonial-author span { color: #4e625f; font-size: 11px; }


/* Partner strip */

/* Footer */
.site-footer {
  color: #fff;
  background: linear-gradient(120deg, #005b4e, #003f39);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(60px, 12vw, 180px);
  padding-top: 48px;
  padding-bottom: 42px;
}

.brand--footer img { width: 50px; height: 50px; }
.brand--footer span { color: #ff91bd; font-size: 19px; }

.footer-about p {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  text-decoration: none;
  transition:
    transform .2s ease,
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease;
}

.footer-socials a:hover {
  color: #003f39;
  border-color: #ff70ab;
  background: #ff70ab;
  transform: translateY(-2px);
}

.footer-socials a:focus-visible {
  outline: 3px solid rgba(255,112,171,.45);
  outline-offset: 3px;
}

.footer-socials img {
  width: 18px;
  height: 18px;
  display: block;
  color: inherit;
  filter: brightness(0) invert(1);
}

.footer-socials a:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(23%) saturate(1348%) hue-rotate(128deg) brightness(91%) contrast(102%);
}


.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.7;
  text-decoration: none;
}

.footer-column a:hover { color: var(--pink-2); }


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: 11px;
}

.footer-bottom div { display: flex; gap: 34px; }
.footer-bottom a { color: inherit; text-decoration: none; }

@media (max-width: 1180px) {
  .hero { min-height: 720px; }
  .site-header { grid-template-columns: auto 1fr; }
  .site-nav { justify-content: flex-end; }
  .button--header { display: none; }
  .hero__copy { width: 58%; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-strip { padding-inline: 90px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 44px 0; }
  .hero { min-height: 810px; }
  .hero__image { background-position: 62% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(255, 60, 143, .9) 0%, rgba(255, 60, 143, .66) 55%, rgba(255, 60, 143, .08) 100%); }
  .site-header { display: flex; flex-wrap: wrap; justify-content: space-between; }
  .site-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding: 6px 0 12px; }
  .hero__content { min-height: 650px; padding-top: 20px; }
  .hero__copy { width: min(620px, 82%); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 250px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .process-grid::before { display: none; }
  .cta-strip { grid-template-columns: 80px 1fr; padding: 28px 44px; }
  .cta-strip__mark { width: 76px; height: 76px; }
  .cta-strip__button { grid-column: 2; justify-self: start; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-about { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand img { width: 48px; height: 48px; }
  .brand span { font-size: 17px; }
  .site-nav { gap: 22px; }
  .site-nav a { white-space: nowrap; font-size: 12px; }
  .hero { min-height: 840px; }
  .hero__image { background-position: 68% center; }
  .hero__copy { width: 100%; }
  .hero h1 span, .hero h1 strong { font-size: clamp(46px, 14vw, 70px); }
  .hero h1 em { font-size: clamp(64px, 18vw, 88px); }
  .hero__lead { max-width: 90%; font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .section-topline { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-strip { grid-template-columns: 64px 1fr; gap: 16px; padding: 28px 22px; }
  .cta-strip__mark { width: 64px; height: 64px; }
  .cta-strip__copy h2 { font-size: 25px; }
  .cta-strip__copy p { font-size: 13px; }
  .cta-strip__button { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-contact { justify-self: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 18px; }
}

.case-card:nth-child(1) .case-card__image { object-position: 56% center; }
.case-card:nth-child(2) .case-card__image { object-position: 58% center; }
.case-card:nth-child(3) .case-card__image { object-position: 57% center; }
