:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --accent:#16a34a;
  --accent2:#22c55e;
  --border:rgba(22,163,74,.20);
  --shadow: 0 14px 40px rgba(15,23,42,.12);
  --radius:16px;
  --radius-sm:12px;
  --max:1360px;
}

*{box-sizing:border-box}
html{
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@supports not (overflow: clip){
  html{ overflow-x: hidden; }
}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color:var(--text);
  line-height:1.55;
}

/* Heading typography */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title{
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 clamp(14px, 4vw, 24px);
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{left:12px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(22,163,74,.18);
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.topbar{
  border-bottom: 1px solid rgba(22,163,74,.14);
  background: rgba(255,255,255,.65);
}
.topbar-inner{
  height:40px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}
.topbar-item{
  font-size:13px;
  font-weight:800;
  color: rgba(71,85,105,.95);
  display:flex;
  align-items:center;
  gap:8px;
}
.topbar-phone{
  color: rgba(22,163,74,.98);
}
.topbar-icon{
  width:16px;
  height:16px;
  flex:0 0 auto;
  display:block;
}
.topbar-divider{
  color: rgba(71,85,105,.55);
  font-weight:900;
}
.header-inner{
  height:84px;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{
  height:52px;
  width:auto;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.15));
}

.nav{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
  width:100%;
}
.nav-link{
  position:relative;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  font-weight:600;
  font-size:13px;
  border:1px solid transparent;
  line-height:1.2;
}
.nav-link:hover{
  background: rgba(34,197,94,.12);
  color: rgba(22,163,74,.98);
  transform: translateY(-1px);
  border-color: rgba(22,163,74,.20);
}

.nav-link::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:8px;
  height:2px;
  background: rgba(22,163,74,.95);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  border-radius: 2px;
  opacity:.9;
}
.nav-link:hover::after{
  transform: scaleX(1);
}

.header-actions{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space:nowrap;
  line-height:1;
}
.btn-icon{
  width:18px;
  height:18px;
  flex:0 0 auto;
  display:block;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, rgba(22,163,74,1), rgba(34,197,94,.95));
  border-color: rgba(22,163,74,.28);
  color:#ffffff;
  box-shadow: 0 14px 30px rgba(22,163,74,.20);
}
.btn-primary:hover{box-shadow: 0 18px 40px rgba(22,163,74,.28)}
.btn-accent{
  background: rgba(7, 124, 58, .98);
  border-color: rgba(7, 124, 58, 1);
  color:#ffffff;
}
.btn-accent:hover{
  background: rgba(6, 108, 51, .98);
  border-color: rgba(6, 108, 51, 1);
}
.btn-ghost{
  background: rgba(255,255,255,.74);
  border-color: rgba(22,163,74,.20);
  color: var(--accent);
}
.btn-ghost:hover{
  background: rgba(34,197,94,.10);
  border-color: rgba(22,163,74,.35);
}
.full{width:100%}

.menu-toggle{
  display:none;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(22,163,74,.20);
  border-radius:14px;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color: var(--accent);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.menu-icon{
  width:20px;
  height:20px;
  flex:0 0 auto;
  display:block;
}
.menu-toggle:hover{
  background: rgba(255,255,255,.95);
  border-color: rgba(22,163,74,.35);
  transform: translateY(-1px);
}
.menu-toggle:active{
  transform: translateY(0px);
}
.mobile-nav{
  display:none;
  border-top: 1px solid rgba(22,163,74,.18);
  padding:14px 18px 18px;
  background: rgba(255,255,255,.95);
}
.mobile-nav .nav-link{
  display:flex;
  align-items:center;
  padding:14px 12px;
  margin:2px 0;
  min-height: 44px;
}
.mobile-nav .btn{margin-top:10px}

.hero{
  position:relative;
  overflow:hidden;
  padding:0;
}
.hero-bg{
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(34,197,94,.22), transparent 60%),
    radial-gradient(700px 420px at 0% 70%, rgba(22,163,74,.12), transparent 58%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  width:100%;
  padding:0;
}

.hero-carousel{
  position:relative;
  width:100%;
  border-radius: 0;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(22,163,74,.22);
  background: rgba(255,255,255,.04);
  height: 700px;
  min-height: 700px;
}

@media (max-width: 900px){
  .hero-title{ white-space: normal; }
}
@media (max-width: 768px){
  .hero-carousel{
    height: min(600px, 70vh);
    min-height: min(520px, 65vh);
  }
  .hero-content{
    padding: clamp(22px, 6vw, 40px) clamp(14px, 4vw, 24px);
  }
  .hero-subtitle{
    font-size: clamp(14px, 3.6vw, 16px);
    max-width: 100%;
  }
}
@media (max-width: 520px){
  .hero-inner{padding:0;}
  .hero-carousel{
    height: min(540px, 62vh);
    min-height: min(480px, 58vh);
  }
}

.hero-slides{
  display:flex;
  width:100%;
  height:100%;
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
}

.hero-slide{
  flex:0 0 100%;
  background-size: cover;
  background-position: center;
  position:relative;
  transform: scale(1.08);
  will-change: transform;
}
.hero-slide.is-active{
  animation: heroZoom 6000ms ease-in-out both;
}

@keyframes heroZoom{
  0%{transform: scale(1.06);}
  45%{transform: scale(1.22);}
  100%{transform: scale(1.10);}
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(6,95,70,.86) 0%, rgba(34,197,94,.35) 60%, rgba(34,197,94,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.42) 100%);
  opacity:1;
}
.hero-content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 44px 28px;
  max-width: 700px;
  z-index:3;
  background: transparent;
  border:none;
  margin: 0 auto;
  text-align:center;
  align-items:center;
}
.hero-kicker{
  color: rgba(255,255,255,.98);
  font-weight:800;
  letter-spacing:.3px;
  margin:0 0 16px;
  text-transform:uppercase;
  font-size: 13px;
  text-decoration:none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,.16);
  border:1px solid rgba(34,197,94,.40);
  box-shadow: 0 12px 28px rgba(34,197,94,.14);
  position: relative;
}
.hero-title{
  margin:0 0 12px;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height:1.05;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 22px rgba(0,0,0,.28);
  position: relative;
  padding-bottom: 18px;
  text-transform: uppercase;
  color: rgba(255,255,255,.98);
  white-space: normal;
}

