    :root {
      /* Premium Green Palette */
      --green-50: #f0fdf4;
      --green-100: #dcfce7;
      --green-200: #bbf7d0;
      --green-300: #86efac;
      --green-400: #4ade80;
      --green-500: #22c55e;
      --green-600: #16a34a;
      --green-700: #15803d;
      --green-800: #166534;
      --green-900: #14532d;

      /* Warm Neutral Palette */
      --neutral-50: #fafaf9;
      --neutral-100: #f5f5f4;
      --neutral-200: #e7e5e4;
      --neutral-300: #d6d3d1;
      --neutral-400: #a8a29e;
      --neutral-500: #78716c;
      --neutral-600: #57534e;
      --neutral-700: #44403c;
      --neutral-800: #292524;
      --neutral-900: #1c1917;

      /* Accent Colors */
      --cream: #fefcf3;
      --warm-white: #fffffe;

      --radius: 24px;
      --radius-sm: 16px;
      --radius-lg: 32px;

      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 25px 50px -12px rgba(0, 0, 0, 0.08);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 40px 80px -20px rgba(0, 0, 0, 0.12);
      --shadow-green: 0 20px 40px -12px rgba(22, 163, 74, 0.35);
      --shadow-glow: 0 0 60px -12px rgba(22, 163, 74, 0.25);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--neutral-800);
      background: var(--cream);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      letter-spacing: -0.03em;
      text-wrap: balance;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: #fff;
      border-bottom: 1px solid var(--neutral-200);
      transition: all 0.3s ease;
      padding: 16px 0;
    }

    nav.scrolled {
      background: #fff;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      padding: 10px 0;
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--green-700);
      text-decoration: none;
      font-family: 'Outfit';
      transition: transform 0.3s ease;
    }

    .nav-logo:hover {
      transform: scale(1.02);
    }

    .nav-logo img {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .footer-logo-img {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      vertical-align: middle;
      margin-right: 8px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--neutral-600);
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a:not(.btn)::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--green-500);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .nav-links a:not(.btn):hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: var(--green-700);
    }

    .nav-links .btn.btn-primary {
      padding: 10px 24px;
      font-size: 0.88rem;
      color: #fff !important;
      box-shadow: 0 4px 14px -4px rgba(34, 197, 94, 0.4);
      border-radius: 100px;
    }

    .nav-links .btn.btn-primary:hover {
      color: #fff !important;
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 20px -4px rgba(34, 197, 94, 0.5);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn-primary {
      background: var(--green-500);
      color: #fff;
      box-shadow: 0 8px 24px -6px rgba(34, 197, 94, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 16px 40px -8px rgba(34, 197, 94, 0.5);
      background: var(--green-600);
    }

    .btn-primary:active {
      transform: translateY(0) scale(0.98);
    }

    .btn-outline {
      background: transparent;
      color: var(--green-700);
      border: 2px solid var(--green-300);
      backdrop-filter: blur(8px);
      font-weight: 600;
    }

    .btn-outline:hover {
      background: var(--green-50);
      border-color: var(--green-500);
      transform: translateY(-3px) scale(1.02);
    }

    .btn-outline:active {
      transform: translateY(0) scale(0.98);
    }

    .btn-dark {
      background: var(--neutral-900);
      color: #fff;
    }

    .btn-dark:hover {
      background: var(--neutral-800);
      transform: translateY(-3px);
    }

    .btn-lg {
      padding: 18px 42px;
      font-size: 1.05rem;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--neutral-800);
      padding: 8px;
      border-radius: 12px;
      transition: background 0.3s ease;
    }

    .hamburger:hover {
      background: var(--neutral-100);
    }

    .hamburger svg {
      width: 28px;
      height: 28px;
    }

    .hero {
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 80px 24px 40px;
      background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      --p: calc(var(--parallax) * -0.6);
      content: '';
      position: absolute;
      width: 1000px;
      height: 1000px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 70%);
      top: -300px;
      right: -300px;
      animation: pulse-glow 8s ease-in-out infinite;
    }

    .hero::after {
      --p: calc(var(--parallax) * -0.3);
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
      bottom: -200px;
      left: -200px;
      animation: pulse-glow 10s ease-in-out infinite reverse;
    }

    @keyframes pulse-glow {

      0%,
      100% {
        opacity: 0.5;
        transform: translateY(var(--p, 0)) scale(1);
      }

      50% {
        opacity: 1;
        transform: translateY(var(--p, 0)) scale(1.1);
      }
    }

    .hero-inner {
      max-width: 1320px;
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 10;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: var(--green-50);
      color: var(--green-700);
      padding: 10px 24px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 28px;
      border: 1px solid var(--green-200);
      animation: fade-in-up 0.8s ease forwards;
    }

    .hero h1 {
      font-size: clamp(3.2rem, 6vw, 5rem);
      color: var(--neutral-900);
      margin-bottom: 28px;
      line-height: 1.05;
      animation: fade-in-up 0.8s ease 0.1s both;
    }

    .hero h1 .highlight {
      position: relative;
      display: inline-block;
      color: var(--green-700);
      -webkit-text-fill-color: var(--green-700);
      padding: 0 8px;
      margin: 4px 0;
    }

    .hero h1 .highlight::before {
      content: '';
      position: absolute;
      bottom: 8%;
      left: 0;
      right: 0;
      height: 35%;
      background: linear-gradient(90deg, var(--green-100), var(--green-200));
      border-radius: 4px;
      z-index: -1;
      transform: scaleX(0);
      transform-origin: left;
      animation: highlightSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }

    @keyframes highlightSlide {
      0% {
        transform: scaleX(0);
      }

      100% {
        transform: scaleX(1);
      }
    }

    .hero-img-mobile {
      display: none;
      max-width: 200px;
      margin: 20px auto 0;
      border-radius: 16px;
    }

    .hero-mobile-badges {
      display: none;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin: 14px auto 20px;
    }

    .hero-mobile-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      border: 1px solid var(--neutral-200);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--neutral-700);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .hero-mobile-badge span.dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      display: inline-block;
    }

    .hero p {
      font-size: 18px;
      color: var(--neutral-500);
      margin-bottom: 44px;
      max-width: 540px;
      margin-left: 0;
      margin-right: auto;
      line-height: 1.8;
      animation: fade-in-up 0.8s ease 0.2s both;
    }

    .hero-cta {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 56px;
      animation: fade-in-up 0.8s ease 0.3s both;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      border-top: 1px solid var(--neutral-200);
      padding-top: 32px;
      margin-top: 36px;
      animation: fade-in-up 0.8s ease 0.4s both;
    }

    .hero-stat h3 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--neutral-900);
      letter-spacing: -0.04em;
      min-height: 1.2em;
    }

    .hero-stat p {
      font-size: 0.95rem;
      color: var(--neutral-500);
      font-weight: 500;
      margin-top: 4px;
    }

    @keyframes fade-in-up {
      from {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(30px) scale(0.96);
      }

      to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
      }
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fade-in-up 1s ease 0.3s both;
    }

    .hero-img {
      width: 100%;
      max-width: 560px;
      border-radius: var(--radius-lg);
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 2;
      position: relative;
    }

    .hero-visual:hover .hero-img {
      transform: scale(1.02) rotate(1deg);
    }

    .floating-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: 14px;
      padding: 12px 16px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
      z-index: 3;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: default;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    .floating-card:hover {
      transform: translateY(-4px) scale(1.03) !important;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    }

    .floating-card.card-1 {
      top: 2%;
      left: -30px;
      animation: fadeSlideIn 0.6s ease-out 1s forwards, floatA 6s ease-in-out 1.6s infinite;
    }

    .floating-card.card-2 {
      bottom: 5%;
      right: -30px;
      animation: fadeSlideIn 0.6s ease-out 1.3s forwards, floatB 7s ease-in-out 1.9s infinite;
    }

    .floating-card.card-3 {
      top: 50%;
      left: -50px;
      animation: fadeSlideIn 0.6s ease-out 1.6s forwards, floatC 8s ease-in-out 2.2s infinite;
    }

    @keyframes fadeSlideIn {
      from {
        opacity: 0;
        transform: translateY(16px) scale(0.95);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes floatA {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes floatB {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    @keyframes floatC {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(8px);
      }
    }

    @media (max-width: 900px) {
      .floating-card {
        display: none;
      }
    }

    .floating-card h5 {
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--neutral-900);
      margin-bottom: 1px;
    }

    .floating-card p {
      font-size: 0.72rem;
      color: var(--neutral-500);
      font-weight: 500;
      margin: 0;
    }

    .float-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
    }

    .float-emoji {
      font-size: 20px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      flex-shrink: 0;
    }

    .section {
      padding: 140px 24px;
      position: relative;
    }

    .section-alt {
      background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 50%, var(--cream) 100%);
    }

    .section-green {
      background: linear-gradient(160deg, rgba(20, 83, 45, 0.88) 0%, rgba(22, 101, 52, 0.85) 100%),
        url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .section-green::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .section-green::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .stats-deco {
      position: absolute;
      opacity: 0.06;
      font-size: 80px;
      pointer-events: none;
      user-select: none;
    }

    .stats-deco.d1 {
      top: 10%;
      left: 5%;
      transform: rotate(-15deg);
      font-size: 70px;
    }

    .stats-deco.d2 {
      top: 15%;
      right: 8%;
      transform: rotate(12deg);
      font-size: 60px;
    }

    .stats-deco.d3 {
      bottom: 10%;
      left: 12%;
      transform: rotate(8deg);
      font-size: 65px;
    }

    .stats-deco.d4 {
      bottom: 15%;
      right: 5%;
      transform: rotate(-20deg);
      font-size: 75px;
    }

    .stats-deco.d5 {
      top: 50%;
      left: 2%;
      transform: rotate(5deg);
      font-size: 55px;
    }

    .stats-deco.d6 {
      top: 45%;
      right: 3%;
      transform: rotate(-10deg);
      font-size: 50px;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-600);
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 20px;
      padding: 8px 20px;
      background: var(--green-50);
      border-radius: 100px;
      border: 1px solid var(--green-100);
    }

    .section-green .section-label {
      color: var(--green-200);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .section-header h2 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 24px;
      color: var(--neutral-900);
      letter-spacing: -0.03em;
    }

    .section-green .section-header h2 {
      color: #fff;
    }

    .section-header p {
      font-size: 1.15rem;
      color: var(--neutral-500);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .section-green .section-header p {
      color: rgba(255, 255, 255, 0.75);
    }

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

    .feature-card {
      background: var(--warm-white);
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid var(--neutral-200);
      box-shadow: var(--shadow-sm);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .feature-card::before {
      display: none;
    }

    .feature-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(34, 197, 94, 0.07), transparent 40%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 1;
    }

    .feature-card:hover::before,
    .feature-card:hover::after {
      opacity: 1;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
      border-color: var(--green-100);
      background: #fff;
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.12) rotate(-5deg);
    }

    .feature-card:nth-child(1) .feature-icon {
      background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    }

    .feature-card:nth-child(2) .feature-icon {
      background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    }

    .feature-card:nth-child(3) .feature-icon {
      background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    }

    .feature-card:nth-child(4) .feature-icon {
      background: linear-gradient(135deg, #fef3c7, #fde68a);
    }

    .feature-card:nth-child(5) .feature-icon {
      background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    }

    .feature-card:nth-child(6) .feature-icon {
      background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    }

    .feature-card:nth-child(1) {
      border-top: 3px solid #22c55e;
    }

    .feature-card:nth-child(2) {
      border-top: 3px solid #3b82f6;
    }

    .feature-card:nth-child(3) {
      border-top: 3px solid #ec4899;
    }

    .feature-card:nth-child(4) {
      border-top: 3px solid #f59e0b;
    }

    .feature-card:nth-child(5) {
      border-top: 3px solid #6366f1;
    }

    .feature-card:nth-child(6) {
      border-top: 3px solid #10b981;
    }

    .feature-icon-img {
      background: transparent !important;
      box-shadow: none !important;
    }

    .feature-icon-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .feature-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--neutral-900);
    }

    .feature-card p {
      font-size: 0.98rem;
      color: var(--neutral-500);
      line-height: 1.7;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
      padding-bottom: 20px;
    }

    @media (min-width: 900px) {
      .step:nth-child(2) {
        transform: translateY(30px);
      }

      .step:nth-child(3) {
        transform: translateY(60px);
      }

      .step:nth-child(2):hover {
        transform: translateY(20px);
      }

      .step:nth-child(3):hover {
        transform: translateY(50px);
      }
    }

    @media (max-width: 899px) {
      .step {
        margin-top: 24px;
      }
    }

    .step {
      background: #ffffff;
      border-radius: 28px;
      box-shadow: 0 10px 40px rgba(34, 197, 94, 0.06);
      border: 1px solid rgba(34, 197, 94, 0.1);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      z-index: 2;
    }

    .step:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 60px rgba(34, 197, 94, 0.12);
      border-color: rgba(34, 197, 94, 0.25);
    }

    .step-img-wrapper {
      width: 100%;
      height: 240px;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-radius: 28px 28px 0 0;
      background: radial-gradient(circle at top right, rgba(220, 252, 231, 0.4), transparent 70%);
      overflow: hidden;
    }

    .step-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
      transform: scale(1);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .step:hover .step-img-wrapper img {
      transform: scale(1.06) rotate(-2deg);
    }

    .step-number {
      position: absolute;
      top: -16px;
      left: 24px;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--green-400), var(--green-600));
      color: #fff;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 800;
      font-family: 'Outfit';
      box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
      border: 3px solid #fff;
      z-index: 3;
      transition: all 0.4s ease;
    }

    .step:hover .step-number {
      transform: scale(1.1) rotate(-8deg);
    }

    .step-body {
      padding: 20px 32px 36px;
      text-align: left;
    }

    .step h3 {
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--neutral-900);
      letter-spacing: -0.01em;
    }

    .step p {
      font-size: 0.98rem;
      color: var(--neutral-500);
      line-height: 1.6;
      margin: 0;
    }

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

    .stat-card {
      text-align: center;
      padding: 52px 36px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(255, 255, 255, 0.15), transparent 40%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .stat-card:hover::before {
      opacity: 1;
    }

    .stat-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.15);
    }

    .stat-card h3 {
      font-size: clamp(2.75rem, 4.5vw, 3.75rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: -0.04em;
      min-height: 1.2em;
      position: relative;
    }

    .stat-card p {
      font-size: 1rem;
      color: #fff;
      font-weight: 600;
      position: relative;
    }

    .about-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .about-top {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 70px;
      align-items: center;
      margin-bottom: 60px;
      text-align: left;
    }

    .about-img-container {
      position: relative;
      border-radius: 32px;
      padding: 16px;
      background: linear-gradient(135deg, #ffffff, var(--green-50));
      box-shadow: 0 20px 60px rgba(34, 197, 94, 0.08);
      z-index: 1;
    }

    .about-img-container::before {
      content: '';
      position: absolute;
      top: -16px;
      left: -16px;
      right: 16px;
      bottom: 16px;
      border-radius: 40px;
      border: 2px dashed var(--green-200);
      z-index: -1;
    }

    .about-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 24px;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .about-img-container:hover .about-img {
      transform: scale(1.03) rotate(-1deg);
    }

    .about-content h2 {
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 24px;
      color: var(--neutral-900);
      letter-spacing: -0.03em;
      line-height: 1.25;
    }

    .about-content p {
      font-size: 1.05rem;
      color: var(--neutral-500);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .about-trust {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
      padding: 10px 24px 10px 10px;
      background: #ffffff;
      border-radius: 100px;
      box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
      border: 1px solid rgba(34, 197, 94, 0.1);
      transition: all 0.3s ease;
    }

    .about-trust:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(34, 197, 94, 0.18);
    }

    .about-trust img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
    }

    .about-trust span {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--green-700);
      font-family: 'Outfit', sans-serif;
    }

    .about-values {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 20px;
      width: 100%;
    }

    .about-value {
      background: #ffffff;
      border-radius: 28px;
      padding: 32px 24px;
      box-shadow: 0 10px 40px rgba(34, 197, 94, 0.05);
      border: 1px solid rgba(34, 197, 94, 0.08);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .about-value:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(34, 197, 94, 0.1);
      border-color: rgba(34, 197, 94, 0.2);
    }

    .about-value-icon {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }

    .about-value-icon svg {
      width: 100px;
      height: 100px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .about-value:hover .about-value-icon svg {
      transform: scale(1.12) translateY(-6px);
    }

    .about-value h4 {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--neutral-900);
      margin-bottom: 12px;
    }

    .about-value p {
      font-size: 0.95rem;
      color: var(--neutral-500);
      line-height: 1.6;
      margin: 0;
    }

    .vendor-section {
      background: linear-gradient(180deg, var(--cream) 0%, var(--green-50) 50%, var(--cream) 100%);
      padding: 100px 24px;
    }

    .vendor-card {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--warm-white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: var(--radius-lg);
      padding: 90px 70px;
      text-align: center;
      border: 1px solid var(--green-100);
      box-shadow: var(--shadow-xl);
      position: relative;
      overflow: hidden;
    }

    .vendor-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--green-400), var(--green-600), var(--green-400));
      background-size: 200% 100%;
      animation: gradient-shift 4s ease infinite;
    }

    @keyframes gradient-shift {

      0%,
      100% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }
    }

    .vendor-card h2 {
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--neutral-900);
      margin-bottom: 24px;
      letter-spacing: -0.03em;
    }

    .vendor-card p {
      font-size: 1.15rem;
      color: var(--neutral-500);
      margin-bottom: 48px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
    }

    .vendor-perks {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 52px;
      flex-wrap: wrap;
    }

    .vendor-perk {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--neutral-700);
      background: var(--cream);
      padding: 14px 28px;
      border-radius: 100px;
      border: 1px solid var(--neutral-200);
      transition: all 0.3s ease;
    }

    .vendor-perk:hover {
      background: var(--green-50);
      border-color: var(--green-200);
      transform: translateY(-2px);
    }

    .vendor-perk-check {
      width: 26px;
      height: 26px;
      background: var(--green-500);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
    }

    .download-section {
      background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
      color: #fff;
      text-align: center;
      padding: 140px 24px;
      position: relative;
      overflow: hidden;
    }

    .download-section::before {
      content: '';
      position: absolute;
      top: -30%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .download-section h2 {
      font-size: clamp(2.75rem, 5.5vw, 4rem);
      font-weight: 800;
      margin-bottom: 24px;
      letter-spacing: -0.03em;
      position: relative;
    }

    .download-section p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 56px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
      position: relative;
    }

    .download-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      position: relative;
    }

    /* Store badges handled by .badge-link and .store-badge classes */

    footer {
      background: var(--neutral-900);
      color: rgba(255, 255, 255, 0.55);
      padding: 100px 24px 50px;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 70px;
      margin-bottom: 70px;
    }

    .footer-brand h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-brand p {
      font-size: 0.98rem;
      line-height: 1.85;
      max-width: 380px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 18px;
    }

    .footer-col a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .footer-col a:hover {
      color: var(--green-400);
      transform: translateX(4px);
    }

    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 36px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      color: rgba(255, 255, 255, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 1.1rem;
      text-decoration: none;
      font-weight: 700;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-social a:hover {
      background: var(--green-600);
      color: #fff;
      transform: translateY(-4px);
      border-color: var(--green-600);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 99;
      padding: 80px 28px 40px;
      display: flex;
      flex-direction: column;
      gap: 0;
      opacity: 0;
      pointer-events: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateY(-20px);
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-menu a {
      font-size: 1.1rem;
      font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--neutral-800);
      text-decoration: none;
      padding: 16px 0;
      border-bottom: 1px solid var(--neutral-100);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mobile-menu a::after {
      content: '\203A';
      font-size: 1.3rem;
      color: var(--neutral-400);
    }

    .mobile-menu a:hover,
    .mobile-menu a:active {
      color: var(--green-600);
    }

    @media (max-width: 992px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
      }

      .hero p {
        margin: 0 auto 32px;
      }

      .hero-cta {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .hero-visual {
        order: -1;
      }

      .hero-img {
        max-width: 320px;
        margin: 0 auto;
        border-radius: 20px;
      }

      .hero {
        min-height: auto;
        padding: 80px 24px 40px;
      }

      .hero-inner {
        gap: 36px;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .floating-card.card-1 {
        left: 10%;
        top: 5%;
      }

      .floating-card.card-2 {
        right: 10%;
        bottom: 10%;
      }

      .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }

      .about-top {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
      }

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

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
      }

      .section {
        padding: 100px 24px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .nav-inner {
        padding: 0 20px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }

      .feature-card {
        padding: 24px 18px;
      }

      .feature-icon {
        width: 80px;
        height: 80px;
        border-radius: 18px;
      }

      .feature-card h3 {
        font-size: 1rem;
      }

      .feature-card p {
        font-size: 0.85rem;
      }

      .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }

      .step-img {
        height: 160px;
      }

      .step-body {
        padding: 18px 16px 22px;
      }

      .step h3 {
        font-size: 1rem;
      }

      .step p {
        font-size: 0.85rem;
      }

      .vendor-card {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .vendor-card img {
        min-height: 250px !important;
        border-radius: var(--radius) var(--radius) 0 0 !important;
      }

      .vendor-perks {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .section {
        padding: 80px 20px;
      }

      .hero {
        min-height: auto;
      }

      .hero {
        padding: 80px 16px 40px;
      }
    }

    @media (max-width: 768px) {
      .hero-visual {
        display: none !important;
      }

      .hero-img-mobile {
        display: block !important;
      }

      .hero-mobile-badges {
        display: flex !important;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .steps {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.02em;
      }

      .hero p {
        font-size: 0.95rem;
      }

      .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
      }

      .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        border-top: none;
        padding-top: 16px;
        margin-top: 20px;
      }

      .hero-stat h3 {
        font-size: 1.5rem;
      }

      .hero-stat p {
        font-size: 0.7rem;
      }

      .hero-cta {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-cta .btn {
        text-align: center;
      }

      .section {
        padding: 60px 16px;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

      .section-header p {
        font-size: 0.9rem;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .feature-card {
        padding: 18px 14px;
      }

      .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 12px;
      }

      .feature-card h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
      }

      .feature-card p {
        font-size: 0.75rem;
        line-height: 1.5;
      }

      .step-img {
        height: 160px;
      }

      .step-body {
        padding: 20px 22px 24px;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .stat-card {
        padding: 24px 16px;
      }

      .stat-card h3 {
        font-size: 1.8rem;
      }

      .stat-card p {
        font-size: 0.75rem;
      }

      .about-values {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .about-value {
        padding: 20px 14px;
      }

      .about-value-icon {
        width: 48px;
        height: 48px;
      }

      .about-value h4 {
        font-size: 0.9rem;
      }

      .about-value p {
        font-size: 0.75rem;
      }

      .about-content h2 {
        font-size: 1.6rem;
      }

      .vendor-card {
        border-radius: 16px;
      }

      .vendor-card>div:last-child {
        padding: 28px 20px !important;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
      }

      .store-btn {
        justify-content: center;
        width: 100%;
        max-width: 280px;
      }

      .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
      }

      .section-header {
        margin-bottom: 50px;
      }

      .section-header h2 {
        font-size: 2rem;
      }
    }

    .animate-target {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-target.animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Fallback: if JS fails, show everything after 2s */
    @media (prefers-reduced-motion: reduce) {
      .animate-target {
        opacity: 1;
        transform: none;
      }
    }

    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: var(--green-500);
      width: 0%;
      z-index: 9999;
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
      transition: width 0.1s ease-out;
      pointer-events: none;
    }

    /* Selection styling */
    ::selection {
      background: var(--green-200);
      color: var(--green-900);
    }

    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    /* Focus states for accessibility */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--green-500);
      outline-offset: 3px;
    }

    .lang-switcher {
      display: flex;
      gap: 4px;
      margin-left: 8px;
      background: var(--neutral-100);
      border-radius: 100px;
      padding: 3px;
    }

    .lang-btn {
      padding: 6px 12px;
      border: none;
      background: transparent;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      color: var(--neutral-500);
      transition: all 0.3s ease;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .lang-btn.active {
      background: #fff;
      color: var(--green-700);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .lang-btn:hover:not(.active) {
      color: var(--neutral-800);
    }

    .badge-link {
      display: inline-block;
      transition: all 0.3s ease;
    }

    .badge-link:hover {
      transform: translateY(-3px);
      filter: brightness(1.08);
    }

    .store-badge {
      height: 50px;
    }

    @media (max-width: 480px) {
      .store-badge {
        height: 42px;
      }
