@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
:root {
  --green: #10aa52;
  --green-dark: #08723a;
  --green-soft: #a8ee70;
  --ink: #17342d;
  --charcoal: #17312b;
  --paper: #f5f4ef;
  --white: #fff;
  --muted: #6e7772;
  --line: rgba(23, 52, 45, 0.13);
  --max: 1380px;
  --shadow: 0 24px 65px rgba(16, 55, 36, 0.13);
  --spot-arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7'/%3E%3Cpath d='M8 7h9v9'/%3E%3C/svg%3E");
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.section {
  padding: 104px 0;
}
.dark {
  background: var(--charcoal);
  color: #fff;
}
.green {
  background: var(--green);
  color: #fff;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, sans-serif;
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0;
}
h1 {
  font-size: clamp(54px, 8vw, 116px);
}
h2 {
  font-size: clamp(38px, 5vw, 70px);
}
h3 {
  font-size: clamp(21px, 2.1vw, 30px);
}
p {
  margin: 0;
}
.lead {
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 700px;
}
.dark .lead {
  color: #b9c6c1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.eyebrow:before {
  content: "";
  width: 27px;
  height: 2px;
  background: var(--green);
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}
.split .lead {
  justify-self: end;
  max-width: 520px;
}
.site-header {
  position: fixed;
  z-index: 60;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1380px, calc(100% - 28px));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 45px rgba(20, 50, 35, 0.12);
  border-radius: 18px;
  transition: 0.3s;
}
.site-header.scrolled {
  top: 7px;
}
.nav {
  height: 82px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}
.nav-links a {
  color: #626b67;
  transition: 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}