/* Keep hero headings on one line for wide desktop only */
@media (min-width: 1100px){
  .hero-title{ white-space: nowrap; }
}

/* New heading style: subtle gradient text (falls back to solid if not supported) */
@supports (-webkit-background-clip: text){
  .hero-title{
    /* Force solid white for the latest request */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: rgba(255,255,255,.98);
  }
}
.hero-title::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 6px;
  width: 110px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34,197,94,1), rgba(16,185,129,.35));
  opacity:.95;
  transform-origin: center;
}
.hero-slide.is-active .hero-title::after{
  animation: heroTitleLine 900ms ease-out both;
}

@keyframes heroTitleLine{
  0%{transform: translateX(-50%) scaleX(.2); opacity:.2;}
  55%{transform: translateX(-50%) scaleX(1); opacity:1;}
  100%{transform: translateX(-50%) scaleX(1); opacity:.95;}
}

.hero-slide.is-active .hero-kicker{
  animation: heroKickerPop 900ms ease-out both;
}

.hero-slide.is-active .hero-subtitle{
  animation: heroSubtitleIn 900ms ease-out both;
}

@keyframes heroKickerPop{
  0%{transform: translateY(8px) scale(.98); opacity:0}
  60%{transform: translateY(0) scale(1.02); opacity:1}
  100%{transform: translateY(0) scale(1); opacity:1}
}

@keyframes heroSubtitleIn{
  0%{transform: translateY(10px); opacity:0}
  60%{transform: translateY(0); opacity:1}
  100%{transform: translateY(0); opacity:1}
}
.hero-subtitle{
  margin:0 0 20px;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  max-width: 60ch;
  text-align:center;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.hero-cta{
  justify-content:center;
}
.hero-btn-icon{
  width:20px;
  height:20px;
  flex:0 0 auto;
}

/* Latest hover animation for hero CTAs */
.hero-cta .btn{
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.hero-cta .btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.45) 38%,
    rgba(255,255,255,.10) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .65s ease;
  pointer-events:none;
  opacity:.65;
  z-index:0;
}
.hero-cta .btn > *{
  position: relative;
  z-index:1;
}
.hero-cta .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(34,197,94,.20);
}
.hero-cta .btn:hover::after{
  transform: translateX(120%);
}
.hero-cta .btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(34,197,94,.22), 0 18px 46px rgba(34,197,94,.16);
}

.carousel-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:46px;
  height:46px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(6,95,70,.35);
  color: rgba(255,255,255,.95);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.carousel-btn:hover{
  background: rgba(6,95,70,.55);
  border-color: rgba(34,197,94,.35);
}
.carousel-btn:active{transform: translateY(-50%) scale(.98)}
.carousel-btn span{font-size:22px; font-weight:900; line-height:1}
.prev{left:16px}
.next{right:16px}

.carousel-dots{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display:flex;
  gap:10px;
  z-index:10;
  padding: 0 12px;
}
.dot-btn{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  cursor:pointer;
  transition: width .2s ease, background .2s ease, border-color .2s ease;
}
.dot-btn[aria-current="true"]{
  width:26px;
  background: rgba(34,197,94,.95);
  border-color: rgba(34,197,94,.95);
}

