:root {
  --bg: #0b0e0c;
  --bg2: #0f1310;
  --text: #111;
  --muted: #6b7280;
  --white: #fff;

  --green: #79d03b;
  --green-2: #65c12f;

  --line: rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.25);
  --radius: 4px;
  --radius-lg: 4px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.maxw {
  max-width: 720px;
  margin: 0 auto;
}

.mt-28 {
  margin-top: 28px;
}

.small {
  font-size: 13px;
}

/* .banner {
  background: linear-gradient(90deg, rgba(121,208,59,.16), rgba(251,247,214,1));
  border-bottom: 1px solid rgba(17,24,39,.08);
  height: auto;
  padding: 10px 0;
}

.banner-text {
  color: rgba(17,24,39,.92);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  letter-spacing: .2px;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .banner { padding: 12px 0; }
  .banner-text { font-size: 13px; }
} */

.banner {
  background: rgba(121,208,59,.10);
  border-bottom: 1px solid rgba(121,208,59,.28);
}

.banner-inner {
  min-height: 42px; 
  padding: 12px 0 10px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.banner-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(17,24,39,.92); 
  letter-spacing: .1px;
  max-width: 46ch; 
  text-align: center;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(121,208,59,.22);
  margin-top: 4px;
  flex: 0 0 auto;
}

@media (max-width: 600px) {
  .banner-inner {
    padding: 12px 0;
    gap: 14px;
  }

  .banner-text {
    font-size: 14px;
    max-width: 32ch;
  }

  .banner-dot {
    margin-top: 5px;
  }
}

.site-header {
  z-index: 20;
  background: rgba(255,255,255,1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

/* Language dropdown (match screenshot) */
.lang-dropdown {
  position: relative;
}

.lang-dropdown > summary {
  list-style: none;
}

.lang-dropdown > summary::-webkit-details-marker {
  display: none;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.lang-trigger:hover {
  background: rgba(17,24,39,.04);
}

.lang-globe {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,24,39,.06);
}

.lang-globe svg {
  display: block;
}

.lang-flag {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(17,24,39,.06);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  padding: 10px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  z-index: 999;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 4px;
  text-decoration: none;
  color: rgba(17,24,39,.92);
  font-weight: 500;
}

.lang-item:hover {
  background: rgba(17,24,39,.05);
}

.lang-item-flag {
  width: 22px;
  display: inline-flex;
  justify-content: center;
  font-size: 16px;
}

.lang-item-text {
  font-size: 14px;
}

.lang-item.is-current {
  background: rgba(121,208,59,.16);
  color: rgba(17,24,39,.95);
  font-weight: 600;
}

/* @media (max-width: 560px) {
  .lang-dropdown { display: none; }
} */


.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: .6px;
}

.brand-logo {
  height: 50px;
  width: auto;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  position: relative;
  box-shadow: 0 10px 30px rgba(121,208,59,.25);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
}

.brand-text {
  font-size: 15px;
}

.nav-links {
  margin-left: 24px;
  display: flex;
  gap: 26px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: rgba(17,24,39,.76);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 6px;
}

.nav-link:hover {
  color: rgba(17,24,39,.95);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .nav-actions .btn,
.site-header .nav-actions .btn:hover,
.site-header .nav-actions .btn:active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #000;
}

.site-header .nav-actions .btn-primary {
  background: #78d03f;
  color: #000;
  border-radius: 4px;
}

.site-header .nav-actions .btn-primary:hover {
  background: #6bc435;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 10px 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: transform .05s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--green);
  color: #0b0e0c;
  border-color: rgba(0,0,0,.06);
}

.btn-primary:hover {
  background: var(--green-2);
}

.btn-ghost {
  background: #fff;
  color: rgba(17,24,39,.85);
  border-color: rgba(17,24,39,.12);
}

.btn-ghost:hover {
  background: rgba(17,24,39,.04);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,.38);
}

.btn-dark {
  background: rgba(17,24,39,.85);
  color: #fff;
}

.btn-dark:hover {
  background: rgba(17,24,39,.95);
}

.btn-light {
  background: #fff;
  color: rgba(17,24,39,.85);
  border-color: rgba(17,24,39,.10);
}

.btn-light:hover {
  background: rgba(17,24,39,.03);
}