.nav-links a.active:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  left: 50%;
  top: 24px;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  transition: 0.25s;
  cursor: pointer;
}
.nav-cta {
  font-size: 12px;
}
.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16, 170, 82, 0.24);
  background: var(--green-dark);
}
.btn:after {
  content: "";
  display: inline-block;
  width: 0.78em;
  height: 0.78em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--spot-arrow-mask) no-repeat center / contain;
  mask: var(--spot-arrow-mask) no-repeat center / contain;
}
.btn-dark {
  background: var(--charcoal);
}
.menu-btn {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  margin: 6px;
}
.hero {
  min-height: 100vh;
  padding: 165px 0 42px;
  background: linear-gradient(135deg, #eef7f1 0%, #f7f5ef 58%, #dbeee2 100%);
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(16, 170, 82, 0.24);
  right: -170px;
  top: -230px;
  box-shadow: 0 0 0 90px rgba(16, 170, 82, 0.035),
    0 0 0 180px rgba(16, 170, 82, 0.025);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 45px;
  align-items: end;
}
.hero h1 span {
  color: var(--green);
}
.hero-side p {
  font-size: 19px;
  color: #66706b;
  margin-bottom: 25px;
}
.hero-media {
  position: relative;
  margin-top: 50px;
  height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  transition: transform 1s;
}
.hero-media:hover img {
  transform: scale(1.025);
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 50, 29, 0.35), transparent 55%);
}
.hero-seal {
  position: absolute;
  z-index: 2;
  right: 28px;
  top: 28px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 12px/1.25 Manrope;
  transform: rotate(7deg);
}
.page-hero {
  min-height: 69vh;
  padding: 180px 0 78px;
  display: flex;
  align-items: end;
  background: linear-gradient(135deg, #172f29, #28473e);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: url(../masks/spot-icon-small.svg);
      position: absolute;
    right: 0vw;
    bottom: -3vw;
    width: 180px;
    opacity: 0.3;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .lead {
  color: #c0ccc7;
  margin-top: 26px;
}
.page-hero .eyebrow {
  color: #8ce2ac;
}
.story-section {
  background: #fff;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.story-card {
  min-height: 520px;
  border-radius: 27px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.35s, box-shadow 0.35s;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.story-light {
  background: #f5f3f0;
}
.story-green {
  background: #a9ef18;
}
.story-card h3 {
  font-size: clamp(23px, 2vw, 31px);
  max-width: 330px;
  margin: 14px 0 24px;
}
.story-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 21px;
  margin-top: auto;
}
.story-green > img {
  height: 285px;
  margin: 0 0 25px;
}
.story-green div {
  margin-top: auto;
}
.story-label {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(23, 52, 45, 0.13);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.story-arrow {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.story-green .story-arrow {
  top: auto;
  bottom: 25px;
}
.story-green h3 {
  padding-right: 46px;
  margin-bottom: 0;
}
.approach-grid {
  display: grid;
  
  gap: 15px;
}
.approach-grid--three{
  grid-template-columns: repeat(3, 1fr);
}
.approach-grid--four{
  grid-template-columns: repeat(4, 1fr);
}
.approach-card {
  min-height: 340px;
  border-radius: 17px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.approach-card:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  right: -80px;
  bottom: -100px;
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.approach-light {
  background: #fff;
  border: 1px solid var(--line);
}
.approach-green {
  background: var(--green-soft);
}
.approach-dark {
  background: #073e36;
  color: #fff;
}
.approach-icon {
  font-size: 37px;
  line-height: 1;
  color: var(--green);
  margin-bottom: 54px;
}
.approach-dark .approach-icon {
  color: #a9ef18;
}
.approach-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 15px 0 28px;
  max-width: 330px;
}
.approach-dark p {
  color: #b9ccc5;
}
.approach-card a {
  margin-top: auto;
  align-self: flex-start;
  background: #073e36;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  color: #e8ebea;
}
.approach-dark a {
  background: #fff;
  color: var(--charcoal);
}
.image-marquee {
  display: grid!important;
  grid-template-columns: 1.15fr 0.85fr 0.7fr;
  gap: 14px;
  padding: 14px;
  background: #fff;
}
.image-marquee figure {
  margin: 0;
  height: 320px;
  overflow: hidden;
  border-radius: 22px;
  position: relative;
}
.image-marquee img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  transition: 0.8s;
}
.image-marquee figure:hover img {
  transform: scale(1.045);
}
.image-marquee figcaption,
.machine-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.value-card {
  min-height: 340px;
  border-radius: 28px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.value-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #e3f7e9;
  right: -70px;
  top: -80px;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.value-card .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--green);
}
.value-card h3 {
  max-width: 440px;
  margin: 65px 0 18px;
}
.value-card p {
  color: var(--muted);
  max-width: 520px;
}
.value-card.dark-card {
  background: #696b6a;
  color: #fff;
}
.value-card.dark-card p {
  color: #aebbb5;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}
.product-card {
  grid-column: span 4;
  background: #fff;
  border-radius: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.35s;
}
.product-card.wide {
  grid-column: span 8;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 400px;
  overflow: hidden;
  background: #e3e5df;
  position: relative;
}
.product-card.tall .product-image {
  height: 400px;
}
.product-image img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  transition: 0.8s;
}
.product-card:hover img {
  transform: scale(1.045);
}
.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.product-copy {
  padding: 26px;
}
.product-copy p {
  color: var(--muted);
  margin-top: 12px;
}
.product-copy a {
  display: inline-block;
  margin-top: 20px;
  color: var(--green);
  font-weight: 800;
}
.process-timeline {
  position: relative;
}
.process-timeline:before {
  content: "";
  position: absolute;
  left: 35px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(16, 170, 82, 0.35);
}
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 34px;
  padding: 33px 26px 33px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.process-step:hover {
  background: rgba(16, 170, 82, 0.06);
}
.process-step .dot {
  width: 16px;
  height: 16px;
  background: var(--green);
  border: 5px solid #2a3c35;
  border-radius: 50%;
  justify-self: center;
  z-index: 2;
  box-shadow: 0 0 0 1px var(--green);
}
.process-step p {
  color: #aebbb5;
  max-width: 540px;
}
.machine-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 17px;
}
.machine-feature,
.machine-stack figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.machine-feature {
  height: 630px;
}
.machine-stack {
  display: grid;
  gap: 17px;
}
.machine-stack figure {
  height: 306px;
}
.machine-grid img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  transition: 0.8s;
}
.machine-grid figure:hover img {
  transform: scale(1.035);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.stat {
  padding: 35px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  color: #73da98;
  font: 800 clamp(42px, 5vw, 70px) / 1 Manrope;
}
.stat span {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 10px;
  color: #b7c2bd;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.35s;
}
.article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.article img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.article-copy {
  padding: 25px;
}
.article-copy .meta {
  font-size: 10px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-copy p {
  color: var(--muted);
  margin-top: 12px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.contact-line {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line small {
  display: block;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.contact-line a,
.contact-line span {
  font-size: 18px;
  font-weight: 600;
}
.form {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: 1px solid var(--line);
}
.field {
  display: grid;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #f7f7f3;
  border-radius: 13px;
  padding: 14px;
  outline: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
}
.field textarea {
  min-height: 135px;
  resize: vertical;
}
.toast {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  background: var(--charcoal);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  transform: translateY(150%);
  transition: 0.35s;
}
.toast.show {
  transform: none;
}
.cta {
  background: var(--green);
  color: #fff;
  padding: 84px 24px;
  text-align: center;
}
.cta h2 {
  max-width: 980px;
  margin: 0 auto 32px;
}
.cta .btn {
  background: var(--charcoal);
}
.site-footer {
  background: #102822;
  color: #fff;
  padding: 80px 0 28px;
}
.footer-callout {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-callout h2 {
  font-size: clamp(34px, 4vw, 62px);
  max-width: 850px;
}
.footer-kicker {
  display: block;
  color: #81e7a8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer-cta {
  background: var(--green);
  padding: 15px 19px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.95fr 1fr;
  gap: 45px;
  padding: 55px 0;
}
.footer-brand p,
.footer-note,
.footer-contact,
.footer-menu {
  color: #aebdb7;
  font-size: 14px;
}
.footer-brand p {
  max-width: 360px;
  margin: 20px 0;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-trust span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 9px;
  text-transform: uppercase;
}
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-menu,
.footer-contact {
  display: grid;
  gap: 10px;
}
.footer-contact small {
  display: block;
  color: #69d893;
}
.footer-note strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #82928b;
  font-size: 12px;
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .nav-links {
    position: fixed;
    display: none;
    top: 92px;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
    flex-direction: column;
    font-size: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 28px;
  }
  .split .lead {
    justify-self: start;
  }
  .story-grid,
  .approach-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-card:last-child,
  .approach-card:last-child {
    grid-column: 1/-1;
  }
  .product-card,
  .product-card.wide {
    grid-column: span 6;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 26px, var(--max));
  }
  .section {
    padding: 72px 0;
  }
  .hero {
    padding-top: 135px;
  }
  .hero-grid {
    gap: 25px;
  }
  .hero-media {
    height: 330px;
    margin-top: 32px;
  }
  .hero-seal {
    width: 100px;
    height: 100px;
    right: 16px;
    top: 16px;
    font-size: 10px;
  }
  .page-hero {
    min-height: 62vh;
    padding-top: 145px;
  }
  .story-grid,
  .approach-grid,
  .value-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .story-card,
  .approach-card,
  .story-card:last-child,
  .approach-card:last-child {
    grid-column: auto;
  }
  .story-card {
    min-height: 480px;
  }
  .image-marquee {
    grid-template-columns: 1fr;
  }
  .image-marquee figure {
    height: 260px;
  }
  .product-card,
  .product-card.wide {
    grid-column: 1/-1;
  }
  .product-card.tall .product-image,
  .product-image {
    height: 330px;
  }
  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  .process-step p {
    grid-column: 2;
  }
  .process-timeline:before {
    left: 23px;
  }
  .machine-grid {
    grid-template-columns: 1fr;
  }
  .machine-feature {
    height: 390px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-callout,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Reference-card redesign: based directly on the two supplied layouts */
.spot-showcase {
  padding: 110px 0;
  background: #fff;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr 1fr;
  gap: 24px;
}
.showcase-card {
  height: 570px;
  border-radius: 30px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #183a33;
  box-shadow: 0 1px 0 rgba(23, 52, 45, 0.05);
  transition: transform 0.35s, box-shadow 0.35s;
}
.showcase-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 65px rgba(15, 52, 41, 0.13);
}
.showcase-cream {
  background: #f3f1ef;
}
.showcase-lime {
  background: #b8f10e;
  padding: 0;
}
.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 46px;
}
.showcase-label {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(23, 52, 45, 0.13);
  border-radius: 999px;
  font: 700 9px/1 Manrope, sans-serif;
  letter-spacing: 0.11em;
}
.round-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font: 700 20px/1 Manrope, sans-serif;
  box-shadow: 0 8px 24px rgba(18, 51, 42, 0.08);
  transition: transform 0.25s;
}
.round-arrow:hover {
  transform: rotate(45deg);
}
.showcase-card h3 {
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin: 16px 0 24px;
  max-width: 340px;
}
.showcase-photo {
  height: 310px;
  margin-top: auto;
  border-radius: 24px;
  overflow: hidden;
}
.showcase-photo img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  transition: transform 0.7s;
}
.showcase-card:hover .showcase-photo img {
  transform: scale(1.035);
}
.showcase-cutout {
  height: 330px;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 54%,
    75% 54%,
    75% 100%,
    25% 100%,
    25% 54%,
    0 54%
  );
}
.showcase-cutout img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
}
.showcase-bottom {
  margin-top: auto;
  padding: 0 70px 28px 30px;
}
.showcase-bottom h3 {
  margin-bottom: 0;
}
.arrow-bottom {
  position: absolute;
  right: 28px;
  bottom: 28px;
}
.spot-approach {
  padding: 116px 0 126px;
  background: #f5f4ed;
}
.approach-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}
.mini-kicker {
  display: block;
  font: 700 11px/1.2 Manrope, sans-serif;
  margin-bottom: 17px;
}
.approach-heading h2 {
  font-size: clamp(39px, 4.8vw, 67px);
  line-height: 1.02;
}
.approach-heading > p {
  max-width: 490px;
  color: #68726d;
  font-size: 16px;
  line-height: 1.55;
  justify-self: end;
  padding-bottom: 5px;
}
.reference-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.reference-card {
  height: 370px;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  color: #173a32;
}
.reference-card:after {
  content: "";
  position: absolute;
  width: 230px;
  height: 229px;
  border-radius: 50%;
  border: 1px solid rgba(23, 52, 45, 0.06);
  right: -86px;
  bottom: -104px;
  pointer-events: none;
}
.reference-card svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #0b7040;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reference-card .reference-card-content {
  position: relative;
  margin-top: auto;
  margin-bottom: 70px;
}
.reference-card h3 {
  font-size: 25px;
  line-height: 1.08;
  margin: 17px 0;
  max-width: 260px;
}
.reference-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #69736e;
  max-width: 300px;
}
.reference-card-bottom {
  position: relative;
  background: #f5f4ed;
  margin: 0 0 -28px -28px;
  max-width: 152px;
  padding: 15px 15px 0 0;
  z-index: 99;
  height: 60px;
  border-radius: 0 26px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.reference-card-bottom::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0px;
    bottom: 60px;
    border-radius: 0 0 0 30px;
    box-shadow: -8px 8px 0 8px #f5f5eb;
}
.reference-card-bottom::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 40px;
    left: 152px;
    bottom: 0px;
    border-radius: 0 0 0 28px;
    box-shadow: -9px 9px 0 8px #f5f5eb;
}
.reference-card-bottom a{
  padding: 10px;
  background: #a9ed69;
  border-radius: 30px;
  z-index: 999;
}
.ref-white {
  background: #fff;
}
.ref-lime {
  background: #a9ed69;
}
.ref-dark {
  background: #073e36;
  color: #fff;
}
.ref-dark svg {
  stroke: #a9ed69;
}
.ref-dark p {
  color: #b9cec6;
}
.reference-card .reference-card-bottom a {
  position: absolute;
  left: 0;
  bottom: -20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font: 700 10px/1 Manrope, sans-serif;
  box-shadow: 0 8px 22px rgba(15, 52, 41, 0.09);
  z-index: 2;
}
.reference-card .reference-card-bottom a span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