.section{
  padding:64px 0;
}
.section-why{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(22,163,74,.12);
  border-bottom:1px solid rgba(22,163,74,.12);
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(34,197,94,.14), transparent 55%),
    radial-gradient(900px 480px at 92% 0%, rgba(16,185,129,.10), transparent 50%),
    linear-gradient(180deg, rgba(248,250,252,.98), rgba(255,255,255,.96));
}
.why-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 1px 1px, rgba(22,163,74,.06) 1px, transparent 1px) 0 0/28px 28px;
  opacity:.55;
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}
.why-shell{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 48px);
  align-items:start;
}
.why-intro{
  position:sticky;
  top: 108px;
}
.why-kicker{
  margin:0 0 10px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(22,163,74,.95);
}
.why-intro .section-title{
  margin-bottom:12px;
}
.why-intro .section-title::after{
  content:"";
  display:block;
  width:56px;
  height:3px;
  margin-top:14px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(22,163,74,1), rgba(16,185,129,.4));
}
.why-intro .section-lead{
  max-width: 42ch;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height:1.6;
}
.why-pills{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.why-pill{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.82);
  border:1px solid rgba(22,163,74,.16);
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  min-width: min(100%, 150px);
}
.why-pill-value{
  font-size:20px;
  font-weight:900;
  letter-spacing:-0.02em;
  color: rgba(15,23,42,.98);
  line-height:1.1;
}
.why-pill-label{
  font-size:12px;
  font-weight:700;
  color: var(--muted);
  line-height:1.35;
}
.why-grid{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
.why-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 16px 16px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  border:1px solid rgba(22,163,74,.14);
  box-shadow: 0 12px 34px rgba(15,23,42,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.why-card:hover{
  transform: translateY(-3px);
  border-color: rgba(34,197,94,.32);
  box-shadow: 0 18px 46px rgba(15,23,42,.10);
}
.why-card-icon{
  flex:0 0 auto;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color: rgba(22,163,74,.98);
  background: linear-gradient(145deg, rgba(34,197,94,.16), rgba(34,197,94,.06));
  border:1px solid rgba(34,197,94,.22);
}
.why-card-icon svg{
  width:22px;
  height:22px;
  display:block;
}
.why-card-text{
  margin:0;
  font-size:14px;
  font-weight:600;
  line-height:1.55;
  color: rgba(15,23,42,.92);
}
.section-header{
  margin-bottom:28px;
}
.section-title{
  margin:0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.015em;
}
.section-lead{
  margin:0;
  color: var(--muted);
  max-width: 75ch;
}

.row-between{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.card{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(22,163,74,.18);
  border-radius: var(--radius);
  padding:20px;
}
.card h3{
  margin:0 0 10px;
  color: rgba(15,23,42,.96);
  font-size: 16px;
  letter-spacing:.2px;
}
.card p{margin:0;color:var(--muted)}

/* About section (image + modern hover cards) */
.about-layout{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap:24px;
  align-items:stretch;
}

.about-media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(22,163,74,.18);
  background: rgba(255,255,255,.9);
  min-height: 420px;
}
.about-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.about-media-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(22,163,74,.18) 0%, rgba(0,0,0,.25) 100%);
  pointer-events:none;
}
.about-media-badge{
  position:absolute;
  left:18px;
  bottom:18px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(22,163,74,.20);
  border-radius: 20px;
  padding:14px 16px;
  box-shadow: 0 18px 50px rgba(15,23,42,.16);
}
.badge-top{
  font-weight: 950;
  color: rgba(15,23,42,.95);
}
.badge-sub{
  margin-top:6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.about-media:hover img{
  transform: scale(1.08);
}
.about-media:hover .about-media-overlay{
  background: linear-gradient(180deg, rgba(22,163,74,.26) 0%, rgba(0,0,0,.30) 100%);
}

.about-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-content:start;
}

.about-card{
  position:relative;
  overflow:hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}
.about-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 160px at 20% 0%, rgba(34,197,94,.22), transparent 60%);
  opacity:0;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events:none;
}
.about-card::after{
  content:"";
  position:absolute;
  left:-40%;
  top: -10%;
  width:80%;
  height:60%;
  background: linear-gradient(120deg, transparent 0%, rgba(34,197,94,.22) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease, opacity .3s ease;
  opacity:.7;
  pointer-events:none;
}
.about-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(15,23,42,.14);
  border-color: rgba(22,163,74,.35);
}
.about-card:hover::before{
  opacity:1;
  transform: translateY(0);
}
.about-card:hover::after{
  transform: translateX(130%);
}

.about-card-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top: 14px;
  font-weight: 950;
  color: rgba(22,163,74,.98);
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(22,163,74,.18);
  background: rgba(22,163,74,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.about-card p{flex:1}
.about-card-link-icon{
  width:18px;
  height:18px;
  display:block;
  flex:0 0 auto;
  transition: transform .18s ease;
}
.about-card-link:hover .about-card-link-icon{
  transform: translateX(4px);
}
.about-card-link::after{
  content:"";
}
.about-card-link:hover{
  transform: translateY(-2px);
  background: rgba(22,163,74,.12);
  border-color: rgba(22,163,74,.28);
  box-shadow: 0 18px 40px rgba(22,163,74,.16);
}
.about-card-link:hover::after{
  transform: none;
}

.about-cta-row{
  margin-top: 6px;
}
.about-cta{
  width: 100%;
}

.about-cta{
  position:relative;
  overflow:hidden;
}
.about-cta > *{
  position:relative;
  z-index:1;
}
.about-cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 40%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s ease;
  opacity:.55;
  pointer-events:none;
}
.about-cta:hover::before{
  transform: translateX(120%);
}
.about-cta-icon{
  width:20px;
  height:20px;
  display:block;
  flex:0 0 auto;
  margin-right:10px;
}

/* Modern header styling for About section */
.about-section .section-header{
  margin-bottom: 34px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.about-section .section-lead{
  color: rgba(71,85,105,.96);
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}
.about-section .section-title{
  font-size: clamp(24px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
}
.about-section .section-title::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:-10px;
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22,163,74,1), rgba(16,185,129,.35));
}

.about-section .section-header::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 0;
  background: none;
  pointer-events:none;
}

.carousel-card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(34,197,94,.22);
  border-radius: var(--radius);
  padding: 16px;
}

/* Full background for Products section */
#products{
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 1px) 0 0/18px 18px,
    linear-gradient(180deg, rgba(6,95,70,.98), rgba(4,70,49,.98));
  border-top:1px solid rgba(34,197,94,.18);
  border-bottom:1px solid rgba(34,197,94,.18);
}

#products .section-title{
  color: rgba(255,255,255,.98);
}

#products .section-lead{
  color: rgba(255,255,255,.86);
}

#products .btn-ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
}

#products .btn-ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(34,197,94,.35);
}

/* Product section: 1 row, 3 columns (desktop view) */
#products .carousel-track{
  gap:18px;
  padding: 14px 44px;
}

#products .product{
  flex: 0 0 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
  height: 340px;
  border-radius: 18px;
  display:flex;
  flex-direction:column;
}

#products .product-card-link{
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
}

#products .product-card-link:focus-visible{
  outline: 2px solid rgba(187,247,208,.95);
  outline-offset: 2px;
}

#products .product-card-link img{
  height: 245px;
  flex: 0 0 auto;
}