.btn-lg {
  padding: 12px 30px;
  border-radius: 99px;
  font-size: 18px;
  font-size: 22px;
  font-weight: 600;
}

.arrow {
  opacity: .9;
}

.site-main {
  min-height: 60vh;
}

.hero {
  color: #fff;
  padding: 90px 0 110px;
  min-height: 550px;
  background:
    radial-gradient(1200px 500px at 50% -20%, rgba(121,208,59,.18), transparent 60%),
    radial-gradient(800px 420px at 10% 20%, rgba(121,208,59,.10), transparent 55%),
    linear-gradient(180deg, rgba(11,14,12,.78) 0%, rgba(11,14,12,.86) 65%, rgba(10,13,11,.92) 100%),
    url("/images/pouring-oil.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(121,208,59,.18);
}


.hero-title {
  margin: 30px auto 10px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  max-width: 980px;
}

.accent {
  color: var(--green);
}

.hero-subtitle {
  margin: 0 auto;
  max-width: 740px;
  color: rgba(255,255,255,.72);
  font-size: 22px;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-divider {
  margin: 46px auto 26px;
  width: min(980px, 100%);
  height: 1px;
  background: rgba(255,255,255,.08);
}

.values {
  max-width: 980px;
  margin: 0 auto;
}

.values .row {
  justify-content: center;
}

.value-card {
  height: 100%;
  padding: 18px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  text-align: center;
}

.icon-badge {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(121,208,59,.14);
  border: 1px solid rgba(121,208,59,.18);
}

.value-title {
  font-weight: 900;
  margin-bottom: 4px;
}

.value-text {
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: #fff;
  border-top: 1px solid rgba(17,24,39,.06);
  border-bottom: 1px solid rgba(17,24,39,.06);
}

.eyebrow {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}

.eyebrow-on-dark {
  color: var(--green);
  opacity: .95;
}

.h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  font-weight: 900;
}

.lead {
  color: rgba(17,24,39,.78);
  font-size: 18px;
  margin-top: 0;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(17,24,39,.03);
  color: rgba(17,24,39,.78);
}

.chip svg {
  margin-right: 5px;
}

.about-media {
  border-radius: var(--radius-lg);
  background: #0b0e0c;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.10);
}

.media-inner {
  position: relative;
  min-height: 320px;
  padding: 26px;
  display: grid;
  place-items: end start;
  background:
    radial-gradient(500px 220px at 65% 35%, rgba(121,208,59,.32), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,.95), rgba(0,0,0,.75));
}

.right-row .about-media {
  background-image: url("/images/mechanic.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.right-row .media-inner {
  background:
    radial-gradient(500px 220px at 65% 35%, rgba(121,208,59,.22), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
  min-height: 550px;
}

#about .media-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.35) 35%,
    rgba(0,0,0,0) 70%
  );
  pointer-events: none;
}

.media-glow {
  display: none;
}

.media-placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.media-title {
  font-weight: 900;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.media-sub {
  margin-top: 6px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.dist-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 32px 8px;
  text-align: center;
  transition: all .2s ease;
}

.dist-card:hover {
  transform: translateY(-4px);
}

.dist-logo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dist-logo img {
  max-width: 280px;
  max-width: 90%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dist-name {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: #111827;
}

.dist-desc {
  color: rgba(17,24,39,.64);
  font-size: 16px;
  line-height: 1.5;
}

.cta {
  background:
    radial-gradient(1000px 450px at 60% 20%, rgba(121,208,59,.16), transparent 60%),
    linear-gradient(180deg, #0b0e0c 0%, #0b0e0c 100%);
  color: #fff;
  padding: 140px 0;
}

.cta-inner {
  text-align: center;
}

.cta-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  font-weight: 900;
}

.cta-sub {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.70);
}

.cta-contact {
  margin-top: 26px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 18px;
}

.mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 26px;
}

.mini a {
  color: #fff;
  text-decoration: none;
}

.mini a:hover {
  text-decoration: underline;
}

.values-section {
  background: #f5f5f3;
}

.values-section .center {
  margin-bottom: 48px;
}

.values-section .eyebrow {
  margin-bottom: 14px;
}