@media (max-width: 1050px) {
  .showcase-grid,
  .reference-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-card:last-child,
  .reference-card:last-child {
    grid-column: 1/-1;
  }
  .approach-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .approach-heading > p {
    justify-self: start;
  }
  .reference-card-grid {
    row-gap: 54px;
  }
}
@media (max-width: 700px) {
  .spot-showcase {
    padding: 74px 0;
  }
  .showcase-grid,
  .reference-card-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card,
  .showcase-card:last-child,
  .reference-card,
  .reference-card:last-child {
    grid-column: auto;
  }
  .showcase-card {
    height: 520px;
    padding: 23px;
  }
  .showcase-lime {
    padding: 0;
  }
  .showcase-cutout {
    height: 295px;
  }
  .showcase-bottom {
    padding: 0 65px 23px 23px;
  }
  .arrow-bottom {
    right: 22px;
    bottom: 22px;
  }
  .showcase-photo {
    height: 280px;
  }
  .spot-approach {
    padding: 78px 0 100px;
  }
  .approach-heading {
    margin-bottom: 38px;
  }
  .approach-heading h2 {
    font-size: 38px;
  }
  .reference-card-grid {
    gap: 54px;
  }
  .reference-card {
    height: 350px;
  }
}
/* Integrated card links and rounded organic image mask */
.showcase-cutout {
  height: 342px;
  clip-path: none;
  overflow: visible;
}
.burst-art {
  display: block;
  width: 100%;
  height: 100%!important;
  overflow: visible;
}
.showcase-lime {
  overflow: hidden;
}
.reference-card {
  isolation: isolate;
}