#products .product-meta{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  padding: 14px 16px;
  background: rgba(255,255,255,.96);
  border-top:1px solid rgba(22,163,74,.14);
  margin-top: auto;
  text-align:left;
}

#products .product-meta p{
  color: rgba(15,23,42,.72);
}

#products .product:hover .product-meta{
  transform: none;
}

.product-carousel{
  position:relative;
}

.carousel-track{
  display:flex;
  gap:14px;
  padding: 18px 54px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar{display:none}

.product{
  position:relative;
  flex: 0 0 290px;
  height: 285px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.90);
  border:1px solid rgba(22,163,74,.16);
  border-radius: var(--radius-sm);
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.product:focus-within{
  outline: none;
  box-shadow: 0 0 0 4px rgba(22,163,74,.16), 0 26px 70px rgba(15,23,42,.14);
}
.product:hover{
  transform: translateY(-6px);
  border-color: rgba(22,163,74,.35);
  box-shadow: 0 26px 70px rgba(15,23,42,.14);
}
.product::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 180px at 20% 0%, rgba(34,197,94,.22), transparent 60%);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.product:hover::before{
  opacity:1;
}
.product-card-link img{
  height: 190px;
  width:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .65s ease;
}
.product:hover .product-card-link img{
  transform: scale(1.08);
}
.product-meta{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:14px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.92) 40%, rgba(255,255,255,.96) 100%);
  border-top:1px solid rgba(22,163,74,.14);
  transform: translateY(18px);
  transition: transform .25s ease;
}
.product-meta h3{
  margin:0 0 6px;
  font-size: 16px;
  letter-spacing:.1px;
}
.product-meta p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}
.product:hover .product-meta{
  transform: translateY(0);
}

/* CTA band — same surface treatment as #products */
.section-pipe-cta{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 1px) 0 0/18px 18px,
    linear-gradient(180deg, rgba(6,95,70,.98), rgba(4,70,49,.98));
  border-top:1px solid rgba(34,197,94,.18);
  border-bottom:1px solid rgba(34,197,94,.18);
}
.section-pipe-cta::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(900px 420px at 18% 0%, rgba(34,197,94,.22), transparent 55%);
  opacity:.9;
}
.pipe-cta-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items:center;
}
.pipe-cta-copy{
  min-width:0;
  width:100%;
}
.pipe-cta-kicker{
  margin:0 0 12px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(187,247,208,.92);
}
.pipe-cta-title{
  margin:0 0 16px;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight:900;
  letter-spacing:-0.03em;
  line-height:1.15;
  color: rgba(255,255,255,.98);
}
.pipe-cta-text{
  margin:0;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height:1.65;
  color: rgba(255,255,255,.82);
}
.pipe-cta-aside{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  min-height: 140px;
}
.pipe-cta-actions{
  margin:0;
  position:relative;
  z-index:1;
}
.btn-cta-modern{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 28px 15px 30px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,253,244,.94));
  color: rgba(4,70,49,.98);
  font-weight:900;
  font-size:15px;
  letter-spacing:.02em;
  box-shadow:
    0 0 0 1px rgba(34,197,94,.25),
    0 14px 36px rgba(0,0,0,.18),
    0 0 48px rgba(34,197,94,.28);
  overflow:hidden;
  isolation:isolate;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.btn-cta-modern:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.45);
  box-shadow:
    0 0 0 1px rgba(34,197,94,.4),
    0 20px 48px rgba(0,0,0,.22),
    0 0 64px rgba(74,222,128,.35);
  color: rgba(6,95,70,1);
}
.btn-cta-modern:active{
  transform: translateY(0);
}
.btn-cta-modern-label{
  position:relative;
  z-index:1;
}
.btn-cta-modern-icon{
  position:relative;
  z-index:1;
  width:20px;
  height:20px;
  flex:0 0 auto;
  transition: transform .25s ease;
}
.btn-cta-modern:hover .btn-cta-modern-icon{
  transform: translateX(4px);
}
.btn-cta-modern-glow{
  position:absolute;
  inset:-40%;
  background: conic-gradient(from 120deg, rgba(34,197,94,.35), transparent 40%, rgba(187,247,208,.25), transparent 75%);
  opacity:.55;
  animation: cta-shimmer 7s linear infinite;
  z-index:0;
}
@keyframes cta-shimmer{
  to{ transform: rotate(360deg); }
}
.pipe-cta-deco{
  position:absolute;
  right:-40px;
  bottom:-50px;
  width:200px;
  height:200px;
  pointer-events:none;
  opacity:.35;
}
.pipe-cta-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
}
.pipe-cta-ring--2{
  inset:22px;
  border-color: rgba(34,197,94,.35);
  opacity:.8;
}