.values-section .h2 {
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.values-section .muted {
  font-size: 18px;
  line-height: 1.7;
}

.values-cards-row {
  margin-top: 34px;
  row-gap: 26px;
}

.value-box {
  height: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 70px rgba(17, 24, 39, 0.08);
  padding: 34px 34px 30px;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(121, 208, 59, 0.12);
  color: #4a9f22; /* affects svg stroke via currentColor */
  margin-bottom: 18px;
}

.value-icon svg {
  display: block;
}

.value-h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.value-p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(17, 24, 39, 0.62);
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(17, 24, 39, 0.80);
  font-size: 16px;
  line-height: 1.35;
}

.value-list .check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex: 0 0 22px;
}

.value-list .check svg {
  display: block;
}

/* Make cards feel airy on small screens */
@media (max-width: 680px) {
  .values-section .center {
    margin-bottom: 34px;
  }

  .value-box {
    padding: 35px 22px 38px 22px;
    border-radius: 18px;
  }

  .value-h3 {
    font-size: 22px;
  }

  .value-p,
  .values-section .muted {
    font-size: 16px;
  }
}

.form {
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 4px;
  padding: 22px;
  box-shadow: 0 16px 60px rgba(0,0,0,.05);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-row label {
  font-weight: 800;
  font-size: 13px;
  color: rgba(17,24,39,.74);
}

.form-row input {
  height: 44px;
  border-radius: 4px;
  border: 1px solid rgba(17,24,39,.12);
  padding: 0 12px;
  outline: none;
  font-size: 14px;
}

.form-row input:focus {
  border-color: rgba(121,208,59,.55);
  box-shadow: 0 0 0 4px rgba(121,208,59,.14);
}

.form-inner-row {
  margin-top: 0;
}

.site-footer {
  background: #0b0e0c;
  color: rgba(255,255,255,.80);
  padding: 70px 0 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  row-gap: 28px;
}

.footer-brand .footer-text {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  font-size: 16px;
  max-width: 360px;
}

.footer-text-gap {
  margin-top: 16px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer-role {
  color: rgba(255,255,255,.60);
  margin-top: -4px;
  font-size: 16px;
}

.footer-links-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.footer-link-accent {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.footer-link-accent:hover {
  text-decoration: underline;
}

.footer-meta {
  margin-top: 10px;
  color: rgba(255,255,255,.70);
  font-size: 16px;
  line-height: 1.6;
}

.mini.email a {
  color: var(--green);
}

.footer-meta-gap {
  margin-top: 10px;
}

@media (max-width: 680px) {
  .footer-logo-img {
    height: 54px;
    margin-top: 0;
  }

  .footer-link-accent {
    font-size: 17px;
  }

  .footer-brand .footer-text {
    max-width: 100%;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 60px;
  margin-top: -10px;
  width: auto;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  font-weight: 900;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.70);
}

.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 900;
}

.social-btn:hover {
  background: rgba(255,255,255,.10);
}

.about-row {
  align-items: center;
}

.about-row .btn {
  margin-top: 20px;
}

.cards-row {
  margin-top: 36px;
  row-gap: 24px;
}

.form-row-layout {
  align-items: flex-start;
}

.footer-top {
  padding-bottom: 10px;
}

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

@media (max-width: 600px) {
  .site-header .nav-actions {
    display: none;
  }
  .banner {
    height: 80px;
    display: flex;
    align-items: center;
  }
  .banner-text {
    font-size: 16px;
  }
  .right-row {
    margin-top: 60px;
  }
  .section {
    padding: 60px 0;
  }
  .dist-logo {
    height: auto;
  }
  .dist-logo img {
    max-width: 100%;
    max-height: 120px;
  }
  .dist-card {
    padding: 0px 8px;
  }
  .dist-name, .dist-desc {
    display: none;
  }
  .chips {
    display: none;
  }
  .about-row .btn {
    margin-top: 10px;
  }
  .footer-grid {
    row-gap: 40px;
  }
  .cta {
    padding: 80px 0;
  }
  .about-row .right-row .about-media {
    margin-left: -20px; 
    margin-right: -20px; 
    border-radius: 0;   
  }
  .about-row .right-row .media-inner {
    padding: 18px;
  }
  .right-row .media-inner {
    min-height: 450px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .btn-lg {
    font-size: 18px;
  }
}


@media (max-width: 768px) {
  .hero-title {
    line-height: 1.25;
  }

  .hero-title span {
    display: block;
    margin-top: 12px;
    line-height: 1.15;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-title span {
    font-size: 32px;
    font-weight: 700;
  }
}
