/** Shopify CDN: Minification failed

Line 402:0 Unexpected "}"

**/
:root {
  --color-deep-green: #16453c;
  --color-sage-green: #a8d3c6;
  --color-off-white: #f6f9f8;
  --color-soft-mint: #e4f2ee;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--color-off-white);
  color: var(--color-deep-green);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Section */
.solution-section {
  background: linear-gradient(
    to bottom,
    var(--color-off-white) 0%,
    var(--color-soft-mint) 50%,
    var(--color-off-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.solution-header {
  text-align: center;
  margin-bottom: 80px;
}

.solution-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-sage-green);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(168, 211, 198, 0.2);
  border-radius: 20px;
}

.solution-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-deep-green);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.solution-subtitle {
  font-size: 1.125rem;
  color: var(--color-deep-green);
  opacity: 0.75;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

/* Content */
.solution-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Solution Block */
.solution-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1.5px solid rgba(168, 211, 198, 0.3);
  box-shadow: 0 4px 24px rgba(22, 69, 60, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 69, 60, 0.1);
  border-color: var(--color-sage-green);
}

/* Visual */
.block-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-icon {
  /* Increased icon size from 300px to 420px for desktop */
  width: 420px;
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-sage-green), var(--color-soft-mint));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(168, 211, 198, 0.3);
  transition: all 0.4s ease;
}

.solution-block:hover .visual-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 12px 32px rgba(168, 211, 198, 0.4);
}

.visual-icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--color-deep-green);
}

/* Updated image styling to fill the icon container properly */
.visual-icon .icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* Text */
.block-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-deep-green);
  line-height: 1.3;
}

.block-description {
  font-size: 1.0625rem;
  color: var(--color-deep-green);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/* List */
.block-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.block-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-deep-green);
  opacity: 0.85;
}

.block-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-sage-green);
  flex-shrink: 0;
}

/* Mechanism Steps */
.mechanism-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(168, 211, 198, 0.1);
  border-radius: 12px;
  border-left: 3px solid var(--color-sage-green);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-sage-green);
  color: var(--color-deep-green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step p {
  font-size: 1rem;
  color: var(--color-deep-green);
  opacity: 0.85;
  margin: 0;
  padding-top: 4px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(168, 211, 198, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(168, 211, 198, 0.25);
  transform: translateX(4px);
}

.benefit-text {
  font-size: 0.9375rem;
  color: var(--color-deep-green);
  opacity: 0.85;
  font-weight: 500;
  text-align: center;
}

/* Proof Points */
.proof-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: rgba(168, 211, 198, 0.15);
  border-radius: 12px;
  text-align: center;
}

.proof-item strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-deep-green);
}

.proof-item span {
  font-size: 0.875rem;
  color: var(--color-deep-green);
  opacity: 0.7;
}

/* Bottom CTA */
.solution-cta {
  text-align: center;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1.5px solid rgba(168, 211, 198, 0.3);
  box-shadow: 0 4px 24px rgba(22, 69, 60, 0.06);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-deep-green);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.0625rem;
  color: var(--color-deep-green);
  opacity: 0.75;
  margin-bottom: 28px;
}

.cta-button {
  background-color: var(--color-deep-green);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 1.0625rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(22, 69, 60, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #12372f;
  box-shadow: 0 20px 25px -5px rgba(22, 69, 60, 0.3);
  transform: translateY(-2px);
}

/* Responsive - Desktop */
@media (min-width: 768px) {

  .solution-title {
    font-size: 3.5rem;
  }

  .solution-subtitle {
    font-size: 1.25rem;
  }

  .solution-block {
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    padding: 48px 40px;
  }

  .solution-block.reverse {
    grid-template-columns: 1.5fr 1fr;
  }

  .solution-block.reverse .block-visual {
    order: 2;
  }

  .solution-block.reverse .block-text {
    order: 1;
  }

  .block-title {
    font-size: 2rem;
  }

  .block-description {
    font-size: 1.125rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-text {
    font-size: 1.125rem;
  }.solution-section
}

/* Responsive - Mobile */
@media (max-width: 767px) {

  .solution-title {
    font-size: 2.25rem;
  }

  .solution-subtitle {
    font-size: 1rem;
  }

  .solution-content {
    gap: 40px;
  }

  .solution-block {
    padding: 32px 24px;
    gap: 24px;
  }

  .visual-icon {
    /* Increased mobile icon size from 200px to 280px */
    width: 280px;
    height: 280px;
  }

  .visual-icon svg {
    width: 48px;
    height: 48px;
  }

  .block-title {
    font-size: 1.5rem;
  }

  .block-description {
    font-size: 1rem;
  }

  .solution-cta {
    padding: 36px 24px;
    margin-top: 60px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
  }
}
