

/* ================= TYPOGRAPHY STANDARDS ================= */
  :root {
    /* Color Palette - Harmonized */
    --primary-green: #55BB07;
    --primary-green-dark: #486D14;
    --accent-yellow: #CEF501;
    --accent-yellow-alt: #BFEA44;
    --bg-dark: #171717;
    --bg-dark-alt: #201f1f;
    --bg-dark-base: #282727;
    --card-bg: #313131;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.85);
    
    /* Typography - Standardized */
    --font-primary: 'Satoshi', sans-serif;
    --font-secondary: 'Manrope', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing - Consistent */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 100px;
    
    /* Transitions - Smooth */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
  }

  /* ================= CONTAINER ================= */
  .solution-last {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    width: 100%;
    padding: 0 var(--spacing-lg);
  }


  /* Smooth gradient transition at bottom of solution-last section */
  .solution-last::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 70vh;
    background-color: var(--bg-dark);
    pointer-events: none;
    z-index: 1;
  }

  /* ================= ROTATE ANIMATORS ================= */
  .solution-rotateAnimator,
  .solution-rotateAnimator-2 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  /* ================= BACKGROUND CIRCLES ================= */
  .solution-bg-circle {
    position: absolute;
    width: 750px;
    height: 750px;
    background-color: var(--primary-green);
    background-repeat: no-repeat;
    background-size: contain;
    filter: blur(80px);
    opacity: 0.7;
    transition: opacity var(--transition-base);
  }

  .solution-bgGradient {
    width: 650px;
    height: 650px;
    border-radius: 50%;
    opacity: 0.41;
    filter: blur(70px);
    border: solid 1px var(--text-primary);
    position: absolute;
    background-color: var(--primary-green);
    animation-name: solution-blur-animation;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }

  /* ================= YELLOW CIRCLES ================= */
  .solution-yellow {
    top: -20%;
    left: 5%;
    /* background-color: #55BB07B2; */
    opacity: 0.3;
    background-image: url('../images/vectors/hero-bg-circle4.png');
    animation: solution-yellow-vertical 18s ease-in-out infinite;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .solution-yellow-diagonal {
    top: -25%;
    right: -15%;
    left: auto;
    /* background-color: #55BB07B2; */
    background-image: url('../images/vectors/hero-bg-circle4.png');
    animation: solution-yellow-diagonal-move 22s ease-in-out infinite;
    opacity: 0.3;
  }

  /* ================= GREEN CIRCLES ================= */
  .solution-green-card {
    top: 15%;
    right: -10%;
    opacity: 0.3;
    background-color: #55BB07B2;
    background-image: url('../images/vectors/hero-bg-circle.svg');
    animation: solution-green-move 20s ease-in-out infinite;
  }

  .solution-green-card-2 {
    top: 25%;
    right: -15%;
    background-color: #55BB07B2;
    background-image: url('../images/vectors/hero-bg-circle4.png');
    animation-duration: 26s;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* ================= KEYFRAMES ================= */
  @keyframes solution-blur-animation {

    0%,
    100% {
      transform: scale(1) translate(0, 0);
    }

    50% {
      transform: scale(1.1) translate(30px, -30px);
    }
  }

  @keyframes solution-yellow-vertical {
    0% {
      top: -20%;
    }

    50% {
      top: 70%;
    }

    100% {
      top: -20%;
    }
  }

  @keyframes solution-yellow-diagonal-move {
    0% {
      top: -25%;
      right: -15%;
    }

    50% {
      top: 70%;
      right: 70%;
    }

    100% {
      top: -25%;
      right: -15%;
    }
  }

  @keyframes solution-green-move {
    0% {
      right: -10%;
    }

    50% {
      right: 75%;
    }

    100% {
      right: -10%;
    }
  }

  /* ================= CTA CONTENT ================= */
  .solution-inner {
    position: relative;
    z-index: 2;
    width: 70%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid #CEF501;
    border-radius: 20px;
    overflow: hidden;
    background-image: url('../images/herosection-bg.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    isolation: isolate;
    color: white;
  }

  .solution-inner p {
    color: white !important;
  }
  .solution-inner h1,
  .solution-inner .a2 {
    position: relative;
    z-index: 3;
  }

  .solution-inner h1 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: transform var(--transition-base);
  }

  .solution-inner h1:hover {
    transform: translateY(-2px);
  }

  .a2 {
    text-decoration: none;
    padding: 14px 32px;
    background-color: var(--primary-green-dark);
    color: var(--text-primary);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    border: 2px solid var(--primary-green);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
  }

  .a2:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(85, 187, 7, 0.3);
  }

  .a2:active {
    transform: translateY(0);
  }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 968px) {
    .solution-last {
      padding: 0 var(--spacing-md);
      height: 60vh;
    }

    .solution-inner {
      width: 90%;
      height: 45vh;
      gap: var(--spacing-sm);
    }

    .solution-bgGradient,
    .solution-bg-circle {
      width: 100vw;
      height: 100vw;
    }
  }

  @media (max-width: 600px) {
    .solution-last {
      height: 50vh;
      padding: 0 var(--spacing-sm);
    }

    .solution-inner {
      width: 95%;
      height: 40vh;
      padding: var(--spacing-md);
    }

    .solution-inner h1 {
      font-size: clamp(24px, 6vw, 32px);
    }

    .solution-last .a2 {
      font-size: 14px;
      padding: 10px 24px;
    }
  }

  .solution-last .a2 {
    background-color: var(--bg-dark-alt);
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 500;
    border: 2px solid var(--primary-green-dark);
    border-radius: 50px;
    display: flex;
    width: fit-content;
    text-decoration: none;
    color: var(--text-primary);
    padding: 12px 32px;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-base);
  }

  .solution-last .a2:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(85, 187, 7, 0.3);
  }

  /* ================= HOW IT WORKS SECTION ================= */
  .how-it-works-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark);
    min-height: 70vh;
    display: flex;
    align-items: center;
  }

  .how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
  }

  .how-it-works-title {
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-md);
  }

  .how-it-works-title h2 {
    font-size: clamp(36px, 5vw, 54px);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
  }

  .how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    align-items: start;
  }

  .how-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .how-step:nth-child(1) {
    animation-delay: 0.1s;
  }

  .how-step:nth-child(2) {
    animation-delay: 0.2s;
  }

  .how-step:nth-child(3) {
    animation-delay: 0.3s;
  }

  .how-step:hover {
    transform: translateY(-4px);
  }

  .how-step:hover .step-icon img {
    transform: scale(1.05);
  }

  .step-number {
    font-size: clamp(18px, 2vw, 24px);
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
  }

  .step-icon {
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
  }

  .step-icon img {
    width: 100%;
    height: auto;
    max-width: 300px;
    max-height: 200px;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-base);
  }

  .step-content {
    width: 100%;
  }

  .step-description {
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Styles */
  @media (max-width: 968px) {
    .how-it-works-section {
      padding: var(--spacing-xl) 0;
      min-height: auto;
    }

    .how-it-works-container {
      padding: 0 var(--spacing-md);
    }

    .how-it-works-title {
      margin-bottom: var(--spacing-lg);
    }

    .how-it-works-steps {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }

    .step-icon {
      max-width: 100%;
      margin: 0 auto var(--spacing-md);
    }

    .how-step {
      align-items: center;
      text-align: center;
    }

    .step-content {
      text-align: center;
    }
  }

  @media (max-width: 600px) {
    .how-it-works-section {
      padding: var(--spacing-lg) 0;
    }

    .how-it-works-title {
      margin-bottom: var(--spacing-lg);
    }

    .how-it-works-steps {
      gap: var(--spacing-lg);
    }

    .step-icon {
      height: 180px;
    }
  }

  .rotateAnimator,
  .rotateAnimator-2 {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  /* ================= HERO SECTION ENHANCEMENTS ================= */
  .her-bg-section .a1,
  .her-bg-section .a2 {
    transition: all var(--transition-base);
    font-family: var(--font-primary);
  }

  .her-bg-section .a1:hover,
  .her-bg-section .a2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 109, 20, 0.3);
  }

  .her-bg-section h1 {
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    transition: transform var(--transition-base);
  }

  .her-bg-section p {
    font-family: var(--font-secondary);
    line-height: 1.7;
    transition: opacity var(--transition-base);
  }

  /* ================= SCROLL ANIMATIONS ================= */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Smooth scroll behavior */
  html {
    scroll-behavior: smooth;
  }

  /* Intersection Observer animations */
  .fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }


  /* ================= PROBLEM SECTION ================= */
  .problemSection {
    position: relative;
    background: var(--bg-dark);
    padding: var(--spacing-xxl) var(--spacing-lg);
  }

  .problemSection h1 {
    font-size: clamp(36px, 5vw, 54px);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 var(--spacing-xl) 0;
    padding-top: var(--spacing-md);
  }

  /* ================= WRAPPER ================= */
  .problemWrapper {
    min-height: 10vh;
    padding: var(--spacing-md) var(--spacing-sm);
    max-width: 1500px;
    margin: 0 auto var(--spacing-lg);
  }

  /* ================= GRID ================= */
  .problemGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  /* ================= CARD ================= */
  .problemCard {
    position: relative;
    height: 420px;
    background: var(--card-bg);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
  }

  .problemCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }

  /* ================= IMAGE (TOP 80%) ================= */
  .problemCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-repeat: no-repeat;
    background-position: 24px 24px;
    background-size: 260px;
    opacity: 1;
    pointer-events: none;
  }

  /* ================= IMAGE SOURCES ================= */
  .problemCard[data-mark="01"]::before {
    background-image: url("../images/marks/01.png");

  }

  .problemCard[data-mark="02"]::before {
    background-image: url("../images/marks/02.png");
  }

  .problemCard[data-mark="03"]::before {
    background-image: url("../images/marks/03.png");
  }

  .problemCard[data-mark="A"]::before {
    background-image: url("../images/marks/a.png");
  }

  /* ================= TEXT BLOCK (BOTTOM 20% + OVERLAP) ================= */
  .problemContent {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
    border-radius: 18px;
    margin: 0 var(--spacing-md) var(--spacing-sm);
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transform: translateY(-20%);
    transition: transform var(--transition-base), background var(--transition-base);
  }

  .problemCard:hover .problemContent {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-22%);
  }

  /* ================= TEXT ================= */
  .problemContent h3 {
    margin: 0 0 var(--spacing-xs);
    font-size: clamp(20px, 2.5vw, 26px);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  .problemContent h3 span {
    opacity: 0.7;
    font-weight: 500;
  }

  .problemContent p {
    margin: 0;
    font-size: clamp(14px, 1.5vw, 16px);
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
  }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 900px) {
    .problemSection {
      padding: var(--spacing-xl) var(--spacing-md);
    }

    .problemGrid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }

    .problemCard {
      height: 380px;
    }

    .problemContent {
      transform: translateY(-15%);
    }
  }

  @media (max-width: 600px) {
    .problemSection {
      padding: var(--spacing-lg) var(--spacing-sm);
    }

    .problemWrapper {
      padding: var(--spacing-sm);
    }

    .problemCard {
      height: 360px;
    }
  }

  .outcomes-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--bg-dark-alt);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .outcomes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
  }

  .outcomes-title {
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-md);
  }

  .outcomes-title h1 {
    font-size: clamp(36px, 5vw, 54px);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
  }



  .outcomes-layout {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    justify-items: center;
  }

  /* Central Dashboard */
  .outcome-dashboard {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    width: 100%;
    max-width: 800px;
    z-index: 2;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transform: rotate(-3deg);
    box-shadow: 0 0 60px rgba(206, 245, 1, 0.4),
      0 0 100px rgba(206, 245, 1, 0.2),
      0 20px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(206, 245, 1, 0.5);
    display: block;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .dashboard-image:hover {
    transform: rotate(-2deg) scale(1.02);
    box-shadow: 0 0 80px rgba(206, 245, 1, 0.5),
      0 0 120px rgba(206, 245, 1, 0.3),
      0 25px 100px rgba(0, 0, 0, 0.7);
  }

  /* Feature Blocks */
  .outcome-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    z-index: 3;
  }

  .outcome-feature {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .outcome-top-left {
    animation-delay: 0.1s;
  }

  .outcome-top-right {
    animation-delay: 0.2s;
  }

  .outcome-bottom-left {
    animation-delay: 0.3s;
  }

  .outcome-bottom-right {
    animation-delay: 0.4s;
  }

  .outcome-feature:hover {
    transform: translateY(-4px);
  }

  .outcome-feature:hover .outcome-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(206, 245, 1, 0.4);
  }

  .outcome-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    flex-shrink: 0;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .outcome-icon svg {
    width: 32px;
    height: 32px;
    transition: transform var(--transition-base);
  }

  .outcome-feature:hover .outcome-icon svg {
    transform: scale(1.1);
  }

  .outcome-feature-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.01em;
  }

  .outcome-feature-desc {
    font-size: clamp(14px, 1.5vw, 16px);
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    text-align: center;
  }

  /* Position specific features */
  .outcome-top-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
  }

  .outcome-top-right {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
    align-self: center;
  }

  .outcome-bottom-left {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  .outcome-bottom-right {
    grid-column: 3;
    grid-row: 2;
    justify-self: center;
    align-self: center;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
    .outcomes-layout {
      grid-template-columns: 1fr 1.5fr 1fr;
      gap: var(--spacing-md);
    }

    .outcome-feature {
      max-width: 240px;
    }
  }

  @media (max-width: 968px) {
    .outcomes-section {
      padding: var(--spacing-xl) 0;
      min-height: auto;
    }

    .outcomes-container {
      padding: 0 var(--spacing-md);
    }

    .outcomes-title {
      margin-bottom: var(--spacing-lg);
    }

    .outcomes-layout {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: var(--spacing-lg);
      min-height: auto;
    }

    .outcome-dashboard {
      grid-column: 1;
      grid-row: 3;
      max-width: 600px;
      margin: 0 auto;
    }

    .outcome-feature {
      max-width: 100%;
      text-align: center;
      align-items: center;
    }

    .outcome-top-left,
    .outcome-top-right,
    .outcome-bottom-left,
    .outcome-bottom-right {
      grid-column: 1;
      justify-self: center;
      align-self: center;
    }

    .outcome-top-left {
      grid-row: 1;
    }

    .outcome-top-right {
      grid-row: 2;
    }

    .outcome-bottom-left {
      grid-row: 4;
    }

    .outcome-bottom-right {
      grid-row: 5;
    }
  }

  @media (max-width: 600px) {
    .outcomes-section {
      padding: var(--spacing-lg) 0;
    }

    .outcomes-title {
      margin-bottom: var(--spacing-lg);
    }

    .outcomes-layout {
      gap: var(--spacing-lg);
    }

    .outcome-icon {
      width: 50px;
      height: 50px;
      margin-bottom: var(--spacing-sm);
    }

    .outcome-icon svg {
      width: 28px;
      height: 28px;
    }

    .dashboard-image {
      transform: rotate(-1deg);
    }
  }






 