/* ============================================================
       RESET & ROOT
    ============================================================ */
 
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
 
    :root {
      --black:      #0a0a0a;
      --white:      #ffffff;
      --green:      #1a6b3c;
      --green-pale: #edf4f0;
      --mid:        #6b6b6b;
      --border:     #e2e2e2;
      --f-display:  'Bebas Neue', sans-serif;
      --f-body:     'Barlow', sans-serif;
    }
 
    html {
      scroll-behavior: smooth;
    }
 
    body {
      font-family: var(--f-body);
      background: var(--white);
      color: var(--black);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }
 
    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
 
 	label {
 		width: 100%;
 	}

 	a {
 		color: var(--green);
 	}

 	a:hover {
 		text-decoration: none;
 		color: inherit;
 	}
 
    /* ============================================================
       NAVIGATION
    ============================================================ */
 
    .navfix {
      height: 50px;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 40px;
      /*height: 64px;*/
      background: #fff;
      border-bottom: 1px solid var(--border);
    }
 
    .nav-brand {
      font-family: var(--f-display);
      font-size: 20px;
      letter-spacing: 0.12em;
      color: var(--black);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-brand img {
      height: 100px;
      width: auto; /* maintains aspect ratio */
      display: block;
    }
 
    .nav-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      display: inline-block;
      flex-shrink: 0;
    }
 
    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }
 
    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--mid);
      transition: color 0.2s;
    }
 
    .nav-links a:hover {
      color: var(--black);
    }
 
    .nav-cta {
      display: inline-block;
      padding: 10px 26px;
      border: 1px solid var(--black);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--black);
      transition: background 0.2s, color 0.2s;
    }
 
    .nav-cta:hover {
      background: var(--black);
      color: #fff;
    }
 
    /* Mobile hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
 
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--black);
      transition: transform 0.25s, opacity 0.25s;
    }
 
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      z-index: 190;
      padding: 24px 24px 32px;
      flex-direction: column;
      gap: 0;
    }
 
    .mobile-menu.open {
      display: flex;
    }
 
    .mobile-menu a {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--black);
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
 
    .mobile-menu .mobile-cta {
      margin-top: 20px;
      display: inline-block;
      padding: 14px 28px;
      background: var(--black);
      color: #fff;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      text-align: center;
    }
 
 /*Accreds*/

/* ── ACCREDITATIONS ──────────────────────── */
.accreditations {
    background: white;
    padding: 64px 0 72px;
    overflow: hidden;
}

.accreditations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accreditations__header {
    text-align: center;
    margin-bottom: 44px;
}
}

.accreditations__title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    color: #fff;
    margin-top: 8px;
}

.logo-slider {
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 150px;
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    /*opacity: 0.5;*/
    transition: all .35s ease;
}

.logo-item:hover {
    opacity: 1;
    background: rgba(255,255,255,0.06);
    border-color: rgba(124,179,66,0.25);
}

.logo-item img {
    height: 100%;
    width: auto;
    /*max-width: 140px;*/
    max-height: 170px;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
    transition: filter .35s ease;
}

.logo-item:hover img {
    /*filter: drop-shadow(0 0 8px rgba(124,179,66,0.5));*/
}