/* Inner pages (shared layout) */
.inner-page .nav-link.is-active{
  color: rgba(22,163,74,.98);
  font-weight: 900;
}
.inner-page .mobile-nav .nav-link.is-active{
  color: rgba(22,163,74,.98);
  font-weight: 900;
}
.breadcrumb-bar{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(120px, 22vw, 200px);
  padding: 36px 0;
  border-bottom: 1px solid rgba(34,197,94,.28);
  background-color: #0b1220;
}
.breadcrumb-bar::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumb-bar::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6,95,70,.88) 0%, rgba(15,23,42,.82) 48%, rgba(4,70,49,.78) 100%);
}
.breadcrumb-bar .container{
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.breadcrumb{
  margin: 0;
  display: flex;
  justify-content: center;
}
.breadcrumb-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 6px;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  color: rgba(226,232,240,.82);
}
.breadcrumb-list li{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-list li:not(:last-child)::after{
  content:"/";
  margin-left: 8px;
  color: rgba(255,255,255,.38);
  font-weight: 600;
  pointer-events: none;
}
.breadcrumb-list a{
  color: rgba(187,247,208,.98);
  text-decoration: none;
  transition: color .15s ease, text-decoration-color .15s ease;
  text-underline-offset: 4px;
}
.breadcrumb-list a:hover{
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(74,222,128,.85);
}
.breadcrumb-current{
  color: rgba(255,255,255,.96);
  font-weight: 800;
}
.page-hero{
  padding: 40px 0 32px;
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(34,197,94,.10), transparent 55%),
    linear-gradient(180deg, rgba(248,250,252,.98), #ffffff);
  border-bottom: 1px solid rgba(22,163,74,.12);
}
.page-hero .page-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(22,163,74,.95);
}
.page-hero h1{
  margin: 0 0 14px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(15,23,42,.98);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.page-hero .page-lead{
  margin: 0;
  max-width: 62ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}
.page-manifesto{
  margin: 0 0 18px;
  max-width: 56ch;
  font-size: clamp(12px, 1.45vw, 14px);
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(22,163,74,.98);
}
.page-profile-title{
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(15,23,42,.88);
}
.page-profile-lead{
  margin: 0;
  max-width: 65ch;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.55;
  font-weight: 700;
  color: rgba(51,65,85,.95);
}
.inner-content{
  padding: 44px 0 72px;
}
.inner-content .inner-wrap{
  max-width: 720px;
}
.inner-wrap--wide{
  max-width: 820px;
}

/* Product specification tables (e.g. carbon steel) */
.product-spec-page.inner-content{
  padding: 40px 0 80px;
}
.product-spec-block{
  margin-bottom: 40px;
}
.product-spec-block:last-of-type{
  margin-bottom: 0;
}
.product-spec-title{
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,23,42,.94);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.product-spec-table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.45);
  background: #fff;
  box-shadow: 0 12px 36px rgba(15,23,42,.06);
}
.product-spec-table{
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}
.product-spec-table th,
.product-spec-table td{
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(203,213,225,.95);
}
.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td{
  border-bottom: none;
}
.product-spec-table th[scope="row"]{
  width: 32%;
  min-width: 140px;
  max-width: 220px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(30,41,59,.95);
  background: rgba(248,250,252,.92);
}
.product-spec-table td{
  color: rgba(71,85,105,.98);
  font-weight: 500;
}
.product-spec-muted{
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(100,116,139,.98);
}
.product-spec-grade-cell{
  padding-top: 18px;
  padding-bottom: 18px;
}
.product-spec-grade-cell p{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 500;
  color: rgba(71,85,105,.98);
}
.product-spec-grade-cell p:last-child{
  margin-bottom: 0;
}
.product-spec-grade-cell strong{
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15,23,42,.9);
}
.product-spec-footnote{
  margin: 32px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(71,85,105,.96);
  max-width: 52ch;
}
.product-spec-footnote a{
  color: rgba(22,163,74,.98);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(34,197,94,.35);
}
.product-spec-footnote a:hover{
  color: rgba(21,128,61,1);
}
@media (max-width: 600px){
  .product-spec-table th[scope="row"]{
    width: 38%;
    min-width: 120px;
    padding: 14px 12px;
    font-size: 11px;
  }
  .product-spec-table td{
    padding: 14px 12px;
    font-size: 14px;
  }
}
.inner-prose{
  color: rgba(51,65,85,.96);
  font-size: 16px;
  line-height: 1.65;
}
.inner-prose p{
  margin: 0 0 1.1em;
}
.inner-prose p:last-child{
  margin-bottom: 0;
}
.inner-prose h2{
  margin: 1.6em 0 0.6em;
  font-size: 18px;
  font-weight: 900;
  color: rgba(15,23,42,.96);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.inner-prose h2:first-child{
  margin-top: 0;
}
.inner-prose h3{
  margin: 1.15em 0 0.45em;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(22,163,74,.96);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.inner-prose h3:first-child{
  margin-top: 0;
}
.inner-prose ul{
  margin: 0 0 1.1em;
  padding-left: 1.25em;
}
.inner-prose li{
  margin: 0.35em 0;
}
.inner-prose--caps h2{
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(15,23,42,.9);
  margin-top: 2.25em;
}
.inner-prose--caps h2:first-child{
  margin-top: 0;
}
.inner-actions{
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* About page — modern story + product grid */
.about-modern.inner-content{
  padding: 52px 0 84px;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(34,197,94,.06), transparent 50%),
    radial-gradient(700px 360px at 92% 20%, rgba(22,163,74,.05), transparent 45%),
    linear-gradient(180deg, rgba(248,250,252,.5), #ffffff);
}
.about-modern .page-hero--in-about{
  background: none;
  border-bottom: 1px solid rgba(22,163,74,.12);
  padding: 0 0 32px;
  margin: 0 0 40px;
}
.about-intro{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-bottom: 48px;
}
.about-intro-media{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(22,163,74,.16);
  box-shadow: 0 22px 50px rgba(15,23,42,.12);
  background: rgba(15,23,42,.06);
}
.about-intro-media img{
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-intro-media:hover img{
  transform: scale(1.05);
}
.about-intro-media-shine{
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}
.about-intro-media:hover .about-intro-media-shine{
  opacity: 1;
  animation: about-shine-slide 0.85s ease forwards;
}
@keyframes about-shine-slide{
  from{ transform: translateX(-100%); }
  to{ transform: translateX(100%); }
}
.about-intro-pill{
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22,163,74,.98);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.about-intro-body{
  padding: 6px 0;
}
.about-intro-icon{
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(22,163,74,.98);
  background: linear-gradient(145deg, rgba(34,197,94,.14), rgba(34,197,94,.05));
  border: 1px solid rgba(34,197,94,.22);
  box-shadow: 0 12px 28px rgba(22,163,74,.1);
}
.about-intro-icon svg{
  width: 28px;
  height: 28px;
}
.about-block-title{
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,23,42,.92);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.about-block-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(51,65,85,.96);
}
.about-features{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 52px;
}
.about-feature-card{
  padding: 24px 22px 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(22,163,74,.14);
  box-shadow: 0 14px 38px rgba(15,23,42,.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-feature-card:hover{
  transform: translateY(-6px);
  border-color: rgba(34,197,94,.32);
  box-shadow: 0 24px 52px rgba(15,23,42,.11);
}
.about-feature-card--wide{
  grid-column: 1 / -1;
}
.about-feature-icon{
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(22,163,74,1), rgba(34,197,94,.92));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 12px 28px rgba(22,163,74,.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-feature-card:hover .about-feature-icon{
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 16px 34px rgba(22,163,74,.32);
}
.about-feature-icon svg{
  width: 24px;
  height: 24px;
}
.about-feature-title{
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15,23,42,.94);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.about-feature-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(71,85,105,.96);
}
.about-range-head{
  text-align: center;
  margin: 12px 0 28px;
}
.about-range-kicker{
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22,163,74,.95);
}
.about-range-title{
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.96);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.about-product-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about-product-tile{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(22,163,74,.14);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15,23,42,.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.about-product-tile:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15,23,42,.13);
}
.about-product-visual{
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: rgba(15,23,42,.08);
}
.about-product-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-product-tile:hover .about-product-visual img{
  transform: scale(1.08);
}
.about-product-visual-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,23,42,.58) 100%);
  pointer-events: none;
}
.about-product-icon{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(22,163,74,1);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  transition: transform 0.3s ease;
}
.about-product-icon svg{
  width: 22px;
  height: 22px;
}
.about-product-tile:hover .about-product-icon{
  transform: scale(1.08) rotate(-5deg);
}
.about-product-body{
  padding: 18px 20px 22px;
}
.about-product-name{
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15,23,42,.95);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.about-product-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(71,85,105,.96);
}

