/* ── Base Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #1c1917;
      min-width: 320px;
    }

    /* ── Layout wrapper ── */
    .site-wrapper {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
    }

    /* ── Responsive fluid helpers ── */
    /* Ensure replaced text never overflows its container */
    * { word-break: break-word; overflow-wrap: break-word; }
    img { max-width: 100%; height: auto; display: block; }

    /* ── Navbar ── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    /* nav-inner base — controlled entirely by CSS so media queries can override */
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 120px;
    }

    /* nav-links-desktop base */
    .nav-links-desktop {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    #navbar.scrolled {
      background: rgba(255,255,255,0.97);
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    }
    #navbar.scrolled .nav-logo-text { color: #1e4d17; }
    #navbar.scrolled .nav-link { color: #292524; }
    #navbar.scrolled .nav-link:hover { color: #2d7a23; }
    #navbar.scrolled .nav-cta {
      background: #2d7a23;
      color: #fff;
    }

    .nav-link {
      color: rgba(255,255,255,0.92);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-decoration: none;
      padding: 6px 2px;
      position: relative;
      transition: color 0.25s;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: #5fb550;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-cta {
      background: rgba(255,255,255,0.18);
      border: 1.5px solid rgba(255,255,255,0.5);
      color: #fff;
      padding: 10px 28px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.25s;
      backdrop-filter: blur(6px);
      text-decoration: none;
    }
    .nav-cta:hover {
      background: rgba(255,255,255,0.30);
      border-color: rgba(255,255,255,0.8);
    }

    /* ── Hero ── */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 720px;
      overflow: hidden;
    }
    #hero > .site-wrapper {
      height: 100%;
      position: relative;
      z-index: 2;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/large_15504_1778152316210_hrakkjxij7_1f62552971.webp');
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
    }
    #hero.loaded .hero-bg { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(24,63,18,0.72) 0%,
        rgba(30,77,23,0.55) 40%,
        rgba(0,0,0,0.25) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      padding: 0 120px;
    }
    #hero .hero-content {
      min-height: 100vh;
    }
    .hero-tagline {
      font-family: 'Outfit', sans-serif;
      /* fluid scale: clamp scales from ~28px on phones up to 100px on large desktop */
      font-size: clamp(28px, 6.944vw, 100px);
      font-weight: 800;
      line-height: 1.1;
      color: #fff;
      letter-spacing: -0.02em;
      max-width: min(900px, 90%);
      text-shadow: 0 4px 32px rgba(0,0,0,0.3);
      /* Allow natural wrapping — no forced breaks in CSS */
    }
    .hero-tagline span { color: #8fd07f; }
    .hero-sub {
      margin-top: 20px;
      font-size: clamp(14px, 1.5vw, 18px);
      color: rgba(255,255,255,0.85);
      max-width: min(480px, 90%);
      line-height: 1.7;
      font-weight: 400;
    }
    .hero-actions { margin-top: 40px; display: flex; gap: 16px; align-items: center; }
    .btn-primary {
      background: #3d9930;
      color: #fff;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(61,153,48,0.45);
      text-decoration: none;
      display: inline-block;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline,
    .hero-actions .btn-primary:hover,
    .hero-actions .btn-outline:hover,
    .hero-actions .btn-primary:focus,
    .hero-actions .btn-outline:focus,
    .hero-actions .btn-primary:active,
    .hero-actions .btn-outline:active {
      text-decoration: none !important;
    }
    .btn-primary:hover {
      background: #2d7a23;
      box-shadow: 0 6px 28px rgba(61,153,48,0.55);
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent;
      color: #fff;
      padding: 13px 32px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      border: 2px solid rgba(255,255,255,0.6);
      transition: all 0.25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.9);
    }

    /* Hero scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.6);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* ── Desktop: mouse scroll indicator ── */
    .scroll-arrow {
      width: 28px;
      height: 44px;
      border: 2px solid rgba(255,255,255,0.4);
      border-radius: 14px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 7px;
    }
    .scroll-dot {
      width: 4px;
      height: 8px;
      background: rgba(255,255,255,0.7);
      border-radius: 2px;
      animation: scrollDot 1.8s ease infinite;
    }
    @keyframes scrollDot {
      0%   { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(12px); }
    }

    /* ── Mobile: touch-swipe indicator (arrow only, no finger outline) ── */
    /* Hidden by default, shown only on mobile via media query */
    .scroll-touch {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    /* Simple upward arrow container — no finger shape */
    .touch-finger {
      position: relative;
      width: 28px;
      height: 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    /* Hide finger icon — replaced by chevron-only design */
    .touch-finger-icon { display: none; }
    /* Upward swipe arrow lines */
    .touch-swipe-arrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      animation: touchSwipe 1.8s ease infinite;
    }
    .touch-swipe-arrow span {
      display: block;
      width: 2px;
      border-radius: 1px;
      background: rgba(255,255,255,0.75);
    }
    .touch-swipe-arrow span:nth-child(1) { height: 6px; opacity: 0.5; }
    .touch-swipe-arrow span:nth-child(2) { height: 8px; opacity: 0.8; }
    .touch-swipe-arrow span:nth-child(3) { height: 5px; opacity: 0.4; }
    /* Chevron tip */
    .touch-chevron {
      width: 10px;
      height: 10px;
      border-left: 2px solid rgba(255,255,255,0.7);
      border-top: 2px solid rgba(255,255,255,0.7);
      transform: rotate(45deg);
      margin-bottom: 2px;
      animation: touchSwipe 1.8s ease infinite;
    }
    @keyframes touchSwipe {
      0%   { opacity: 0.3; transform: translateY(6px); }
      50%  { opacity: 1;   transform: translateY(0px); }
      100% { opacity: 0;   transform: translateY(-6px); }
    }

    /* ── Sections shared ── */
    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #3d9930;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 800;
      line-height: 1.2;
      color: #183f12;
      letter-spacing: -0.02em;
      /* Never clip or overflow on any device */
      max-width: 100%;
    }
    .section-title-light {
      color: #fff;
    }
    .section-body {
      font-size: 16px;
      line-height: 1.8;
      color: #57534e;
      /* max-width is a soft cap only on wide single-column contexts;
         inside a grid cell it must stretch to 100% */
      max-width: min(600px, 100%);
    }

    /* ── About ── */
    #about {
      padding: 120px 120px;
      background: #fff;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start; /* start so text side grows naturally */
    }
    .about-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: visible; /* let badge protrude safely */
      /* Aspect ratio applied via padding trick so it stays stable */
    }
    .about-img-inner {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 32px 80px rgba(30,77,23,0.18);
    }
    .about-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
    }
    .about-img-inner:hover img { transform: scale(1.04); }
    .about-badge {
      position: absolute;
      bottom: -20px;        /* sits below the image corner */
      right: -20px;
      background: #fff;
      border-radius: 16px;
      padding: 20px 28px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.14);
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 200px;
      max-width: calc(100% - 24px); /* never wider than parent */
      z-index: 3;
    }
    .about-badge-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #3d9930, #24611c);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .about-badge-num {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: #183f12;
      line-height: 1;
    }
    .about-badge-label {
      font-size: 12px;
      color: #57534e;
      margin-top: 3px;
    }

    /* ── What We Do ── */
    #whatwedo {
      padding: 120px 120px;
      background: #f2f9f0;
    }
    .service-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .service-card {
      background: #fff;
      border-radius: 20px;
      padding: 0 0 36px 0;
      border: 1.5px solid #e0f2d8;
      transition: all 0.3s ease;
      cursor: default;
      position: relative;
      overflow: hidden;
      /* Ensure card never shrinks below a readable width */
      min-width: 0;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #3d9930, #8fd07f);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .service-card:hover {
      box-shadow: 0 24px 60px rgba(30,77,23,0.12);
      transform: translateY(-6px);
      border-color: #bde5b0;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #f2f9f0, #e0f2d8);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 32px 20px;
      color: #2d7a23;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon {
      background: linear-gradient(135deg, #3d9930, #24611c);
      color: #fff;
    }
    .service-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(16px, 1.5vw, 20px);
      font-weight: 700;
      color: #183f12;
      margin: 0 32px 14px;
      line-height: 1.3;
    }
    .service-card p {
      font-size: clamp(13px, 1.1vw, 14px);
      color: #57534e;
      line-height: 1.75;
      margin: 0 32px;
    }

    /* ── Service Card Image Module ── */
    .service-card-img {
      width: 100%;
      aspect-ratio: 16/10;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 28px;
      position: relative;
    }
    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.55s ease;
    }
    .service-card:hover .service-card-img img {
      transform: scale(1.07);
    }
    .service-card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(24, 63, 18, 0.28) 100%
      );
      transition: opacity 0.3s ease;
    }
    .service-card:hover .service-card-img::after {
      opacity: 0.6;
    }

    .section-footer {
      margin-top: 56px;
      text-align: center;
    }
    .btn-green {
      background: linear-gradient(135deg, #3d9930, #24611c);
      color: #fff;
      padding: 14px 36px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(61,153,48,0.35);
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.01em;
    }
    .btn-green:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(61,153,48,0.45);
    }

    /* ── Advantages ── */
    #advantages {
      padding: 120px 120px;
      background: linear-gradient(160deg, #183f12 0%, #1e4d17 50%, #24611c 100%);
      position: relative;
      overflow: hidden;
    }
    #advantages::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(95,181,80,0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    #advantages::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -150px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(143,208,127,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .adv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start; /* use start so image doesn't stretch over long text */
      position: relative;
      z-index: 2;
    }
    .adv-left .section-label { color: #8fd07f; }
    .adv-left .section-body { color: rgba(255,255,255,0.75); max-width: 100%; }
    .adv-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    .adv-item {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 28px 24px;
      backdrop-filter: blur(10px);
      transition: all 0.3s;
      /* Prevent text overflow inside dark cards */
      min-width: 0;
    }
    .adv-item:hover {
      background: rgba(255,255,255,0.10);
      border-color: rgba(143,208,127,0.35);
      transform: translateY(-3px);
    }
    .adv-item-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, rgba(95,181,80,0.3), rgba(61,153,48,0.2));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8fd07f;
      margin-bottom: 16px;
      flex-shrink: 0;
    }
    .adv-item h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .adv-item p {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }
    .adv-right-img {
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/5;
      position: relative;
      box-shadow: 0 40px 100px rgba(0,0,0,0.4);
      /* Stick to top of grid cell regardless of text height */
      align-self: start;
    }
    .adv-right-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .adv-right-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(24,63,18,0.6) 0%, transparent 60%);
    }

    /* ── Key Figures ── */
    #keyfigures {
      padding: 120px 120px;
      background: #fff;
    }
    .figures-header {
      text-align: center;
      margin-bottom: 72px;
    }
    #keyfigures .figures-header {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #keyfigures .figures-header .divider-accent {
      margin-left: auto;
      margin-right: auto;
    }
    .figures-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .figure-card {
      background: #f2f9f0;
      border-radius: 24px;
      padding: 48px 36px;
      text-align: center;
      border: 1.5px solid #e0f2d8;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
      /* Prevent number from overflowing the card */
      min-width: 0;
    }
    .figure-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #3d9930, #8fd07f);
    }
    .figure-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 32px 72px rgba(30,77,23,0.14);
      background: #fff;
    }
    .figure-num {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 4vw, 60px);
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, #3d9930, #24611c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .figure-unit {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 900;
      background: linear-gradient(135deg, #3d9930, #24611c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .figure-label {
      margin-top: 12px;
      font-size: clamp(13px, 1.1vw, 15px);
      color: #57534e;
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
    }
    #keyfigures .figure-label,
    #keyfigures .figure-label > div {
      text-align: center;
    }
    .figure-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #e0f2d8, #bde5b0);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2d7a23;
    }

    /* ── Partners ── */
    #partners {
      padding: 100px 120px;
      background: #edf7ed;
    }
    .partners-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }


    /* ── Sustainability ── */
    #sustainability {
      padding: 120px 120px;
      background: #fff;
      overflow: hidden;
    }
    .sustain-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .sustain-grid > * {
      min-width: 0;
    }
    .sustain-text .section-label { color: #3d9930; }
    .sustain-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }
    .pill {
      background: #f2f9f0;
      border: 1.5px solid #bde5b0;
      color: #2d7a23;
      font-size: 13px;
      font-weight: 600;
      padding: 7px 18px;
      border-radius: 100px;
      letter-spacing: 0.01em;
    }
    .sustain-imgs {
      position: relative;
      width: 100%;
      max-width: 100%;
      /* Extra bottom padding so the absolutely-positioned small image
         doesn't overlap the next section */
      padding-bottom: 48px;
    }
    .sustain-img-main {
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 32px 80px rgba(30,77,23,0.16);
    }
    .sustain-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
    }
    .sustain-img-main:hover img { transform: scale(1.04); }
    .sustain-img-small {
      position: absolute;
      bottom: 0;
      left: -32px;
      width: clamp(140px, 20%, 220px);
      aspect-ratio: 4/3;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.18);
      border: 4px solid #fff;
    }
    .sustain-img-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .sustain-quote {
      position: absolute;
      top: -24px;
      right: -16px;
      background: #3d9930;
      color: #fff;
      border-radius: 16px;
      padding: 20px 24px;
      max-width: clamp(160px, 28%, 220px);
      box-shadow: 0 12px 36px rgba(61,153,48,0.4);
    }
    .sustain-quote p {
      font-size: 13px;
      line-height: 1.6;
      font-weight: 500;
    }
    .sustain-quote .quote-mark {
      font-family: 'Outfit', sans-serif;
      font-size: 40px;
      line-height: 0.8;
      opacity: 0.4;
      margin-bottom: 8px;
    }

    /* ── Footer ── */
    #footer {
      background: #0f2a0b;
      padding: 80px 120px 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 60px;
    }
    .footer-brand h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.01em;
    }
    .footer-brand h2 span { color: #5fb550; }
    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 1.8;
      /* Fluid max-width — collapses to 100% in single-column layouts */
      max-width: min(300px, 100%);
    }
    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }
    .social-btn {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: all 0.25s;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .social-btn:hover {
      background: #3d9930;
      color: #fff;
      border-color: #3d9930;
      transform: translateY(-2px);
    }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li {
      margin-bottom: 12px;
    }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #5fb550; }
    .footer-contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 16px;
    }
    .footer-contact-item .icon {
      color: #5fb550;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .footer-contact-item span {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
    }
    .footer-bottom a {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      margin-left: 24px;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

    /* ── Animations ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }
    .fade-up-delay-4 { transition-delay: 0.4s; }

    /* Divider accent */
    .divider-accent {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, #3d9930, #8fd07f);
      border-radius: 2px;
      margin-bottom: 24px;
    }

    /* ── Mobile Menu ── */
    #mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 200;
      background: transparent;
      border: none;
      padding: 4px;
    }
    #mobile-menu-btn .bar {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }
    #navbar.scrolled #mobile-menu-btn .bar { background: #292524; }
    #mobile-menu-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #mobile-menu-btn.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    #mobile-menu-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    #mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 150;
      background: rgba(15, 42, 11, 0.97);
      backdrop-filter: blur(16px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      opacity: 0;
      overflow-y: auto;
      transition: opacity 0.3s ease;
      padding: 40px 32px;
    }
    #mobile-nav.open {
      display: flex;
      opacity: 1;
    }
    .mobile-nav-link {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      padding: 12px 0;
      letter-spacing: -0.01em;
      transition: color 0.2s;
      text-align: center;
    }
    .mobile-nav-link:hover { color: #8fd07f; }
    .mobile-nav-cta {
      margin-top: 20px;
      background: #3d9930;
      color: #fff;
      padding: 14px 40px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.25s;
    }
    .mobile-nav-cta:hover { background: #2d7a23; }

    /* ── Responsive Breakpoints ── */

    /* Large Desktop (1440px+): keep original padding */
    @media (min-width: 1440px) {
      .nav-inner { padding: 20px 120px; }
      #about, #whatwedo, #keyfigures, #sustainability { padding: 120px 120px; }
      #advantages { padding: 120px 120px; }
      #partners { padding: 100px 120px; }
      #footer { padding: 80px 120px 40px; }
      .hero-content { padding: 0 120px; }
    }

    /* Medium Desktop (1024px–1439px) */
    @media (max-width: 1439px) {
      .nav-inner { padding: 20px 60px; }
      #about, #whatwedo, #keyfigures, #sustainability { padding: 100px 60px; }
      #advantages { padding: 100px 60px; }
      #partners { padding: 80px 60px; }
      #footer { padding: 72px 60px 36px; }
      .hero-content { padding: 0 60px; }
    }

    /* Tablet (768px–1023px) */
    @media (max-width: 1023px) {
      .nav-inner { padding: 16px 40px; }
      .nav-links-desktop { display: none; }
      #mobile-menu-btn { display: flex; }

      #about, #whatwedo, #keyfigures, #sustainability { padding: 80px 40px; }
      #advantages { padding: 80px 40px; }
      #partners { padding: 72px 40px; }
      #footer { padding: 64px 40px 32px; }
      .hero-content { padding: 0 40px; }
      .hero-sub { max-width: 100%; }
      /* Hero tagline — tablet clamp so 100px font scales down gracefully at mid widths */
      .hero-tagline { font-size: clamp(28px, 5.5vw, 64px); max-width: 100%; }

      .about-grid { grid-template-columns: 1fr; gap: 64px; }
      .about-img-wrap { overflow: visible; }
      .about-badge { right: 12px; bottom: -16px; }

      .service-cards { grid-template-columns: 1fr 1fr; gap: 20px; }

      .adv-grid { grid-template-columns: 1fr; gap: 56px; }
      .adv-right-img { aspect-ratio: 16/9; max-width: 600px; align-self: auto; }

      .figures-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

      .partners-header { flex-direction: column; gap: 20px; align-items: flex-start; }

      .sustain-grid { grid-template-columns: 1fr; gap: 72px; }
      .sustain-imgs { padding-bottom: 56px; overflow: hidden; }
      .sustain-img-small { left: 12px; }
      .sustain-quote { right: 0; max-width: 200px; }

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

    /* Mobile (< 768px) */
    @media (max-width: 767px) {
      .nav-inner { padding: 14px 20px; }
      .nav-links-desktop { display: none; }
      #mobile-menu-btn { display: flex; }
      #mobile-nav { justify-content: flex-start; padding-top: 86px; }

      #about, #whatwedo, #keyfigures, #sustainability { padding: 64px 20px; }
      #advantages { padding: 64px 20px; }
      #partners { padding: 56px 20px; }
      #footer { padding: 56px 20px 28px; }
      .hero-content { padding: 0 20px; }
      .hero-sub { max-width: 100%; }
      .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 28px; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 24px; }

      .about-grid { grid-template-columns: 1fr; gap: 56px; }
      .about-badge {
        right: 8px;
        bottom: -16px;
        padding: 14px 18px;
        min-width: 160px;
        max-width: calc(100% - 16px);
      }
      .about-badge-num { font-size: 22px; }

      .service-cards { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }

      .adv-grid { grid-template-columns: 1fr; gap: 48px; }
      .adv-items { grid-template-columns: 1fr; gap: 16px; }
      .adv-right-img { aspect-ratio: 4/3; align-self: auto; }

      .figures-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .figure-card { padding: 28px 16px; }

      .partners-header { flex-direction: column; gap: 16px; align-items: flex-start; }
      .marquee-wrap::before, .marquee-wrap::after { width: 60px; }

      .sustain-grid { grid-template-columns: 1fr; gap: 72px; }
      .sustain-imgs { padding: 16px 0 0; overflow: hidden; }
      .sustain-img-main { width: 100%; max-width: 100%; }
      .sustain-img-small { display: none; }
      .sustain-quote {
        top: -16px;
        right: 8px;
        max-width: min(160px, calc(100% - 24px));
        padding: 14px 16px;
      }
      .sustain-quote p { font-size: 11px; }
      .sustain-quote .quote-mark { font-size: 28px; }

      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-brand p { max-width: 100%; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .footer-bottom div { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
      .footer-bottom a { margin-left: 0; }

      .section-body { font-size: 15px; max-width: 100%; }
      .btn-green { width: 100%; text-align: center; padding: 14px 28px; }
      .section-footer .btn-green { width: auto; }

      /* Hero tagline — hard cap on small screens so it never overflows the hero */
      .hero-tagline { font-size: clamp(26px, 7.5vw, 44px); max-width: 100%; }

      /* Swap scroll indicator: hide mouse, show touch-swipe */
      .scroll-arrow { display: none; }
      .scroll-touch  { display: flex; }
    }

    /* Extra Small Mobile (< 400px) */
    @media (max-width: 399px) {
      .figures-grid { grid-template-columns: 1fr; }
      .figure-card { padding: 28px 20px; }
      .adv-items { grid-template-columns: 1fr; }
      .service-card h3 { font-size: 17px; }
      .service-card p { font-size: 13px; }
    }

    /* ── Marquee / infinite scroll for partners ── */
    .marquee-wrap {
      overflow: hidden;
      position: relative;
      /* edge fade masks */
    }
    .marquee-wrap::before,
    .marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 160px;
      z-index: 2;
      pointer-events: none;
    }
    .marquee-wrap::before {
      left: 0;
      background: linear-gradient(to right, #edf7ed 0%, transparent 100%);
    }
    .marquee-wrap::after {
      right: 0;
      background: linear-gradient(to left, #edf7ed 0%, transparent 100%);
    }

    /* The scrolling track — contains two identical sets of logos */
    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
    }
    .marquee-track:hover .marquee-set {
      animation-play-state: paused;
    }

    /* Each set is an independent flex row that animates independently */
    .marquee-set {
      display: flex;
      align-items: center;
      gap: 24px;
      padding-right: 24px;
      animation: marqueeScroll 55s linear infinite;
    }

    @keyframes marqueeScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    /* Individual logo card inside marquee */
    .marquee-logo {
      background: #ffffff;
      border-radius: 16px;
      border: 1.5px solid #a8d8a8;
      height: 100px;
      width: 200px;
      min-width: 200px;
      max-width: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 32px;
      flex-shrink: 0;
      overflow: hidden;
      box-sizing: border-box;
      transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
      cursor: default;
    }
    .marquee-logo:hover {
      box-shadow: 0 12px 40px rgba(40, 140, 70, 0.16);
      border-color: #4caf6e;
      transform: translateY(-3px);
    }
    .marquee-logo .partner-logo-text {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #1a5e2a;
      letter-spacing: -0.01em;
      text-align: center;
      opacity: 0.75;
      transition: opacity 0.3s;
    }
    .marquee-logo:hover .partner-logo-text { opacity: 1; }

* { box-sizing: border-box; } body {margin: 0;}#i5t297{text-align:center;}.c1356{background-color:#000000;}.c1995{font-family:"Source Han Sans CN", "思源黑体";}.c2291{text-align:left;}.c2464{text-align:left;}.c2656{text-align:center;}.c2617{text-align:left;}.c2700{color:#57534e;}.c2837{text-align:left;width:300px;}.c2855{text-align:center;}.c5579{width:250px;}.c5821{display:none;}.c5817{display:none;}.c5745{font-family:Times New Roman;}

.c3436134 {
  display: none;
}

.c3436131 {
  background-image: url('../images/large_15504_1777362230593_on7myesjw0l_5c01475faf.webp');
  background-repeat: repeat;
  background-position: left top;
  background-attachment: scroll;
  background-size: auto;
}

.c3436333,
.c3436546,
.c3436711,
.c3436858 {
  font-weight: 800;
}

.c1550615 {
  margin-bottom: 28px;
}

.c1550633 {
  margin-bottom: 20px;
}

.c1550651 {
  margin-bottom: 36px;
}

.c1550770 {
  margin-top: 40px;
}

.c2272692,
.c3096501,
.c3142627,
.c3436570,
.c3436735,
.c3436882 {
  white-space: pre;
}

.c3142627 {
  font-weight: 400;
}

.c3438193,
.c3438172 {
  font-weight: 800;
}

.c3438472 {
  width: 250px;
  height: 350px;
}

/* Keep the homepage sustainability image stack inside the mobile viewport.
   These overrides sit after generated class rules such as .c3438472/.c5579. */
#sustainability .sustain-imgs,
#sustainability .sustain-img-main {
  min-width: 0;
  max-width: 100%;
}

#sustainability .sustain-img-main img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  #sustainability .site-wrapper,
  #sustainability .sustain-grid,
  #sustainability .sustain-imgs,
  #sustainability .sustain-img-main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  #sustainability .sustain-img-main {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  #sustainability .sustain-img-main img {
    min-width: 0;
    transform: none;
  }

  #sustainability .sustain-img-small.c3438472,
  #sustainability .sustain-img-small.c5579 {
    display: none;
    width: auto;
    height: auto;
  }
}