.reference-card > svg,
.reference-card .reference-card-content {
  position: relative;
  z-index: 2;
}
.reference-card .reference-card-bottom a {
  left: 0px;
  bottom: 0px;
  height: 49px;
  padding: 20px 26px;
  gap: 7px;
  box-shadow: none;
  z-index: 3;
}

.ref-white .reference-card-bottom a {
  background: #fff;
}
.ref-lime .reference-card-bottom a {
  background: #a9ed69;
}
.ref-dark .reference-card-bottom a {
  color: #fff;
  background: #073e36;
}
.reference-card .reference-card-bottom a span {
  width: 18px;
  height: 18px;
  color: var(--ink);
}
@media (max-width: 700px) {
  .showcase-cutout {
    height: 312px;
  }
  .reference-card::before {
    bottom: -22px;
  }
}
/* Spot website footer */
.spot-original-footer {
  background: #073e36;
  color: #fff;
}
.spot-footer-main {
  padding: 78px 0 66px;
}
.spot-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr 1.15fr;
  gap: 58px;
  align-items: start;
}
.spot-footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 7px;
  margin-bottom: 22px;
}
.spot-footer-brand p {
  max-width: 420px;
  color: #c0d1cb;
  font-size: 14px;
  line-height: 1.75;
}
.spot-socials {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}
.spot-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font: 700 12px/1 Manrope, sans-serif;
  transition: 0.25s;
}
.spot-socials a:hover {
  background: #a9ef18;
  border-color: #a9ef18;
  color: #073e36;
  transform: translateY(-3px);
}
.spot-footer-col {
  display: grid;
  gap: 13px;
}
.spot-original-footer h4 {
  font: 700 17px/1.2 Manrope, sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 17px;
  color: #fff;
}
.spot-footer-col a {
  width: max-content;
  color: #c0d1cb;
  font-size: 14px;
  transition: 0.2s;
}
.spot-footer-col a:hover {
  color: #a9ef18;
  transform: translateX(3px);
}
.spot-footer-newsletter p {
  color: #c0d1cb;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.spot-footer-newsletter form {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 5px;
  overflow: hidden;
}
.spot-footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 13px;
  background: transparent;
  color: #173a32;
}
.spot-footer-newsletter button {
  border: 0;
  background: #10aa52;
  color: #fff;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.spot-footer-contactbar {
  background: #0a503d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.spot-contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.3fr;
}
.spot-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s;
}
.spot-contact-item:first-child {
  padding-left: 0;
}
.spot-contact-item:last-child {
  border-right: 0;
}
.spot-contact-item:hover {
  background: rgba(255, 255, 255, 0.035);
}
.spot-contact-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #a9ef18;
  color: #073e36;
  font-size: 18px;
}
.spot-contact-item strong {
  display: block;
  font: 700 15px/1.35 Manrope, sans-serif;
  color: #fff;
}
.spot-contact-item small {
  display: block;
  color: #a8beb6;
  margin-top: 4px;
  font-size: 11px;
}
.spot-footer-bottom {
  background: #052e29;
}
.spot-footer-bottom .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #91a9a1;
  font-size: 12px;
  position: relative;
  padding-right: 170px;
}
.spot-footer-bottom a {
  color: #fff;
}
.spot-back-top {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 11px 14px;
  font: 700 10px/1 Manrope, sans-serif;
  letter-spacing: 0.08em;
  transition: 0.25s;
}
.spot-back-top span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #a9ef18;
  color: #073e36;
  font-size: 14px;
}
.spot-back-top:hover {
  border-color: #a9ef18;
  transform: translateY(-3px);
}
.single-post h1{
  font-size: 60px;
}
.single-post h2{
  font-size: 40px;
}
@media (max-width: 1050px) {
  .spot-footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    gap: 40px;
  }
  .spot-footer-newsletter {
    grid-column: 1/-1;
    max-width: 520px;
  }
  .spot-contact-grid {
    grid-template-columns: 1fr;
  }
  .spot-contact-item,
  .spot-contact-item:first-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .spot-contact-item:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 700px) {
  .spot-footer-main {
    padding: 62px 0 48px;
  }
  .spot-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }
  .spot-footer-brand,
  .spot-footer-newsletter {
    grid-column: 1/-1;
  }
  .spot-footer-bottom .container {
    padding: 25px 0 100px;
    min-height: 0;
    display: grid;
    gap: 8px;
  }
  .spot-back-top {
    left: 0;
    right: auto;
    bottom: 28px;
  }
  .spot-contact-item strong {
    font-size: 13px;
  }
  .spot-video-hero{
    min-height:60vh!important;
  }
  .elementor-widget-video .elementor-wrapper iframe, 
  .elementor-widget-video .elementor-wrapper video{
    min-height: 300px;
  }
  .spot-about-company__main{
    min-height: 400px !important;
  }
  .spot-journey__gallery{
    min-height: auto!important;
  }
  .spot-fin-svc-card__media img{
    width: 90%!important;
    height: 90% !important;
  }
	.spot-lightbox-overlay{
		display:none!important;
	}
}