:root {
  --navy: #063562;
  --navy-deep: #032a4e;
  --green: #0d672d;
  --green-dark: #075421;
  --green-light: #2e8a42;
  --gold: #d89b10;
  --text: #0d1720;
  --muted: #5b6369;
  --line: #e3e6e5;
  --soft: #f5f6f5;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(9, 38, 27, 0.10);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Inter", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
.adv-icon svg, .banner-icon svg, .service-grid article div svg, .office-icon svg, .round-icon svg { display: block; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 32px), 1180px); margin-inline: auto; }
.section-pad { padding: 72px 0 44px; }
.section-pad-sm { padding: 40px 0 44px; }

:root { --header-h: 104px; }
.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid rgba(21, 61, 49, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.header-inner { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; height: 100%; }
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(4,33,20,.1); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 58px; height: 58px; flex: 0 0 58px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: clamp(18px, 1.5vw, 23px); letter-spacing: -.02em; color: var(--green-dark); }
.brand-copy small { margin-top: 6px; color: var(--gold); letter-spacing: .3em; font-size: 9.5px; font-weight: 700; }
.primary-nav { position: relative; display: flex; justify-content: center; gap: clamp(16px, 2vw, 34px); font-size: 14px; font-weight: 500; }
.primary-nav a { position: relative; white-space: nowrap; padding: 6px 0; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px; background: var(--gold); transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; }
.primary-nav .mobile-cta { display: none; }
.language-switch { height: 42px; display: flex; border: 1px solid rgba(21, 61, 49, .16); border-radius: 11px; padding: 4px; gap: 4px; background: rgba(21,61,49,.03); }
.language-switch button { display: grid; place-items: center; min-width: 38px; border: 0; border-radius: 7px; background: transparent; cursor: pointer; opacity: .5; filter: grayscale(.6); transition: background-color .2s ease, opacity .2s ease, filter .2s ease, transform .2s ease, box-shadow .2s ease; }
.language-switch button:hover { opacity: .8; transform: translateY(-1px); }
.language-switch button svg { display: block; width: 22px; height: 11px; border-radius: 2px; }
.language-switch button.is-active { opacity: 1; filter: none; background: #fff; box-shadow: 0 2px 6px rgba(9,38,27,.16); }

.theme-toggle { position: relative; width: 56px; height: 30px; padding: 3px; border: 1px solid rgba(21, 61, 49, .16); border-radius: 999px; background: linear-gradient(180deg, #eef1ee, #e4e8e3); cursor: pointer; transition: background-color .3s ease; }
.theme-toggle-thumb { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.2), inset 0 0 0 1px rgba(21,61,49,.06); transition: transform .3s ease; }
.theme-toggle-icon { position: absolute; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; display: grid; place-items: center; transition: opacity .3s ease, color .3s ease; }
.theme-toggle-icon svg { width: 100%; height: 100%; display: block; }
.theme-toggle-icon.icon-sun { left: 5px; color: var(--gold); }
.theme-toggle-icon.icon-moon { right: 5px; color: var(--muted); opacity: .4; }
body.dark .theme-toggle { background: #16261f; }
body.dark .theme-toggle-thumb { transform: translateX(26px); }
body.dark .theme-toggle-icon.icon-sun { opacity: .4; }
body.dark .theme-toggle-icon.icon-moon { opacity: 1; color: var(--gold); }
.header-cta { height: 40px; padding: 0 18px; display: inline-flex; align-items: center; gap: 12px; color: #fff; background: linear-gradient(135deg, #9c671d, #bd8430); border-radius: 6px; text-transform: uppercase; letter-spacing: .04em; font-size: 12px; font-weight: 700; box-shadow: 0 9px 20px rgba(177,122,37,.2); transition: transform .2s ease, box-shadow .2s ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(177,122,37,.28); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

.float-controls {
  position: fixed; top: 50%; right: 18px; z-index: 90; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 12px; border-radius: 20px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(21,61,49,.1);
  box-shadow: 0 4px 10px rgba(9,38,27,.06), 0 16px 36px rgba(9,38,27,.16);
  transition: box-shadow .25s ease;
}
.float-controls:hover { box-shadow: 0 6px 14px rgba(9,38,27,.08), 0 20px 44px rgba(9,38,27,.2); }
body.dark .float-controls { background: rgba(16,38,31,.9); border-color: rgba(255,255,255,.1); }

.hero { position: relative; overflow: hidden; min-height: 700px; display: flex; flex-direction: column; justify-content: center; padding: var(--header-h) 0 0; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 90% center; transform: scale(1.015); animation: heroPan 24s ease-in-out infinite alternate; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,20,15,.88) 0%, rgba(4,20,15,.72) 32%, rgba(4,20,15,.32) 62%, rgba(4,20,15,.12) 100%), linear-gradient(0deg, rgba(4,20,15,.55) 0%, transparent 30%); }
.hero-shell { position: relative; z-index: 4; }
.hero-copy { max-width: 660px; padding: 10px 0 40px; }
.hero-badge { display: flex; align-items: center; gap: 14px; color: #fff; text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 700; }
.hero-badge-line { width: 32px; height: 1px; background: var(--gold); flex: none; }
.hero h1 { margin: 20px 0 16px; font-family: var(--serif); font-size: clamp(42px, 4.6vw, 68px); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; color: #f6f1e6; }
.hero h1 em { color: #7dd8a3; font-style: normal; }
.title-rule { display: block; width: 40px; height: 3px; background: var(--gold); margin-bottom: 22px; }
.hero-copy > p { max-width: 560px; margin: 0; font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,.82); }
.hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 16px; }

.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border-radius: 6px; text-transform: uppercase; letter-spacing: .03em; font-size: 13.5px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; cursor: pointer; }
.button svg { width: 19px; height: 19px; flex: none; }
.button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.button:active { transform: translateY(0); filter: brightness(.97); }
.button span[aria-hidden] { display: inline-block; font-size: 15px; transition: transform .25s ease; }
.button:hover span[aria-hidden] { transform: translateX(3px); }
.button-primary { color: #fff; background: var(--green-dark); box-shadow: 0 12px 26px rgba(6,53,98,.2); border: 0; }
.button-outline { color: #fff; border: 1px solid rgba(255,255,255,.9); background: rgba(0,0,0,.08); }
.button-secondary { color: var(--green-dark); border: 1px solid #c9cfca; background: rgba(255,255,255,.55); }
.button-secondary:hover { background: rgba(255,255,255,.95); }
.button.compact { min-height: 34px; padding: 0 16px; font-size: 11px; }
.button-gold { min-width: 115px; color: #fff; background: linear-gradient(180deg, #e4ad22, #c88603); }

.trust-strip { margin: 0 0 80px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 760px; padding: 20px 22px; border-radius: 16px; background: rgba(8,20,16,.55); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(14px); }
.trust-strip article { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 0 16px; }
.trust-strip article + article { border-left: 1px solid rgba(255,255,255,.16); }
.trust-icon { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; color: var(--gold); }
.trust-icon svg { width: 100%; height: 100%; display: block; }
.trust-strip div { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.trust-strip strong { font-size: 13.5px; color: #fff; white-space: nowrap; }
.trust-strip span { color: rgba(255,255,255,.7); font-size: 12px; white-space: nowrap; }

.leaf-pattern { position: absolute; left: -35px; bottom: -28px; width: 210px; height: 490px; opacity: .35; z-index: 2; background-repeat: no-repeat; background-size: contain; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 500'%3E%3Cg fill='none' stroke='%23d89b10' stroke-width='1.1'%3E%3Cpath d='M55 500C32 393 48 284 112 157'/%3E%3Cpath d='M75 394c-28-17-43-42-47-76 29 8 47 31 47 76Zm4-36c29-14 50-36 60-67-33 4-53 26-60 67Zm7-70c-25-17-39-40-41-68 27 7 43 28 41 68Zm7-42c28-10 50-29 64-57-31 1-53 20-64 57Zm12-72c-19-15-28-33-27-55 22 6 33 24 27 55Zm8-32c24-7 42-22 54-44-26 0-44 14-54 44Z'/%3E%3C/g%3E%3C/svg%3E"); }

.eyebrow { margin: 0; color: var(--green); font-size: 12px; line-height: 1.1; letter-spacing: .45px; font-weight: 700; text-transform: uppercase; }
.eyebrow::after { content: ""; display: block; width: 18px; height: 2px; margin-top: 9px; background: var(--gold); }

.about { position: relative; overflow: hidden; padding-top: 76px; background: linear-gradient(180deg, #fbfaf6 0%, #f5f0e6 100%); }
.leaf-corner { position: absolute; width: 150px; height: 360px; opacity: .3; z-index: 0; pointer-events: none; background-repeat: no-repeat; background-size: contain; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 500'%3E%3Cg fill='none' stroke='%23d89b10' stroke-width='1.1'%3E%3Cpath d='M55 500C32 393 48 284 112 157'/%3E%3Cpath d='M75 394c-28-17-43-42-47-76 29 8 47 31 47 76Zm4-36c29-14 50-36 60-67-33 4-53 26-60 67Zm7-70c-25-17-39-40-41-68 27 7 43 28 41 68Zm7-42c28-10 50-29 64-57-31 1-53 20-64 57Zm12-72c-19-15-28-33-27-55 22 6 33 24 27 55Zm8-32c24-7 42-22 54-44-26 0-44 14-54 44Z'/%3E%3C/g%3E%3C/svg%3E"); }
.leaf-corner-tr { top: -20px; right: -20px; transform: scaleX(-1) rotate(15deg); }
.leaf-corner-bl { bottom: -20px; left: -20px; transform: rotate(-10deg); }

.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; align-items: center; padding-bottom: 64px; }

.section-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-badge-icon { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(216,155,16,.1); color: var(--gold); }
.section-badge-icon svg { width: 14px; height: 14px; display: block; stroke-width: 2.1; }
.section-badge span:last-child { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark); }

.about-copy h2 { display: inline-block; margin: 0 0 20px; padding-bottom: 14px; border-bottom: 3px solid var(--gold); font-family: var(--serif); font-size: clamp(33px, 3.4vw, 48px); line-height: 1.18; font-weight: 700; color: var(--navy); }
.about-copy h2 span { display: block; color: var(--green-dark); }

.about-subbadge { display: flex; align-items: center; gap: 14px; margin: 24px 0 20px; }
.about-subbadge-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 50%; border: 1.5px solid var(--gold); background: rgba(216,155,16,.06); color: var(--gold); }
.about-subbadge-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.about-subbadge span:last-child { font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; line-height: 1.5; color: #5d6267; }

.about-copy > p { margin: 0 0 28px; max-width: 520px; font-size: 16.5px; line-height: 1.75; color: #4b5560; }

.about-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 11px; background: rgba(13,103,45,.09); color: var(--green); }
.about-feature-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.about-feature h3 { margin: 0 0 4px; font-size: 13.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--text); }
.about-feature p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }

.about-visual { position: relative; max-width: 480px; margin-left: auto; }
.about-photo-frame { position: relative; z-index: 1; border-radius: 130px 130px 20px 20px; overflow: hidden; border: 3px solid rgba(216,155,16,.4); box-shadow: 0 30px 60px rgba(9,38,27,.18); }
.about-photo-frame img { display: block; width: 100%; aspect-ratio: 1.05; object-fit: cover; }

.about-quote-card { position: absolute; left: -3%; bottom: 10%; z-index: 3; width: 56%; padding: 20px 22px; border-radius: 14px; background: linear-gradient(135deg, #0c3d2c, #0a2e22); color: #fff; box-shadow: 0 20px 40px rgba(0,0,0,.25); }
.about-quote-eyebrow { margin: 0 0 8px; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.about-quote-card > p:not(.about-quote-eyebrow) { margin: 0; font-family: var(--serif); font-size: 17px; line-height: 1.35; color: #fff; }
.about-quote-icon { display: block; margin-top: 12px; width: 24px; height: 24px; color: var(--gold); opacity: .85; }
.about-quote-icon svg { width: 100%; height: 100%; stroke-width: 1.6; }

.about-stats-card { position: absolute; right: -4%; bottom: -6%; z-index: 3; width: 54%; padding: 16px; border-radius: 14px; background: #fff; box-shadow: 0 24px 50px rgba(9,38,27,.16); }
.about-stat { display: flex; align-items: flex-start; gap: 12px; padding: 8px 4px; }
.about-stat + .about-stat { border-top: 1px solid var(--line); }
.about-stat-icon { display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 10px; background: rgba(13,103,45,.09); color: var(--green); }
.about-stat-icon svg { width: 19px; height: 19px; stroke-width: 1.8; }
.about-stat h3 { margin: 0 0 2px; font-size: 13px; font-weight: 700; color: var(--text); }
.about-stat p { margin: 0; font-size: 12.5px; line-height: 1.4; color: var(--muted); }

.about-trust-strip { position: relative; z-index: 1; margin-top: 50px; border-top: 1px solid var(--line); background: rgba(216,155,16,.06); }
.about-trust-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 22px clamp(24px, 4vw, 64px); }
.about-trust-item { display: flex; align-items: center; gap: 14px; }
.about-trust-icon { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 50%; border: 1.5px solid var(--gold); background: rgba(216,155,16,.06); color: var(--gold); }
.about-trust-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.about-trust-item h3 { margin: 0 0 2px; font-size: 13.5px; font-weight: 700; color: var(--text); }
.about-trust-item p { margin: 0; font-size: 13px; color: var(--muted); }
.section-heading-inline { display: flex; align-items: center; gap: 10px; min-height: 18px; }
.section-heading-inline .eyebrow::after { display: none; }
.section-heading-inline > span { width: 20px; height: 1px; background: var(--gold); }
.section-heading-inline.full-line > span { flex: 1; max-width: 34px; }
.products-showcase { position: relative; overflow: hidden; background: linear-gradient(180deg, #fbfaf6 0%, #f5f0e6 100%); }
.products-header { position: relative; z-index: 1; max-width: 920px; margin: 0 auto 44px; text-align: center; }
.products-header .section-badge { justify-content: center; }
.products-header h2 { margin: 18px 0 0; font-family: var(--serif); font-size: clamp(32px, 3.4vw, 48px); line-height: 1.18; font-weight: 700; color: var(--text); }
.products-header h2 strong { color: var(--green-dark); font-weight: 700; }
.products-tagline { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 22px; }
.products-tagline-line { width: 30px; height: 1px; background: var(--gold); flex: none; }
.products-tagline-icon { display: grid; place-items: center; width: 16px; height: 16px; color: var(--gold); flex: none; }
.products-tagline-icon svg { width: 100%; height: 100%; }
.products-tagline span:last-child { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.product-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { min-width: 0; border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 10px 26px rgba(10,30,20,.08); transition: transform .35s ease, box-shadow .35s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,30,20,.16); }
.product-media { position: relative; overflow: hidden; }
.product-media img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform .5s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-number { position: absolute; top: 14px; left: 14px; display: grid; place-items: center; min-width: 34px; height: 34px; padding: 0 4px; border-radius: 9px; font-size: 12px; font-weight: 700; background: rgba(8,20,16,.55); color: #fff; backdrop-filter: blur(4px); }
.product-badge-icon { position: absolute; right: 14px; bottom: -18px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1.5px solid var(--gold); color: var(--gold); box-shadow: 0 6px 14px rgba(0,0,0,.14); }
.product-badge-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }
.product-body { position: relative; padding: 26px 18px 18px; }
.product-body h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 20px; font-weight: 700; }
.product-body p { margin: 0; font-size: 13.5px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.08); }
.product-quality { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.product-quote-link { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; padding: 0; font-size: 12.5px; font-weight: 700; cursor: pointer; }
.product-quote-link span[aria-hidden] { transition: transform .25s ease; }
.product-quote-link:hover span[aria-hidden] { transform: translateX(3px); }

.product-card:nth-child(4n+1) .product-body, .product-card:nth-child(4n+3) .product-body { background: linear-gradient(150deg, #0c3d2c, #0a2e22); color: #fff; }
.product-card:nth-child(4n+1) .product-body p, .product-card:nth-child(4n+3) .product-body p { color: rgba(255,255,255,.72); }
.product-card:nth-child(4n+1) .product-footer, .product-card:nth-child(4n+3) .product-footer { border-top-color: rgba(255,255,255,.14); }
.product-card:nth-child(4n+1) .product-quote-link, .product-card:nth-child(4n+3) .product-quote-link { color: #fff; }
.product-card:nth-child(4n+3) .product-body { background: linear-gradient(150deg, #10171f, #060a0e); }
.product-card:nth-child(4n+2) .product-body, .product-card:nth-child(4n+4) .product-body { background: #fff; color: var(--text); }
.product-card:nth-child(4n+2) .product-body p, .product-card:nth-child(4n+4) .product-body p { color: #565d62; }
.product-card:nth-child(4n+2) .product-quote-link, .product-card:nth-child(4n+4) .product-quote-link { color: var(--green-dark); }
.product-card:nth-child(4n+2) .product-number { background: rgba(255,255,255,.85); color: var(--text); }
.product-card:nth-child(4n+4) .product-number { background: rgba(216,155,16,.85); color: #fff; }

.products-footer-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: stretch; margin-top: 40px; }
.products-feature-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 22px 26px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.products-feature { display: flex; align-items: center; gap: 12px; }
.products-feature-icon { display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 10px; background: rgba(13,103,45,.09); color: var(--green); }
.products-feature-icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.products-feature h4 { margin: 0 0 2px; font-size: 12px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--text); }
.products-feature p { margin: 0; font-size: 12px; color: var(--muted); }

.products-cta { display: flex; flex-direction: column; justify-content: center; gap: 4px; min-width: 220px; padding: 22px 26px; border: 0; border-radius: 16px; background: linear-gradient(150deg, #0c3d2c, #0a2e22); color: #fff; text-align: left; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.products-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(9,38,27,.25); }
.products-cta-label { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.products-cta-title { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 17px; font-weight: 700; }
.products-cta-arrow { font-size: 18px; }
.text-link { display: flex; justify-content: flex-end; align-items: center; gap: 14px; margin: 18px 5px 0 0; color: var(--green); font-size: 13px; font-weight: 700; }
.text-link span[aria-hidden] { display: inline-block; transition: transform .25s ease; }
.text-link:hover span[aria-hidden] { transform: translateX(3px); }
.commodity-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 22px; }
.commodity-tags-label { font-size: 12px; font-weight: 700; color: var(--muted); margin-right: 2px; }
.tag { display: inline-flex; align-items: center; padding: 6px 13px; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); color: #3d454b; font-size: 12.5px; font-weight: 600; transition: background-color .2s ease, border-color .2s ease, transform .2s ease; }
.tag:hover { background: #eef4f0; border-color: #cfe0d5; transform: translateY(-2px); }

.advantages { border-top: 1px solid var(--line); background: linear-gradient(180deg, #f8faf9, #ffffff 240px); }
.advantage-grid { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 28px; }
.advantage-grid article { position: relative; min-height: 190px; padding: 8px 22px 20px 0; transition: transform .3s ease; }
.advantage-grid article:hover { transform: translateY(-4px); }
.advantage-grid article:not(:last-child) { border-right: 1px solid #e7e8e8; padding-right: 22px; margin-right: 22px; }
.adv-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: var(--green); font-size: 24px; line-height: 1; margin-bottom: 16px; background: rgba(13,103,45,.08); transition: color .3s ease, transform .3s ease, background-color .3s ease; }
.advantage-grid article:hover .adv-icon { color: var(--gold); transform: scale(1.08); background-color: rgba(216,155,16,.12); }
.advantage-grid h3 { margin: 0 0 12px; font-size: 14.5px; line-height: 1.35; }
.advantage-grid p { margin: 0; color: #5d6267; font-size: 14px; line-height: 1.55; }
.advantage-grid b { position: absolute; left: 70%; bottom: -3px; color: #eceeed; font-size: 35px; font-weight: 400; line-height: 1; }
.integrity-banner { min-height: 70px; margin-top: 24px; padding: 18px 24px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 16px; color: #fff; border-radius: 10px; background: linear-gradient(90deg, #0c672d 0%, #075c26 70%, #075321 100%); box-shadow: 0 8px 20px rgba(7,74,31,.15); }
.banner-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; color: var(--gold); font-size: 25px; background: rgba(255,255,255,.14); }
.integrity-banner h3 { margin: 0 0 3px; font-size: 15px; }
.integrity-banner p { margin: 0; font-size: 14px; color: rgba(255,255,255,.88); }

.services { border-top: 1px solid var(--line); }
.services-intro { margin: 14px 0 28px; color: #4b5358; font-size: 15px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(8, 1fr); }
.service-grid article { min-height: 90px; padding: 18px 12px; text-align: center; border-radius: 10px; transition: transform .3s ease, background-color .3s ease; }
.service-grid article:hover { transform: translateY(-3px); background-color: var(--soft); }
.service-grid article:not(:last-child) { border-right: 1px solid #e5e7e6; }
.service-grid article div { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--green); font-size: 21px; line-height: 1; margin-bottom: 14px; background: rgba(13,103,45,.08); transition: transform .3s ease, background-color .3s ease; }
.service-grid article:hover div { transform: scale(1.1); background-color: rgba(13,103,45,.14); }
.service-grid h3 { margin: 0; font-size: 13px; line-height: 1.35; font-weight: 600; }

.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::after { display: none; }

.process { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: linear-gradient(180deg, #fbfaf6 0%, #f5f0e6 100%); }

.process-header { position: relative; max-width: 850px; margin: 0 auto 60px; text-align: center; }
.process-header .section-badge { justify-content: center; margin-bottom: 18px; }
.process-header .section-badge span:last-child { font-size: 14.5px; }
.process-header h2 { margin: 0 0 20px; font-family: var(--serif); font-size: clamp(36px, 4.4vw, 56px); line-height: 1.2; font-weight: 700; color: var(--navy); }
.process-header h2 em { color: var(--green-dark); font-style: italic; }
.process-intro { margin: 0 auto; max-width: 540px; font-size: 18px; line-height: 1.7; color: #5a6065; }

.process-timeline { position: relative; }
.process-timeline::before { content: ""; position: absolute; left: 50%; top: 8px; bottom: 8px; width: 1px; background: var(--line); transform: translateX(-50%); z-index: 0; }
.process-tick { display: block; width: 6px; height: 6px; margin: 0 auto; border-radius: 50%; background: var(--gold); position: relative; z-index: 1; }

.process-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 68px 1fr; align-items: center; gap: 0 36px; padding: 22px 0; }
.process-row .process-photo { order: 1; }
.process-row .process-num { order: 2; }
.process-row .process-copy { order: 3; }
.process-row.is-reverse .process-photo { order: 3; }
.process-row.is-reverse .process-copy { order: 1; }

.process-photo { position: relative; margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 40px rgba(9,38,27,.14); aspect-ratio: 4 / 3; }
.process-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) sepia(.08) brightness(.98); transition: transform .6s ease; }
.process-photo:hover img { transform: scale(1.06); }
.process-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,30,20,0) 55%, rgba(4,20,14,.55) 100%); pointer-events: none; }
.process-photo-badge { position: absolute; left: 16px; bottom: 16px; z-index: 1; display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 10px; background: rgba(7,31,20,.88); box-shadow: 0 10px 22px rgba(0,0,0,.25); }
.process-photo-badge-icon { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; }
.process-photo-badge-icon svg { width: 14px; height: 14px; }
.process-photo-badge span:last-child { font-size: 11.5px; line-height: 1.35; font-weight: 600; color: #fff; }

.process-num { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto; border-radius: 50%; background: #fff; border: 2px solid var(--gold); color: var(--green-dark); font-family: var(--serif); font-size: 17px; font-weight: 700; }

.process-copy-icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 50%; background: rgba(216,155,16,.12); color: var(--gold); }
.process-copy-icon svg { width: 21px; height: 21px; stroke-width: 1.8; }
.process-copy h3 { margin: 0 0 12px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; font-family: var(--serif); font-size: 30px; color: var(--navy); }
.process-copy p { margin: 0; max-width: 460px; font-size: 17.5px; line-height: 1.7; color: #575e63; }

.process-feature-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; padding: 26px 30px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.process-feature { display: flex; align-items: flex-start; gap: 12px; }
.process-feature-icon { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%; background: rgba(13,103,45,.08); color: var(--green); }
.process-feature-icon svg { width: 17px; height: 17px; }
.process-feature h4 { margin: 0 0 4px; font-size: 14.5px; font-weight: 700; color: var(--navy); }
.process-feature p { margin: 0; font-size: 13px; line-height: 1.45; color: var(--muted); }

.global-band { position: relative; overflow: hidden; padding: 64px 0; background: linear-gradient(120deg, #063562 0%, #0a4a5a 55%, #0d672d 100%); }
.global-band-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.global-band .eyebrow::after { margin-inline: auto; }
.global-band h2 { margin: 16px 0 0; font-family: var(--serif); font-size: 38px; line-height: 1.08; font-weight: 700; }

.global-band-intro { max-width: 620px; margin: 14px auto 0; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.82); }

.map-block { margin: 40px auto 0;  padding: 20px; border-radius: 14px; background: #f4f6f4; box-shadow: 0 20px 46px rgba(0,0,0,.22); }
.map-inner { position: relative; }
.map-inner svg#world-map-svg { display: block; width: 100%; height: auto; }
.map-credit { margin: 10px auto 0; text-align: right; font-size: 10.5px; color: rgba(255,255,255,.55); }
.map-credit a { color: rgba(255,255,255,.75); text-decoration: underline; }
.map-credit a:hover { color: #fff; }
.map-routes { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-line { fill: none; stroke-linecap: round; }
.route-solid { stroke: var(--green); stroke-width: .55; opacity: .8; }
.route-dotted { stroke: var(--gold); stroke-width: .3; stroke-dasharray: 1.2 1.6; opacity: .5; animation: route-flow 1.6s linear infinite; }
@keyframes route-flow { to { stroke-dashoffset: -14; } }

.map-pin { position: absolute; z-index: 2; }
.pin-dot { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); width: 11px; height: 11px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255,255,255,.95); }
.pin-dot::before { content: ""; position: absolute; inset: -7px; border-radius: 50%; background: currentColor; opacity: .4; animation: dot-pulse 2.2s ease-out infinite; }
.pin-navy { background: var(--navy); color: var(--navy); }
.pin-green { background: var(--green); color: var(--green); }
.pin-gold { background: var(--gold); color: var(--gold); }
@keyframes dot-pulse { 0% { transform: scale(.6); opacity: .45; } 100% { transform: scale(2.6); opacity: 0; } }
.pin-label { position: absolute; left: 0; padding: 3px 9px; border-radius: 5px; background: rgba(6,53,98,.95); color: #fff; font-size: 10.5px; font-weight: 700; white-space: nowrap; box-shadow: 0 3px 8px rgba(0,0,0,.22); }
.pin-label.label-above { top: 0; transform: translate(-50%, calc(-100% - 10px)); }
.pin-label.label-below { top: 0; transform: translate(-50%, 10px); }

.map-market { position: absolute; z-index: 1; left: 0; top: 0; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 5px; }
.map-market-dot { width: 5px; height: 5px; flex: none; border-radius: 50%; background: #8a938d; box-shadow: 0 0 0 2px rgba(255,255,255,.85); }
.map-market-label { font-size: 9.5px; font-weight: 600; color: #4b5560; white-space: nowrap; text-shadow: 0 1px 0 rgba(255,255,255,.7), 0 0 4px rgba(255,255,255,.7); }

.map-key { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 20px; margin-top: 10px; font-size: 11px; color: #5a6065; }
.map-key span { display: inline-flex; align-items: center; gap: 7px; }
.map-key-line { display: inline-block; width: 22px; height: 0; border-top: 1.5px solid; }
.map-key-line.is-dotted { border-top-style: dotted; border-top-color: var(--gold); }
.map-key-line.is-solid { border-top-style: solid; border-top-color: var(--green); }

.map-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 98%; margin: 22px auto 0; padding: 20px 24px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); text-align: left; }
.map-legend-title { margin: 0 0 10px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.map-legend-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.map-legend-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); font-size: 11.5px; color: rgba(255,255,255,.88); }
.map-legend-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }

.stat-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; margin-top: 40px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--gold); }
.stat span { display: block; margin-top: 9px; font-size: 12px; letter-spacing: .6px; text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 600; }

.contact-cta { position: relative; overflow: hidden; padding: 90px 0; }
.contact-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-cta-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,20,15,.75) 0%, rgba(4,20,15,.55) 45%, rgba(4,20,15,.8) 100%); }
.contact-cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center; color: #fff; }
.cta-eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.cta-eyebrow-line { width: 34px; height: 1px; background: var(--gold); }
.contact-cta h2 { margin: 0 0 20px; font-family: var(--serif); font-size: 40px; line-height: 1.15; font-weight: 700; }
.contact-cta h2 span { color: #7dd8a3; }
.contact-cta p { margin: 0 auto 34px; max-width: 480px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.88); }
.contact-cta .hero-actions { justify-content: center; }

.contact-details { border-top: 1px solid var(--line); padding-bottom: 12px; }
.office-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.office {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 40px 1fr; gap: 14px;
  align-content: start; padding: 22px 20px 20px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; box-shadow: 0 6px 18px rgba(9,38,27,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.office::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--office-accent, var(--green)); }
.office:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(9,38,27,.12); border-color: transparent; }
.office-navy { --office-accent: var(--navy); }
.office-gold { --office-accent: var(--gold); }
.office-green { --office-accent: var(--green); }
.office-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--office-accent, var(--green)); font-size: 15px; background: color-mix(in srgb, var(--office-accent, var(--green)) 12%, transparent); transition: transform .25s ease; }
.office-icon svg { width: 18px; height: 18px; }
.office:hover .office-icon { transform: scale(1.1); }
.office h3 { margin: 0 0 6px; font-size: 13.5px; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); }
.office p, .office a { display: block; margin: 0; color: #4f565b; font-size: 14px; line-height: 1.55; overflow-wrap: break-word; }
.office-note { display: inline-block; margin: 7px 0 6px; padding: 3px 10px; border-radius: 999px; background: color-mix(in srgb, var(--office-accent, var(--green)) 10%, transparent); font-size: 10.5px; font-weight: 700; letter-spacing: .04em; color: var(--office-accent, var(--green)); text-transform: uppercase; }
.office a { color: #0c65b2; transition: color .2s ease; }
.office a:hover { color: var(--office-accent, var(--green)); }
.contact-form { position: relative; min-height: 240px; padding: 28px; background: #f5f6f5; border-radius: 12px; box-shadow: 0 10px 26px rgba(9,38,27,.06); overflow: hidden; }
.contact-form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--gold)); }
.contact-form h2 { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--green); font-size: 17px; }
.contact-form h2 .heading-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(13,103,45,.1); font-size: 15px; flex: none; }
.contact-form h2 .heading-icon svg { display: block; }
.contact-form label { display: block; min-width: 0; }
.contact-form label > span { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9aa3a8; }

.quote-form-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; margin: 0 0 18px; }
.quote-form-head h2 { margin: 0; color: var(--green-dark); font-family: var(--serif); font-size: 24px; font-weight: 700; padding-bottom: 8px; border-bottom: 3px solid var(--gold); display: inline-block; }
.quote-form-sla { display: flex; align-items: center; gap: 7px; margin: 0; font-size: 12px; color: var(--muted); white-space: nowrap; }
.sla-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.quote-form-section { margin: 22px 0 12px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--text); }
.quote-form-section:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }

.contact-form select { width: 100%; height: 38px; margin-bottom: 12px; padding: 0 32px 0 12px; border: 1px solid #e5e8e6; border-radius: 7px; background: #fff; color: var(--text); outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6369' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form select:focus { border-color: #8ab497; box-shadow: 0 0 0 3px rgba(13,103,45,.1); }

.payment-terms { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.payment-term { position: relative; display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid #e5e8e6; border-radius: 9px; background: #fff; cursor: pointer; transition: border-color .2s ease, background-color .2s ease; }
.payment-term input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.payment-term-radio { width: 17px; height: 17px; flex: none; border-radius: 50%; border: 1.5px solid #c7cdc9; transition: border-color .2s ease; }
.payment-term-radio::after { content: ""; display: block; width: 9px; height: 9px; margin: 3px; border-radius: 50%; background: var(--green); transform: scale(0); transition: transform .15s ease; }
.payment-term-label { flex: 1; font-size: 13px; line-height: 1.4; color: var(--text); }
.payment-term-icon { display: grid; place-items: center; width: 22px; height: 22px; flex: none; color: var(--muted); }
.payment-term-icon svg { width: 100%; height: 100%; }
.payment-term:hover { border-color: #c9cfca; }
.payment-term input:checked ~ .payment-term-radio { border-color: var(--green); }
.payment-term input:checked ~ .payment-term-radio::after { transform: scale(1); }
.payment-term:has(input:checked) { border-color: var(--green); background: rgba(13,103,45,.04); }
.payment-term:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.quote-form-privacy { margin: 4px 0 16px; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.quote-form-footnote { margin: 10px 0 0; text-align: center; font-size: 11px; color: var(--muted); }
.contact-form button[type="submit"] { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-transform: uppercase; letter-spacing: .04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea { width: 100%; margin-bottom: 12px; border: 1px solid #e5e8e6; border-radius: 7px; background: #fff; color: var(--text); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input { height: 38px; padding: 0 12px; }
.contact-form textarea { min-height: 80px; padding: 10px 12px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #8ab497; box-shadow: 0 0 0 3px rgba(13,103,45,.1); }
.contact-form button { width: 100%; height: 42px; border: 0; border-radius: 7px; color: #fff; background: linear-gradient(180deg, #15833b, #0a672c); font-size: 15px; font-weight: 700; transition: transform .2s ease, filter .2s ease; }
.contact-form button:hover { transform: translateY(-2px); filter: brightness(1.05); }

body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility 0s linear .25s; }
.modal.is-open { visibility: visible; opacity: 1; transition: opacity .25s ease; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,20,15,.65); backdrop-filter: blur(3px); }
.modal-panel {
  position: relative; z-index: 1; width: min(100%, 680px); max-height: 88vh; overflow-y: auto;
  background: #fff; border-radius: 22px; padding: 44px; box-shadow: 0 40px 90px rgba(0,0,0,.4);
  transform: translateY(16px) scale(.97); transition: transform .25s ease;
  scrollbar-width: thin; scrollbar-color: var(--green) transparent;
}
.modal.is-open .modal-panel { transform: translateY(0) scale(1); }
.modal-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--green), var(--gold)); }
.modal-panel::-webkit-scrollbar { width: 8px; }
.modal-panel::-webkit-scrollbar-track { background: transparent; }
.modal-panel::-webkit-scrollbar-thumb { background: #c7d0ca; border-radius: 8px; }
.modal-close { position: absolute; top: 20px; right: 20px; z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--soft); color: var(--text); font-size: 15px; box-shadow: 0 4px 12px rgba(9,38,27,.1); transition: background-color .2s ease, transform .2s ease; }
.modal-close:hover { background: #e7ebe8; transform: rotate(90deg); }
.modal .contact-form { padding: 0; min-height: auto; background: transparent; box-shadow: none; }
.modal .contact-form::before { display: none; }

@media (prefers-reduced-motion: reduce) {
  .modal, .modal-panel, .modal-close { transition: none; }
}

.site-footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: 46px 0 0; background: linear-gradient(180deg, #f8f4ea 0%, #f5f0e6 100%); }
.site-footer .leaf-corner-bl { bottom: -30px; }
.site-footer .leaf-corner-tr { top: -30px; opacity: .3; }

.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 28% 15% 21% 36%; gap: 28px; align-items: start; padding-bottom: 34px; }
.footer-brand img { width: 210px; }
.footer-tagline { margin: 14px 0 16px; max-width: 260px; font-size: 13px; line-height: 1.7; color: #5a6065; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--green); color: var(--green); transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.footer-social a svg { width: 14px; height: 14px; }
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.footer-col h2, .legal h2 { margin: 2px 0 12px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--green-dark); }
.footer-grid a, .footer-grid p { display: block; margin: 0; color: #40484e; font-size: 13px; line-height: 1.7; }
.footer-col a { display: flex; align-items: center; gap: 6px; transition: color .2s ease, transform .2s ease; }
.footer-col a svg { width: 11px; height: 11px; color: var(--gold); flex: none; }
.footer-col a:hover { color: var(--green); transform: translateX(2px); }

.legal p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.legal p span:last-child { min-width: 0; overflow-wrap: break-word; }
.legal-icon { display: grid; place-items: center; width: 26px; height: 26px; flex: none; margin-top: 1px; border-radius: 50%; background: rgba(13,103,45,.08); color: var(--green); }
.legal-icon svg { width: 13px; height: 13px; }

.footer-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 0; border-top: 1px solid var(--line); }
.footer-bottom-icon { display: grid; place-items: center; color: var(--gold); }
.footer-bottom-icon svg { width: 14px; height: 14px; }
.footer-bottom p { margin: 0; font-size: 12px; color: var(--muted); }

.back-to-top { position: absolute; right: 20px; bottom: 14px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 13px; transition: transform .25s ease, box-shadow .25s ease; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(7,74,31,.3); }

@media (min-width: 1200px) {
  body { font-size: 16px; }
  .product-card h3 { font-size: 16px; }
  .product-card p { font-size: 14px; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 28px), 760px); }
  :root { --header-h: 76px; }
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .brand-copy small { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav { position: absolute; top: var(--header-h); left: 0; right: 0; display: none; padding: 13px; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
  .primary-nav.open { display: grid; }
  .primary-nav a { padding: 10px 12px; }
  .primary-nav a::after { bottom: 5px; left: 12px; right: auto; width: 26px; }
  .header-actions { display: none; }
  .primary-nav .mobile-cta { display: inline-flex; justify-self: center; margin-top: 14px; }
  .float-controls { right: 10px; padding: 8px; gap: 8px; }
  .hero { min-height: 600px; }
  .hero-copy { max-width: none; padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(38px, 8vw, 58px); }
  .hero-copy > p { max-width: 650px; }
  .hero-shade { background: linear-gradient(180deg, rgba(4,20,15,.5) 0%, rgba(4,20,15,.4) 40%, rgba(4,20,15,.82) 100%); }
  .trust-strip { max-width: none; border-radius: 14px; }
  .about { padding-top: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { margin: 60px auto 0; max-width: 460px; }
  .about-quote-card { left: 0; width: 62%; }
  .about-stats-card { right: 0; width: 58%; }
  .leaf-corner { width: 100px; height: 240px; }
  .advantage-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .advantage-grid article:nth-child(3) { border-right: 0; }
  .service-grid { grid-template-columns: repeat(4, 1fr); row-gap: 28px; }
  .service-grid article:nth-child(4) { border-right: 0; }
  .process-feature-bar { grid-template-columns: repeat(2, 1fr); }
  .office-list { grid-template-columns: 1fr 1fr; }
  .contact-cta { padding: 70px 0; }
  .contact-cta h2 { font-size: 32px; }
  .map-legend { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .products-footer-row { grid-template-columns: 1fr; }
  .products-feature-bar { grid-template-columns: repeat(2, 1fr); }
  .products-cta { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .legal { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .shell { width: min(calc(100% - 20px), 560px); }
  .contact-cta { padding: 56px 0; }
  .contact-cta h2 { font-size: 27px; }
  .contact-cta p { font-size: 14px; }
  .office-list { grid-template-columns: 1fr; }
  .modal-panel { padding: 24px; border-radius: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .global-band { padding: 44px 0; }
  .global-band h2 { font-size: 28px; }
  .map-block { margin-top: 28px; }
  .pin-label { font-size: 9.5px; padding: 3px 7px; }
  .map-market-label { display: none; }
  .map-key { justify-content: flex-start; }
  .map-legend { grid-template-columns: 1fr; padding: 16px 18px; }
  .stat-row { gap: 30px 40px; }
  .stat b { font-size: 32px; }
  :root { --header-h: 62px; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-copy strong { font-size: 17px; }
  .hero { min-height: 560px; }
  .hero-copy { padding: 32px 0; }
  .hero-badge { gap: 9px; white-space: normal; line-height: 1.45; }
  .hero-badge-line { width: 18px; }
  .hero h1 { margin-top: 20px; font-size: clamp(36px, 13vw, 50px); }
  .hero-copy > p { font-size: 14.5px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; gap: 0; margin: 0 0 32px; padding: 8px 18px; }
  .trust-strip article { min-height: 82px; padding: 8px 2px; }
  .trust-strip article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .about { padding-top: 40px; }
  .about-copy > p { max-width: 100%; }
  .about-feature-list { grid-template-columns: 1fr; gap: 16px; }
  .about-visual { margin-top: 40px; max-width: none; }
  .about-quote-card, .about-stats-card { position: static; width: 100%; margin: 14px 0 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .products-feature-bar { grid-template-columns: 1fr; gap: 14px; padding: 18px 20px; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid article:nth-child(2n) { border-right: 0; margin-right: 0; }
  .integrity-banner { grid-template-columns: 40px 1fr; }
  .integrity-banner .button { grid-column: 1 / -1; justify-self: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid article:nth-child(2n) { border-right: 0; }
  .process-row { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; padding: 16px 0; }
  .process-row .process-photo, .process-row.is-reverse .process-photo { order: 1; }
  .process-row .process-num, .process-row.is-reverse .process-num { order: 2; }
  .process-row .process-copy, .process-row.is-reverse .process-copy { order: 3; }
  .process-photo { width: 100%; }
  .process-copy-icon { margin-inline: auto; }
  .process-copy h3 { display: block; }
  .process-copy p { max-width: 100%; }
  .process-feature-bar { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .lower-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .legal { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: clamp(34px, 12vw, 46px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .button { min-width: 150px; }
  .product-grid, .advantage-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .advantage-grid article { border-right: 0 !important; margin-right: 0 !important; }
  .service-grid article { border-right: 0 !important; border-bottom: 1px solid #e5e7e6; padding-bottom: 14px; }
}

.form-notice { padding: 10px 14px; border-radius: 7px; font-size: 14px; margin-bottom: 14px; }
.form-notice-success { background: #e6f4ea; color: #075422; border: 1px solid #b7ddc3; }
.form-notice-error { background: #fdecea; color: #8a2c22; border: 1px solid #f3c2bb; }

/* Motion polish */

@keyframes heroPan {
  0% { transform: scale(1.015); }
  100% { transform: scale(1.08); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy h1, .hero-copy p, .hero-actions { opacity: 0; animation: fadeUp .7s ease forwards; }
.hero-copy h1 { animation-delay: .05s; }
.hero-copy p { animation-delay: .18s; }
.hero-actions { animation-delay: .3s; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-copy h1, .hero-copy p, .hero-actions { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .route-line, .pin-dot::before { animation: none; }
}

/*
 * Dark mode. Toggled via .theme-toggle in the header; see script.js.
 * Sections that were already designed as dark cards in light mode
 * (about-quote-card, products-cta, product cards 1&3, integrity-banner,
 * global-band, contact-cta) are intentionally left untouched here.
 */
body.dark { background: #0c1512; color: #d9ddd6; }
body.dark .site-header { background: rgb(16 38 31); border-color: rgba(255,255,255,.08); }
body.dark .brand-copy strong, body.dark .primary-nav a { color: #f6f1e6; }
body.dark .language-switch { border-color: rgba(255,255,255,.28); }
body.dark .language-switch button.is-active { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
body.dark .button-secondary { color: #f6f1e6; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
body.dark .trust-strip { background: rgba(4,12,9,.65); }

body.dark .eyebrow { color: var(--green-light); }
body.dark .section-badge span:last-child { color: #eadfb8; }
body.dark .section-heading-inline .eyebrow { color: var(--green-light); }

/* About */
body.dark .about { background: linear-gradient(180deg, #0f1c17 0%, #0c1613 100%); }
body.dark .about-copy h2 { color: #f3efe4; }
body.dark .about-copy h2 span { color: var(--green-light); }
body.dark .about-subbadge span:last-child { color: #aab3ac; }
body.dark .about-copy > p { color: #b9c2bc; }
body.dark .about-feature h3 { color: #f0ede4; }
body.dark .about-feature p { color: #9aa79e; }
body.dark .about-stats-card { background: #16261f; box-shadow: 0 24px 50px rgba(0,0,0,.35); }
body.dark .about-stat + .about-stat { border-top-color: rgba(255,255,255,.1); }
body.dark .about-stat h3 { color: #f0ede4; }
body.dark .about-stat p { color: #9aa79e; }
body.dark .about-trust-strip { border-top-color: rgba(255,255,255,.1); background: rgba(216,155,16,.08); }
body.dark .about-trust-item h3 { color: #f0ede4; }
body.dark .about-trust-item p { color: #9aa79e; }
body.dark .leaf-corner { opacity: .18; }

/* Products */
body.dark .products-showcase { background: linear-gradient(180deg, #0f1c17 0%, #0c1613 100%); }
body.dark .products-header h2 { color: #f0ede4; }
body.dark .products-header h2 strong { color: var(--green-light); }
body.dark .products-tagline span:last-child { color: #9aa79e; }
body.dark .product-card { background: #16261f; box-shadow: 0 10px 26px rgba(0,0,0,.3); }
body.dark .product-card:nth-child(4n+2) .product-body, body.dark .product-card:nth-child(4n+4) .product-body { background: #16261f; color: #d9ddd6; }
body.dark .product-card:nth-child(4n+2) .product-body p, body.dark .product-card:nth-child(4n+4) .product-body p { color: #9aa79e; }
body.dark .product-card:nth-child(4n+2) .product-footer, body.dark .product-card:nth-child(4n+4) .product-footer { border-top-color: rgba(255,255,255,.1); }
body.dark .product-card:nth-child(4n+2) .product-quote-link { color: var(--green-light); }
body.dark .product-card:nth-child(4n+2) .product-number { background: rgba(0,0,0,.5); color: #fff; }
body.dark .products-feature-bar { background: #16261f; border-color: rgba(255,255,255,.1); }
body.dark .products-feature h4 { color: #f0ede4; }
body.dark .products-feature p { color: #9aa79e; }
body.dark .commodity-tags-label { color: #9aa79e; }
body.dark .tag { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #cfd6d0; }
body.dark .tag:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
body.dark .text-link { color: var(--green-light); }

/* Advantages & Services */
body.dark .advantages { background: linear-gradient(180deg, #0f1c17, #0c1613 240px); border-top-color: rgba(255,255,255,.1); }
body.dark .advantage-grid h3 { color: #f0ede4; }
body.dark .advantage-grid p { color: #9aa79e; }
body.dark .advantage-grid article:not(:last-child) { border-right-color: rgba(255,255,255,.1); }
body.dark .advantage-grid b { color: rgba(255,255,255,.06); }
body.dark .services { border-top-color: rgba(255,255,255,.1); }
body.dark .services-intro { color: #b9c2bc; }
body.dark .service-grid article:hover { background-color: rgba(255,255,255,.05); }
body.dark .service-grid article:not(:last-child) { border-right-color: rgba(255,255,255,.1); }
body.dark .service-grid h3 { color: #f0ede4; }

/* Process */
body.dark .process { background: linear-gradient(180deg, #0f1c17 0%, #0c1613 100%); border-top-color: rgba(255,255,255,.1); }
body.dark .process-header h2 { color: #f3efe4; }
body.dark .process-header h2 em { color: var(--green-light); }
body.dark .process-intro { color: #b9c2bc; }
body.dark .process-timeline::before { background: rgba(255,255,255,.12); }
body.dark .process-num { background: #16261f; color: #f0ede4; }
body.dark .process-copy h3 { color: #f3efe4; }
body.dark .process-copy p { color: #b9c2bc; }
body.dark .process-feature-bar { background: #16261f; border-color: rgba(255,255,255,.1); }
body.dark .process-feature h4 { color: #f0ede4; }
body.dark .process-feature p { color: #9aa79e; }

/* Offices & contact form */
body.dark .contact-details { border-top-color: rgba(255,255,255,.1); }
body.dark .office { background: #16261f; border-color: rgba(255,255,255,.1); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
body.dark .office:hover { border-color: transparent; box-shadow: 0 16px 32px rgba(0,0,0,.35); }
body.dark .office h3 { color: #f0ede4; }
body.dark .office p, body.dark .office a { color: #b9c2bc; }
body.dark .office a { color: #7ec1e8; }
body.dark .modal-panel { background: #16261f; }
body.dark .modal-backdrop { background: rgba(0,0,0,.75); }
body.dark .modal-close { background: rgba(255,255,255,.08); color: #f0ede4; }
body.dark .modal-close:hover { background: rgba(255,255,255,.16); }
body.dark .contact-form label > span { color: #9aa79e; }
body.dark .contact-form input, body.dark .contact-form textarea, body.dark .contact-form select { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: #f0ede4; }
body.dark .contact-form input::placeholder, body.dark .contact-form textarea::placeholder { color: #6b746e; }
body.dark .quote-form-head h2 { color: #f3efe4; }
body.dark .quote-form-sla { color: #9aa79e; }
body.dark .quote-form-section { color: #f0ede4; border-top-color: rgba(255,255,255,.1); }
body.dark .payment-term { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); }
body.dark .payment-term:hover { border-color: rgba(255,255,255,.28); }
body.dark .payment-term-label { color: #d9ddd6; }
body.dark .quote-form-privacy, body.dark .quote-form-footnote { color: #9aa79e; }

/* Footer */
body.dark .site-footer { background: linear-gradient(180deg, #0f1c17 0%, #0c1613 100%); border-top-color: rgba(255,255,255,.1); }
body.dark .footer-tagline { color: #b9c2bc; }
body.dark .footer-col h2, body.dark .legal h2 { color: #eadfb8; }
body.dark .footer-grid a, body.dark .footer-grid p { color: #b9c2bc; }
body.dark .footer-col a:hover { color: var(--green-light); }
body.dark .footer-bottom { border-top-color: rgba(255,255,255,.1); }
body.dark .footer-bottom p { color: #9aa79e; }
body.dark .footer-social a { border-color: var(--green-light); color: var(--green-light); }
body.dark .footer-social a:hover { background: var(--green-light); color: #0c1613; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