.accred-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 13px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.accred-footer svg {
    color: #7CB342;
}
 
 
 
 
    /* ============================================================
       BUTTONS
    ============================================================ */
 
    .btn-solid {
      display: inline-block;
      padding: 16px 40px;
      background: var(--black);
      color: #fff;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
 
    .btn-solid:hover {
      background: var(--green);
      transform: translateY(-1px);
    }
 
    .btn-line {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--mid);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s;
    }
 
    .btn-line:hover {
      color: var(--black);
    }

    .process-section-cta .btn-solid {
    	background: var(--white);
    	color: var(--black	);
    }
 
    .btn-line svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }
 
    .btn-line:hover svg {
      transform: translateX(4px);
    }
 
 
    /* ============================================================
       HERO
    ============================================================ */
 
    .hero {
      min-height: 100vh;
      padding-top: 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }
 
    .hero-left {
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid var(--border);
    }
 
    .hero-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
 
    .hero-label::after {
      content: '';
      display: block;
      flex: 1;
      height: 1px;
      background: var(--border);
      max-width: 60px;
    }
 
    .hero-headline {
      font-family: var(--f-display);
      font-size: clamp(72px, 10vw, 140px);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--black);
      margin: 0;
      margin-bottom: 48px;
    }
 
    .hero-headline .green {
      display: block;
      color: var(--green);
    }
 
    .hero-body {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--mid);
      max-width: 400px;
      margin-bottom: 56px;
      border-left: 2px solid var(--green);
      padding-left: 20px;
    }
 
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
 
    /* Hero right column */
    .hero-right {
      display: flex;
      flex-direction: column;
    }
 
    .hero-number-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 60px 40px;
      border-bottom: 1px solid var(--border);
    }
 
    .hero-stat-row {
      display: flex;
      gap: 48px;
      align-items: flex-end;
      margin-bottom: 40px;
    }
 
    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
 
    .hero-stat-num {
      font-family: var(--f-display);
      font-size: 72px;
      line-height: 1;
      color: var(--black);
      letter-spacing: 0.02em;
    }
 
    .hero-stat-num.green {
      color: var(--green);
    }
 
    .hero-stat-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
    }
 
    .hero-divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin-bottom: 40px;
    }
 
    .hero-caption {
      font-size: 13px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.6;
      max-width: 360px;
    }
 
    /* Hero image panel */
    .hero-visual {
      flex: 0 0 auto;
      height: 300px;
      position: relative;
      overflow: hidden;
    }
 
    .hero-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
    }
 
    .hero-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
      z-index: 1;
    }
 
    .mcs-tag {
      position: absolute;
      top: 20px;
      left: 24px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
    }
 
    .mcs-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #6fcf97;
      display: block;
    }
 
    .hero-visual-sub {
      position: absolute;
      top: 20px;
      right: 24px;
      z-index: 2;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
    }
 
    .hero-visual-text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 28px 40px;
      font-family: var(--f-display);
      font-size: 52px;
      color: #fff;
      letter-spacing: 0.04em;
      line-height: 1;
    }
 
 
    /* ============================================================
       TICKER
    ============================================================ */
 
    .ticker {
      background: var(--green);
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }
 
    .ticker-inner {
      display: inline-flex;
      animation: tick 30s linear infinite;
    }
 
    .ticker-item {
      font-family: var(--f-display);
      font-size: 22px;
      letter-spacing: 0.1em;
      color: #fff;
      padding: 0 36px;
      opacity: 0.9;
    }
 
    .ticker-sep {
      color: rgba(255, 255, 255, 0.3);
      font-family: var(--f-display);
      font-size: 22px;
      align-self: center;
    }
 
    @keyframes tick {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
 
    /* ============================================================
       SERVICES
    ============================================================ */
 
    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--border);
    }
 
    .service {
      padding: 72px 48px;
      border-right: 1px solid var(--border);
      transition: background 0.25s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
 
    .service:last-child {
      border-right: none;
    }
 
    .service::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
 
    .service:hover {
      background: var(--green-pale);
    }
 
    .service:hover::before {
      transform: scaleX(1);
    }
 
    /* Service image */
    .service-image {
      width: 100%;
      height: 180px;
      overflow: hidden;
      margin-bottom: 28px;
      position: relative;
    }
 
    .service-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
 
    .service:hover .service-image img {
      transform: scale(1.04);
    }
 
    .service-num {
      font-family: var(--f-display);
      font-size: 72px;
      line-height: 1;
      color: var(--border);
      margin-bottom: 16px;
      transition: color 0.25s;
    }
 
    .service:hover .service-num {
      color: var(--green);
    }
 
    .service-title {
      font-family: var(--f-display);
      font-size: 36px;
      letter-spacing: 0.04em;
      color: var(--black);
      margin-bottom: 16px;
      line-height: 1.05;
    }
 
    .service-body {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--mid);
      margin-bottom: 32px;
    }
 
    .service-arrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--black);
      text-decoration: none;
      transition: gap 0.2s;
    }
 
    .service:hover .service-arrow {
      gap: 18px;
    }
 
    .service-arrow svg {
      width: 16px;
      height: 16px;
    }
 
 
    /* ============================================================
       ABOUT
    ============================================================ */
 
    .about-strip {
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      border-top: 1px solid var(--border);
      align-items: start;
    }

    .about-strip.test-text-only-section {
      display: block;
    }
 
    .about-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 28px;
    }
 
    .about-headline {
      font-family: var(--f-display);
      font-size: clamp(52px, 6vw, 88px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--black);
      margin-bottom: 32px;
    }
 
    .about-headline em {
      font-style: normal;
      color: var(--green);
    }
 
    .about-body {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--mid);
      margin-bottom: 40px;
    }
 
    /* About image grid */
    .about-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 260px 180px;
      gap: 8px;
    }
 
    .about-img-main {
      grid-column: 1 / 3;
      overflow: hidden;
      position: relative;
    }
 
    .about-img-main img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
 
    .about-img-main:hover img {
      transform: scale(1.03);
    }
 
    .about-img-sm {
      overflow: hidden;
      position: relative;
    }
 
    .about-img-sm img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
 
    .about-img-sm:hover img {
      transform: scale(1.04);
    }
 
    .values-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--border);
    }
 
    .values-item {
      display: flex;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      gap: 20px;
      cursor: default;
    }
 
    .val-num {
      font-family: var(--f-display);
      font-size: 18px;
      color: var(--border);
      width: 32px;
      flex-shrink: 0;
      transition: color 0.2s;
    }
 
    .values-item:hover .val-num {
      color: var(--green);
    }
 
    .val-text {
      font-size: 14px;
      font-weight: 300;
      color: var(--black);
      line-height: 1.4;
      flex: 1;
    }
 
    .val-arrow {
      color: var(--border);
      transition: color 0.2s;
    }
 
    .values-item:hover .val-arrow {
      color: var(--black);
    }
 
    .val-arrow svg {
      width: 14px;
      height: 14px;
      display: block;
    }
 
 
    /* ============================================================
       PROCESS
    ============================================================ */
 
    .process {
      background: var(--black);
      padding: 120px 60px;
      border-top: 1px solid var(--border);
      color: #fff;
    }
 
    .process-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-bottom: 80px;
      align-items: end;
    }
 
    .process-headline {
      font-family: var(--f-display);
      font-size: clamp(52px, 6vw, 88px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: #fff;
    }
 
    .process-headline em {
      color: var(--green);
      font-style: normal;
    }
 
    .process-intro {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.4);
      align-self: end;
    }
 
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
    }
 
    .step {
      padding: 48px 36px;
      background: var(--black);
      transition: background 0.25s;
    }
 
    .step:hover {
      background: #111;
    }
 
    .step-image {
      width: 100%;
      height: 140px;
      overflow: hidden;
      margin-bottom: 24px;
      opacity: 0.6;
      transition: opacity 0.3s;
      position: relative;
    }
 
    .step-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
 
    .step:hover .step-image {
      opacity: 0.85;
    }
 
    .step-n {
      font-family: var(--f-display);
      font-size: 48px;
      color: var(--green);
      line-height: 1;
      margin-bottom: 16px;
      opacity: 0.7;
    }
 
    .step-title {
      font-family: var(--f-display);
      font-size: 26px;
      letter-spacing: 0.04em;
      color: #fff;
      margin-bottom: 12px;
    }
 
    .step-body {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.7;
    }
 
 
    /* ============================================================
       IMPACT STATEMENT
    ============================================================ */
 
    .impact {
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 500px;
    }
 
    .impact-left {
      position: relative;
      overflow: hidden;
    }
 
    .impact-left img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.45);
    }
 
    .impact-left-content {
      position: relative;
      z-index: 1;
      padding: 80px 60px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
 
    .impact-headline {
      font-family: var(--f-display);
      font-size: clamp(52px, 6vw, 90px);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: #fff;
    }
 
    .impact-headline em {
      color: #6fcf97;
      font-style: normal;
    }
 
    .impact-right {
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 40px;
      border-left: 1px solid var(--border);
    }
 
    .impact-stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
      border-left: 2px solid var(--green);
      padding-left: 20px;
    }
 
    .impact-stat-num {
      font-family: var(--f-display);
      font-size: 56px;
      line-height: 1;
      color: var(--black);
    }
 
    .impact-stat-label {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
    }
 
 
    /* ============================================================
       CALCULATOR
    ============================================================ */
 
    .calc-section {
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
 
    .calc-left {
      padding: 80px 60px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    .calc-label {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 24px;
    }
 
    .calc-headline {
      font-family: var(--f-display);
      font-size: clamp(48px, 5vw, 76px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--black);
      margin-bottom: 24px;
    }
 
    .calc-headline em {
      color: var(--green);
      font-style: normal;
    }
 
    .calc-body {
      font-size: 14px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 380px;
    }
 
    .calc-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      margin-top: 40px;
      position: relative;
    }
 
    .calc-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
 
    .calc-right {
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    .calc-field {
      margin-bottom: 32px;
    }
 
    .calc-field-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
 
    .calc-field-val {
      font-family: var(--f-display);
      font-size: 22px;
      color: var(--green);
    }
 
    .calc-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 2px;
      background: var(--border);
      outline: none;
      border: none;
      cursor: pointer;
    }
 
    .calc-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--black);
      cursor: pointer;
      transition: background 0.2s;
    }
 
    .calc-slider::-webkit-slider-thumb:hover {
      background: var(--green);
    }
 
    .calc-slider::-moz-range-thumb {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--black);
      cursor: pointer;
      border: none;
    }
 
    .calc-result {
      margin-top: 8px;
      background: var(--black);
      padding: 32px 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
 
    .calc-res-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
 
    .calc-res-num {
      font-family: var(--f-display);
      font-size: 40px;
      line-height: 1;
      color: #fff;
    }
 
    .calc-res-num.accent {
      color: #6fcf97;
    }
 
    .calc-res-label {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
    }
 
    .calc-note {
      font-size: 11px;
      color: var(--mid);
      margin-top: 14px;
      font-weight: 300;
      line-height: 1.6;
    }
 
 
    /* ============================================================
       TESTIMONIALS
    ============================================================ */
 
    .testimonials {
      border-top: 1px solid var(--border);
      padding: 100px 60px;
    }
 
    .test-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 64px;
      align-items: end;
    }
 
    .test-headline {
      font-family: var(--f-display);
      font-size: clamp(48px, 5.5vw, 80px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--black);
    }
 
    .test-headline em {
      color: var(--green);
      font-style: normal;
    }
 
    .test-subhead {
      font-size: 14px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.75;
      align-self: end;
    }
 
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }
 
    .test-card {
      background: #fff;
      padding: 0;
      overflow: hidden;
    }
 
    .test-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }
 
    .test-card-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
 
    .test-card:hover .test-card-image img {
      transform: scale(1.04);
    }
 
    .test-card-body {
      padding: 36px;
    }
 
    .test-stars {
      color: var(--green);
      font-size: 13px;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 16px;
    }
 
    .test-quote-mark {
      font-family: var(--f-display);
      font-size: 64px;
      line-height: 0.8;
      color: var(--border);
      margin-bottom: 12px;
      display: block;
    }
 
    .test-quote {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--black);
      margin-bottom: 28px;
      font-style: italic;
    }
 
    .test-author {
      display: flex;
      flex-direction: column;
      gap: 3px;
      border-top: 1px solid var(--border);
      padding-top: 20px;
    }
 
    .test-name {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--black);
    }
 
    .test-location {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid);
    }
 
    .trust-bar {
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
 
    .trust-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: center;
    }
 
    .trust-num {
      font-family: var(--f-display);
      font-size: 36px;
      color: var(--black);
    }
 
    .trust-label {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
    }
 
 
    /* ============================================================
       PROJECT GALLERY
    ============================================================ */
 
    .gallery {
      border-top: 1px solid var(--border);
      overflow: hidden;
    }
 
    .gallery-header {
      padding: 60px 60px 40px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
    }
 
    .gallery-headline {
      font-family: var(--f-display);
      font-size: clamp(40px, 4.5vw, 64px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--black);
    }
 
    .gallery-headline em {
      color: var(--green);
      font-style: normal;
    }
 
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      height: 340px;
      border-top: 1px solid var(--border);
    }
 
    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
 
    .gallery-item:last-child {
      border-right: none;
    }
 
    .gallery-item img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
      transition: transform 0.5s ease, filter 0.3s ease;
    }
 
    .gallery-item:hover img {
      transform: scale(1.06);
      filter: brightness(0.7);
    }
 
    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
      z-index: 1;
    }
 
    .gallery-item-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.6);
      z-index: 2;
    }
 
    .gallery-item-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      font-family: var(--f-display);
      font-size: 18px;
      letter-spacing: 0.06em;
      color: #fff;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
      z-index: 2;
    }
 
    .gallery-item:hover .gallery-item-label {
      opacity: 1;
      transform: translateY(0);
    }
 
 
    /* ============================================================
       FAQ
    ============================================================ */
 
    .faq {
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
 
    .faq-left {
      padding: 80px 60px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
 
    .faq-left-top {}
 
    .faq-headline {
      font-family: var(--f-display);
      font-size: clamp(48px, 5vw, 72px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--black);
      margin-bottom: 28px;
    }
 
    .faq-headline em {
      color: var(--green);
      font-style: normal;
    }
 
    .faq-sub {
      font-size: 14px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.75;
      margin-bottom: 40px;
    }
 
    .faq-image {
      width: 100%;
      height: 220px;
      overflow: hidden;
      margin-top: auto;
      position: relative;
    }
 
    .faq-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
 
    .faq-right {
      padding: 80px 60px;
    }
 
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
 
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-family: var(--f-body);
      font-size: 15px;
      font-weight: 400;
      color: var(--black);
      letter-spacing: 0.01em;
    }
 
    .faq-q svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--mid);
      transition: transform 0.25s;
    }
 
    .faq-item.open .faq-q svg {
      transform: rotate(45deg);
    }
 
    .faq-a {
      font-size: 14px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.8;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s;
    }
 
    .faq-item.open .faq-a {
      max-height: 200px;
      padding-bottom: 24px;
    }
 
 
    /* ============================================================
       CTA
    ============================================================ */
 
    .cta {
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
    }
 
    .cta-image {
      position: relative;
      overflow: hidden;
    }
 
    .cta-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5);
    }
 
    .cta-image-text {
      position: absolute;
      bottom: 40px;
      left: 40px;
      font-family: var(--f-display);
      font-size: 80px;
      color: rgba(255, 255, 255, 0.15);
      line-height: 1;
      letter-spacing: 0.04em;
      z-index: 1;
    }
 
    .cta-content {
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 1px solid var(--border);
    }
 
    .cta-eyebrow {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 28px;
    }
 
    .cta-headline {
      font-family: var(--f-display);
      font-size: clamp(48px, 5.5vw, 80px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      color: var(--black);
      margin-bottom: 28px;
    }
 
    .cta-sub {
      font-size: 15px;
      font-weight: 300;
      color: var(--mid);
      max-width: 380px;
      line-height: 1.7;
      margin-bottom: 48px;
    }
 
    .cta-actions {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
 
    .cta-note {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid);
    }

    textarea {
    	height: 100px;
    }
 
 
    /* ============================================================
       FOOTER
    ============================================================ */
 
    footer {
      background: var(--black);
      padding: 72px 60px 40px;
    }
 
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      margin-bottom: 32px;
    }
 
    .footer-brand-name {
      font-family: var(--f-display);
      font-size: 28px;
      letter-spacing: 0.1em;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-brand-name img {
      max-width: 200px;
    }
 
    .footer-tagline {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.3);
      line-height: 1.7;
      max-width: 260px;
      margin-bottom: 28px;
    }
 
    .footer-cert-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 7px 14px;
    }
 
    .footer-cert-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      display: block;
    }
 
    .footer-col-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.2);
      margin-bottom: 20px;
    }
 
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    .footer-links a {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
 
    .footer-links a:hover {
      color: #fff;
    }
 
    .footer-address {
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.25);
      line-height: 1.6;
    }
 
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.2);
      letter-spacing: 0.06em;
      flex-wrap: wrap;
      gap: 12px;
    }
 
 
    /* ============================================================
       ANIMATIONS
    ============================================================ */
 
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    .hero-label    { animation: fadeIn 0.5s ease both; }
    .hero-headline { animation: fadeIn 0.6s 0.1s ease both; }
    .hero-body     { animation: fadeIn 0.6s 0.2s ease both; }
    .hero-actions  { animation: fadeIn 0.6s 0.3s ease both; }
    .hero-right    { animation: fadeIn 0.7s 0.15s ease both; }
 
 
    /* ============================================================
       RESPONSIVE — TABLET (max 1024px)
    ============================================================ */
 
    @media (max-width: 1024px) {
 
      nav {
        padding: 0 32px;
      }
 
      .hero-left {
        padding: 60px 40px;
      }
 
      .hero-number-block {
        padding: 48px 40px 32px;
      }
 
      .hero-stat-num {
        font-size: 56px;
      }
 
      .service {
        padding: 56px 36px;
      }
 
      .about-strip {
        padding: 80px 40px;
        gap: 48px;
      }
 
      .process {
        padding: 80px 40px;
      }
 
      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }
 
      .impact-left-content {
        padding: 60px 40px;
      }
 
      .impact-right {
        padding: 60px 40px;
      }
 
      .calc-left,
      .calc-right {
        padding: 60px 40px;
      }
 
      .testimonials {
        padding: 80px 40px;
      }
 
      .gallery-header {
        padding: 48px 40px 32px;
      }
 
      .faq-left,
      .faq-right {
        padding: 60px 40px;
      }
 
      .cta-content {
        padding: 60px 40px;
      }
 
      footer {
        padding: 56px 40px 32px;
      }
 
      .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
      }
 
    }
 
 
    /* ============================================================
       RESPONSIVE — MOBILE (max 768px)
    ============================================================ */
 
    @media (max-width: 768px) {
 
      /* Nav */
      nav {
        padding: 0 20px;
      }
 
      .nav-links {
        display: none;
      }
 
      .nav-cta {
        display: none;
      }
 
      .nav-hamburger {
        display: flex;
      }
 
      /* Hero */
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
 
      .hero-left {
        padding: 48px 20px 40px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
 
      .hero-headline {
        font-size: clamp(64px, 18vw, 100px);
      }
 
      .hero-body {
        font-size: 15px;
        margin-bottom: 40px;
      }
 
      .hero-right {
        order: -1;
      }
 
      .hero-number-block {
        padding: 32px 20px;
        flex: none;
      }
 
      .hero-stat-row {
        gap: 24px;
        flex-wrap: wrap;
      }
 
      .hero-stat-num {
        font-size: 48px;
      }
 
      .hero-visual {
        height: 220px;
      }
 
      .hero-visual-text {
        font-size: 36px;
        padding: 20px;
      }
 
      /* Ticker */
      .ticker-item {
        font-size: 18px;
        padding: 0 24px;
      }
 
      /* Services */
      .services {
        grid-template-columns: 1fr;
      }
 
      .service {
        padding: 48px 20px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
 
      .service:last-child {
        border-bottom: none;
      }
 
      .service-image {
        height: 200px;
      }
 
      /* About */
      .about-strip {
        padding: 64px 20px;
        grid-template-columns: 1fr;
        gap: 40px;
      }
 
      .about-images {
        grid-template-rows: 200px 140px;
      }
 
      /* Process */
      .process {
        padding: 64px 20px;
      }
 
      .process-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
      }
 
      .process-steps {
        grid-template-columns: 1fr;
      }
 
      .step {
        padding: 36px 24px;
      }
 
      .step-image {
        height: 160px;
      }
 
      /* Impact */
      .impact {
        grid-template-columns: 1fr;
      }
 
      .impact-left {
        min-height: 280px;
      }
 
      .impact-left-content {
        padding: 40px 20px;
      }
 
      .impact-right {
        padding: 48px 20px;
        border-left: none;
        border-top: 1px solid var(--border);
        gap: 28px;
      }
 
      .impact-stat-num {
        font-size: 44px;
      }
 
      /* Calculator */
      .calc-section {
        grid-template-columns: 1fr;
      }
 
      .calc-left {
        padding: 56px 20px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
 
      .calc-right {
        padding: 48px 20px;
      }
 
      .calc-image {
        display: none;
      }
 
      .calc-result {
        padding: 24px 20px;
      }
 
      .calc-res-num {
        font-size: 32px;
      }
 
      /* Testimonials */
      .testimonials {
        padding: 64px 20px;
      }
 
      .test-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
      }
 
      .test-grid {
        grid-template-columns: 1fr;
      }
 
      .test-card-image {
        height: 180px;
      }
 
      .trust-bar {
        justify-content: center;
        gap: 20px;
      }
 
      .trust-item {
        min-width: 80px;
      }
 
      /* Gallery */
      .gallery-header {
        padding: 40px 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
 
      .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
      }
 
      .gallery-item {
        height: 180px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
 
      .gallery-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
 
      .gallery-item-label {
        opacity: 1;
        transform: translateY(0);
      }
 
      /* FAQ */
      .faq {
        grid-template-columns: 1fr;
      }
 
      .faq-left {
        padding: 56px 20px;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
 
      .faq-image {
        display: none;
      }
 
      .faq-right {
        padding: 40px 20px;
      }
 
      .faq-q {
        font-size: 14px;
        padding: 20px 0;
      }
 
      /* CTA */
      .cta {
        grid-template-columns: 1fr;
      }
 
      .cta-image {
        height: 240px;
      }
 
      .cta-content {
        padding: 56px 20px;
        border-left: none;
        border-top: 1px solid var(--border);
      }
 
      .cta-headline {
        font-size: clamp(44px, 12vw, 64px);
      }
 
      /* Footer */
      footer {
        padding: 48px 20px 32px;
      }
 
      .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
      }
 
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
 
    }