/* About — customers / we care */
.about-customers{
  margin-top: clamp(40px, 8vw, 64px);
  padding-top: clamp(36px, 6vw, 52px);
  border-top: 1px solid rgba(22,163,74,.14);
}
.about-customers-title{
  margin: 0 auto clamp(24px, 4vw, 36px);
  max-width: 38ch;
  font-size: clamp(17px, 2.35vw, 24px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  color: rgba(30,41,59,.96);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.about-customers-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}
.about-customers-media{
  border: 1px solid rgba(148,163,184,.55);
  border-radius: 18px;
  background: rgba(248,250,252,.94);
  padding: clamp(22px, 4.5vw, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 38px rgba(15,23,42,.07);
}
.about-customers-media img{
  width: 100%;
  max-width: min(100%, clamp(380px, 52vw, 640px));
  height: auto;
  display: block;
}
.about-customers-body p{
  margin: 0 0 1.15em;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.72;
  color: rgba(71,85,105,.97);
}
.about-customers-body p:last-child{
  margin-bottom: 0;
}
.about-customers-body strong{
  color: rgba(30,41,59,.95);
  font-weight: 800;
}

@media (max-width: 900px){
  .about-intro{
    grid-template-columns: 1fr;
  }
  .about-features{
    grid-template-columns: 1fr;
  }
  .about-feature-card--wide{
    grid-column: auto;
  }
  .about-product-grid{
    grid-template-columns: 1fr;
  }
  .about-customers-grid{
    grid-template-columns: 1fr;
  }
  .about-customers-media{
    order: -1;
    max-width: min(680px, 100%);
    margin: 0 auto;
    width: 100%;
  }
  .about-customers-media img{
    max-width: min(100%, 580px);
  }
}

@media (prefers-reduced-motion: reduce){
  .about-intro-media img,
  .about-intro-media:hover img,
  .about-intro-media-shine,
  .about-feature-card,
  .about-feature-card:hover,
  .about-feature-card:hover .about-feature-icon,
  .about-feature-icon,
  .about-product-tile,
  .about-product-tile:hover,
  .about-product-visual img,
  .about-product-tile:hover .about-product-visual img,
  .about-product-icon,
  .about-product-tile:hover .about-product-icon{
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Quality page — split panels + imagery */
.quality-modern.inner-content{
  padding: 52px 0 84px;
  background:
    radial-gradient(820px 400px at 12% 0%, rgba(34,197,94,.07), transparent 52%),
    radial-gradient(640px 340px at 88% 30%, rgba(22,163,74,.05), transparent 48%),
    linear-gradient(180deg, rgba(248,250,252,.55), #ffffff);
}
.quality-panel{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 48px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.quality-panel:last-child{
  margin-bottom: 0;
}
.quality-panel--reverse .quality-panel-media{
  order: 2;
}
.quality-panel--reverse .quality-panel-body{
  order: 1;
}
.quality-panel-media{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(22,163,74,.16);
  box-shadow: 0 22px 50px rgba(15,23,42,.12);
  background: rgba(15,23,42,.06);
}
.quality-panel-media img{
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.quality-panel-media:hover img{
  transform: scale(1.05);
}
.quality-panel-media-shine{
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.26), transparent);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}
.quality-panel-media:hover .quality-panel-media-shine{
  opacity: 1;
  animation: about-shine-slide 0.85s ease forwards;
}
.quality-panel-badge{
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22,163,74,.98);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.quality-panel-body{
  padding: 8px 0;
}
.quality-panel-icon{
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: rgba(22,163,74,.98);
  background: linear-gradient(145deg, rgba(34,197,94,.14), rgba(34,197,94,.05));
  border: 1px solid rgba(34,197,94,.22);
  box-shadow: 0 12px 28px rgba(22,163,74,.1);
}
.quality-panel-icon--alt{
  background: linear-gradient(145deg, rgba(22,163,74,.16), rgba(34,197,94,.06));
}
.quality-panel-icon svg{
  width: 28px;
  height: 28px;
}
.quality-panel-title{
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,23,42,.92);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.quality-panel-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(51,65,85,.96);
}
@media (max-width: 900px){
  .quality-panel{
    grid-template-columns: 1fr;
  }
  .quality-panel--reverse .quality-panel-media,
  .quality-panel--reverse .quality-panel-body{
    order: unset;
  }
}
@media (prefers-reduced-motion: reduce){
  .quality-panel-media img,
  .quality-panel-media:hover img,
  .quality-panel-media-shine{
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Contact page — aside + form */
.contact-modern.inner-content{
  padding: 48px 0 88px;
  background:
    radial-gradient(760px 380px at 6% 12%, rgba(34,197,94,.08), transparent 50%),
    radial-gradient(600px 320px at 94% 0%, rgba(22,163,74,.06), transparent 48%),
    linear-gradient(180deg, rgba(248,250,252,.6), #ffffff);
}
.contact-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-aside-kicker{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22,163,74,.95);
}
.contact-aside-title{
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.96);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.contact-aside-lead{
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(71,85,105,.96);
  max-width: 36ch;
}
.contact-info-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-card{
  display: flex;
  gap: 16px;
  padding: 20px 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(22,163,74,.14);
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.contact-info-card:hover{
  border-color: rgba(34,197,94,.28);
  box-shadow: 0 20px 48px rgba(15,23,42,.1);
  transform: translateY(-2px);
}
.contact-info-icon{
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(22,163,74,1);
  background: linear-gradient(145deg, rgba(34,197,94,.16), rgba(34,197,94,.06));
  border: 1px solid rgba(34,197,94,.22);
  box-shadow: 0 10px 24px rgba(22,163,74,.12);
}
.contact-info-icon svg{
  width: 24px;
  height: 24px;
}
.contact-info-body{
  min-width: 0;
}
.contact-info-label{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(100,116,139,.95);
}
.contact-info-value{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: rgba(15,23,42,.94);
}
.contact-info-value--address{
  font-style: normal;
  font-weight: 600;
  color: rgba(51,65,85,.98);
}
.contact-info-value a{
  color: rgba(22,163,74,.98);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,197,94,.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-info-value a:hover{
  color: rgba(21,128,61,1);
  border-bottom-color: rgba(21,128,61,.5);
}
.contact-form-panel{
  padding: clamp(24px, 4vw, 32px);
  border-radius: 22px;
  border: 1px solid rgba(22,163,74,.14);
  background: #fff;
  box-shadow: 0 24px 56px rgba(15,23,42,.1);
}
.contact-form-title{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,23,42,.92);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial;
}
.contact-form-hint{
  margin: 0 0 22px;
  font-size: 14px;
  color: rgba(100,116,139,.98);
}
.contact-req{
  color: rgba(22,163,74,.95);
  font-weight: 900;
}
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(51,65,85,.95);
}
.contact-input{
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.45;
  color: rgba(15,23,42,.96);
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.55);
  background: rgba(248,250,252,.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-input:hover{
  border-color: rgba(34,197,94,.35);
}
.contact-input:focus{
  outline: none;
  border-color: rgba(22,163,74,.65);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
}
.contact-textarea{
  min-height: 140px;
  resize: vertical;
}
.contact-submit{
  margin-top: 4px;
  align-self: flex-start;
  padding-left: 28px;
  padding-right: 28px;
}
.contact-form-note{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(100,116,139,.98);
}
.contact-form-note strong{
  color: rgba(15,23,42,.88);
  font-weight: 800;
}
@media (max-width: 960px){
  .contact-layout{
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce){
  .contact-info-card,
  .contact-info-card:hover{
    transition: none;
    transform: none;
  }
}

.site-footer{
  margin-top: 0;
  padding: 0;
  background: #ffffff;
  color: var(--text);
  border-top: 1px solid rgba(22,163,74,.16);
}
.footer-inner{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  padding-top: 48px;
  padding-bottom: 40px;
}
.footer-brand{
  padding-right: clamp(0px, 3vw, 16px);
}
.footer-brand-link{
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 10px;
  outline-offset: 3px;
}
.footer-brand-link:focus-visible{
  outline: 2px solid rgba(22,163,74,.55);
}
.footer-logo{
  height: 60px;
  width: auto;
  display: block;
}
.footer-tag{
  margin: 0;
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

.footer-cols{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 4vw, 40px);
  row-gap: 8px;
  align-items: start;
}
.footer-col{
  min-width: 0;
}
.footer-heading{
  margin: 0 0 12px;
  padding: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(22,163,74,.98);
  line-height: 1.2;
}
.footer-col a:not(.social-link){
  display: block;
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(51,65,85,.95);
  transition: color .2s ease, transform .2s ease;
}
.footer-col a:not(.social-link):hover{
  color: rgba(22,163,74,.98);
  transform: translateX(2px);
}
.footer-col-social .footer-heading{
  margin-bottom: 14px;
}
.social-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: rgba(22,163,74,.95);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(22,163,74,.16);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.social-link:hover{
  background: rgba(34,197,94,.08);
  border-color: rgba(22,163,74,.38);
  color: rgba(21,128,61,1);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15,23,42,.08);
}
.social-link svg{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer-small{
  margin: 16px 0 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 34ch;
}

.footer-bottom{
  margin: 0;
  border-top: 1px solid rgba(22,163,74,.12);
  padding: 18px 0 max(32px, env(safe-area-inset-bottom, 0px));
  color: var(--muted);
  font-size: 14px;
}
.footer-copy{
  margin: 0;
  font-weight: 600;
  letter-spacing: .01em;
}

@media (max-width: 1100px){
  .nav{display:none}
  .menu-toggle{display:inline-flex}
  .mobile-nav[data-mobile-nav]{
    display:block;
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition: max-height .3s ease, opacity .25s ease;
    border-top: 1px solid rgba(22,163,74,.18);
  }
  .mobile-nav{
    background: rgba(255,255,255,.95);
  }
  .header-actions .btn-accent{display:none}
  .mobile-nav.is-open{display:block}
  .mobile-nav.is-open{
    max-height: min(85vh, 720px);
    opacity:1;
    padding-bottom: 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .grid-2{grid-template-columns: 1fr}
  .why-shell{
    grid-template-columns: 1fr;
  }
  .why-intro{
    position:static;
  }
  .why-grid{
    grid-template-columns: 1fr;
  }
  .pipe-cta-grid{
    grid-template-columns: 1fr;
  }
  .pipe-cta-aside{
    align-items:stretch;
    min-height:0;
  }
  .pipe-cta-deco{
    right:-24px;
    bottom:-36px;
    opacity:.22;
  }
  .btn-cta-modern{
    width:100%;
    justify-content:center;
  }
  .footer-inner{
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 32px;
    gap: 28px;
  }
  .footer-brand{
    padding-right: 0;
  }
  .footer-cols{
    grid-template-columns: 1fr;
    row-gap: 22px;
    column-gap: 0;
  }
  .footer-bottom{
    padding: 16px 0 max(28px, env(safe-area-inset-bottom, 0px));
  }
  .carousel-btn.prev{left:10px}
  .carousel-btn.next{right:10px}

  .about-layout{
    grid-template-columns: 1fr;
    gap:16px;
  }
  .about-media{
    min-height: 320px;
  }

  #products .product{
    flex-basis: 270px;
    height: 295px;
    max-width: 270px;
  }
  #products .product-card-link img{
    height: 205px;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-slides{transition:none}
  .product{transition:none}
  .nav-link{transition:none}
  .hero-slide.is-active{animation:none}
  .why-card{transition:none}
  .why-card:hover{transform:none}
  .btn-cta-modern-glow{animation:none}
  .btn-cta-modern,
  .btn-cta-modern:hover,
  .btn-cta-modern:active{transform:none}
  .btn-cta-modern:hover .btn-cta-modern-icon{transform:none}
  .footer-col a:not(.social-link):hover,
  .social-link,
  .social-link:hover{transform:none}
}

/* ---- Tablet & phone: rhythm, carousels, forms, spec tables ---- */
@media (max-width: 900px){
  .topbar-inner{
    height: auto;
    min-height: 40px;
    padding: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
  }
  .topbar-item{
    font-size: clamp(11px, 2.8vw, 13px);
  }
}

@media (max-width: 560px){
  .topbar-divider{
    display: none;
  }
  .header-inner{
    height: auto;
    min-height: 72px;
    padding: 10px 0;
    gap: 10px;
  }
  .brand-logo{
    height: clamp(40px, 11vw, 52px);
  }
}

@media (max-width: 768px){
  .section{
    padding: clamp(40px, 10vw, 56px) 0;
  }
  .section-header.row-between{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .breadcrumb-bar{
    min-height: clamp(96px, 26vw, 180px);
    padding: clamp(20px, 5vw, 32px) 0;
  }
  .page-hero{
    padding: clamp(22px, 5vw, 32px) 0 clamp(18px, 4vw, 26px);
  }
  .page-hero .page-lead{
    max-width: none;
  }
  .inner-content{
    padding-top: clamp(26px, 6vw, 44px);
    padding-bottom: clamp(44px, 11vw, 72px);
  }
  .product-spec-page.inner-content{
    padding-top: clamp(24px, 6vw, 40px);
    padding-bottom: clamp(36px, 9vw, 64px);
  }
  .product-spec-block{
    margin-bottom: clamp(24px, 6vw, 40px);
  }
  .contact-modern.inner-content{
    padding-top: clamp(32px, 8vw, 48px);
    padding-bottom: clamp(56px, 12vw, 88px);
  }
  .quality-modern.inner-content{
    padding-top: clamp(40px, 9vw, 52px);
    padding-bottom: clamp(56px, 12vw, 84px);
  }
  .about-modern.inner-content{
    padding-top: clamp(40px, 9vw, 52px);
    padding-bottom: clamp(56px, 12vw, 84px);
  }
  #products .carousel-track,
  .carousel-track{
    padding-left: clamp(10px, 3vw, 40px);
    padding-right: clamp(10px, 3vw, 40px);
  }
  .pipe-cta-title{
    font-size: clamp(20px, 5vw, 28px);
  }
  .contact-submit{
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-self: stretch;
  }
  .product-spec-grade-cell p{
    font-size: 13px;
  }
}

@media (max-width: 480px){
  .product-spec-table{
    min-width: min(100%, 340px);
    font-size: 13px;
    line-height: 1.5;
  }
  .product-spec-table th,
  .product-spec-table td{
    padding: 12px 10px;
  }
  .hero-cta{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn{
    width: 100%;
    justify-content: center;
  }
  .carousel-btn{
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 901px) and (max-width: 1199px){
  .nav-link{
    padding: 10px 8px;
    font-size: 12px;
  }
}
