*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #F9F8F5;
  --white:  #FFFFFF;
  --ink:    #0d5c23;
  --ink2:   #1a7a35;
  --mid:    #706E68;
  --dim:    #A8A69F;
  --line:   rgba(13,92,35,0.1);
  --line2:  rgba(13,92,35,0.06);
  --green:  #18b039;
  --green2: #138a2d;
  --greenb: #d4f4dd;
  --yellow: #F0C800;
  --font:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: absolute;
  top: 100vh;
  bottom: 0;
  width: 1px;
  background: var(--line);
  z-index: 100;
  pointer-events: none;
}
body::before { left: 80px; }
body::after { right: 80px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; background: transparent; }



/* ─── HERO ─── */
.hero {
  height: 100vh; padding: 80px 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end;
}
.hero-image-side {
  position: absolute;
  right: -100px;
  top: 0;
  bottom: 0;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 1;
}
.hero-image-side img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
  opacity: 0.95;
}
.hero-content {
  position: relative;
  z-index: 2;
}
/* Subtle green glow top-right */
.hero-aura {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(24,176,57,0.09) 0%, transparent 65%);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-aura2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,200,0,0.07) 0%, transparent 70%);
  bottom: 60px; left: 100px; pointer-events: none;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 28px;
}
.hero-eyebrow-line { flex: 1; max-width: 48px; height: 1px; background: var(--green); }

/* Main title */
.hero-h1 {
  font-size: clamp(48px,8vw,120px);
  font-weight: 900; line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 0;
}
.hero-h1 .row { display: flex; align-items: baseline; gap: 24px; }
.hero-h1 .row + .row { margin-top: 4px; }
.hero-h1 .thin { font-weight: 300; color: var(--mid); letter-spacing: -3px; }
.hero-h1 .green { color: var(--green); }
.hero-h1 .outline {
  color: transparent; -webkit-text-stroke: 2px var(--ink);
  letter-spacing: -5px;
}

/* Bottom strip */
.hero-bottom {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  border-top: 1px solid var(--line);
  padding-top: 24px; gap: 0;
}
.hero-bottom-divider { background: var(--line); }
.hero-col { padding: 0 32px; }
.hero-col:first-child { padding-left: 0; }
.hero-col:last-child { padding-right: 0; }
.hero-col-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 10px; }
.hero-col-val { font-size: 14px; font-weight: 500; color: var(--ink2); line-height: 1.6; }
.hero-stat-big { font-size: 40px; font-weight: 900; color: var(--ink); letter-spacing: -1.5px; line-height: 1; }
.hero-stat-big span { color: var(--green); }

/* CTA strip */
.hero-cta-strip {
  margin-top: 24px; display: flex; align-items: center; gap: 16px;
}
.btn-primary {
  padding: 13px 32px; font-size: 14px; font-weight: 700;
  background: var(--green); color: #fff;
  transition: all .18s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--green2); transform: translateY(-1px); }
.btn-text { font-size: 13px; font-weight: 600; color: var(--mid); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.btn-text:hover { color: var(--ink); }

/* ─── MARQUEE ─── */
.mq { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--white); padding: 14px 0; }
.mq-track { display: flex; width: max-content; animation: mq 24s linear infinite; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-i { display: flex; align-items: center; gap: 40px; padding: 0 20px; font-size: 11px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }
.mq-d { width: 4px; height: 4px; background: var(--green); flex-shrink: 0; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.about-img-side { overflow: hidden; border-right: 1px solid var(--line); padding-left: 100px; display: flex; align-items: center; justify-content: center; }
.about-img-side img { max-width: 500px; max-height: 600px; width: auto; height: auto; object-fit: contain; transition: transform .6s ease; }
.about-img-side:hover img { transform: scale(1.03); }
.about-text-side { padding: 64px 100px; display: flex; flex-direction: column; justify-content: center; }
.about-year-big { font-size: 88px; font-weight: 900; letter-spacing: -5px; line-height: 1; color: var(--greenb); -webkit-text-stroke: 2px var(--green); color: transparent; margin-bottom: 24px; }
.about-text-side h2 { font-size: clamp(28px,3.5vw,48px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 18px; }
.about-text-side p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 14px; }

/* ─── SERVICES — LIST STYLE ─── */
.svc-section { border-bottom: 1px solid var(--line); }
.svc-header { padding: 64px 100px 0; display: flex; justify-content: space-between; align-items: flex-end; }
.svc-list { margin-top: 32px; }
.svc-item {
  display: grid; grid-template-columns: 80px 1fr 200px 80px;
  align-items: center; gap: 24px;
  padding: 28px 100px; border-top: 1px solid var(--line);
  transition: background .2s;
  position: relative;
}
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-item:hover { background: var(--white); }
.svc-item:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.svc-item:hover .svc-num { color: var(--green); }
.svc-num { font-size: 13px; font-weight: 700; color: var(--dim); letter-spacing: 1px; }
.svc-name { font-size: clamp(18px,2.5vw,32px); font-weight: 800; letter-spacing: -0.8px; transition: color .2s; }
.svc-item:hover .svc-name { color: var(--green); }
.svc-tag-pill { background: var(--greenb); border: 1px solid rgba(74,181,25,0.2); color: var(--green); font-size: 12px; font-weight: 600; padding: 5px 14px; width: fit-content; }
.svc-arrow { font-size: 22px; color: var(--green); opacity: 0; transform: translateX(-8px); transition: all .25s; text-align: right; }
.svc-item-img { position: absolute; right: 120px; top: 50%; transform: translateY(-50%); width: 120px; height: 80px; overflow: hidden; opacity: 0; transition: opacity .25s; pointer-events: none; }
.svc-item:hover .svc-item-img { opacity: 1; }
.svc-item-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── STATS FULL-BLEED GREEN ─── */
.stats-green {
  background: linear-gradient(135deg, #0d5c23 0%, #18b039 50%, #0d5c23 100%);
  padding: 72px 100px;
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid #0a4a1c;
  position: relative; overflow: hidden;
}
.stats-green::before {
  content: 'gecko'; position: absolute;
  font-size: 240px; font-weight: 900; letter-spacing: -10px;
  color: rgba(255,255,255,0.06); bottom: -40px; right: -20px; line-height: 1;
  pointer-events: none; user-select: none;
}
.stat-g-item { border-right: 1px solid rgba(255,255,255,0.2); padding: 0 100px; }
.stat-g-item:first-child { padding-left: 0; }
.stat-g-item:last-child { border-right: none; }
.stat-g-num { font-size: clamp(52px,7vw,96px); font-weight: 900; color: #fff; letter-spacing: -4px; line-height: 1; }
.stat-g-num sub { font-size: 40%; color: rgba(255,255,255,0.7); vertical-align: baseline; }
.stat-g-lbl { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ─── WHY BENTO ─── */
.why-section { border-bottom: 1px solid var(--line); }
.why-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.why-bento-header {
  padding: 64px 100px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
}
.why-bento-header h2 {
  font-size: clamp(28px,3.5vw,48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.why-bento-header p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 280px;
}
.why-speedo {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  position: relative;
  overflow: visible;
}
.why-speedo .speedo-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 10;
  pointer-events: none;
}
.why-speedo .speedo-dot-green { background: #10b981; box-shadow: 0 0 8px 2px rgba(16,185,129,0.5); }
.why-speedo .speedo-dot-orange { background: #f97316; box-shadow: 0 0 8px 2px rgba(249,115,22,0.5); }
.why-speedo .speedo-dot-blue { background: #3b82f6; box-shadow: 0 0 8px 2px rgba(59,130,246,0.5); }
@keyframes speedo-float-a {
  0%   { transform: translateY(0px) translateX(0px); opacity: 0.8; }
  25%  { transform: translateY(-14px) translateX(6px); opacity: 1; }
  50%  { transform: translateY(-8px) translateX(12px); opacity: 0.9; }
  75%  { transform: translateY(6px) translateX(5px); opacity: 1; }
  100% { transform: translateY(0px) translateX(0px); opacity: 0.8; }
}
@keyframes speedo-float-b {
  0%   { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.7; }
  33%  { transform: translateY(-18px) translateX(-8px) scale(1.15); opacity: 1; }
  66%  { transform: translateY(10px) translateX(-6px) scale(0.9); opacity: 0.85; }
  100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.7; }
}
@keyframes speedo-float-c {
  0%   { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.75; }
  30%  { transform: translateY(12px) translateX(-10px) rotate(45deg); opacity: 1; }
  60%  { transform: translateY(-10px) translateX(8px) rotate(90deg); opacity: 0.9; }
  100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.75; }
}
.why-bento-emblem {
  width: 72px; height: 72px;
  border: 1.5px solid var(--green);
  background: var(--greenb);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--green);
}
.why-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-right: 100px;
}
.why-card {
  padding: 36px 36px;
  transition: background .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.why-card:nth-child(even) { border-left: 1px solid var(--line); padding-left: 40px; }
.why-card:nth-child(n+3) { border-top: 1px solid var(--line); }
.why-card:hover { background: var(--white); box-shadow: inset 3px 0 0 var(--green); }
.why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.why-icon {
  font-size: 26px;
  color: var(--green);
}
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.why-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}
.why-bento-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-bento-stat strong {
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1.5px;
  line-height: 1;
}
.why-bento-stat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─── CLIENTS ─── */
.clients-sec { padding: 48px 100px; border-bottom: 1px solid var(--line); }
.clients-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--dim); text-align: center; margin-bottom: 28px; }
.clients-scroll { overflow: hidden; position: relative; }
.clients-scroll::before,.clients-scroll::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; }
.clients-scroll::before { left:0; background:linear-gradient(to right,var(--bg),transparent); }
.clients-scroll::after { right:0; background:linear-gradient(to left,var(--bg),transparent); }
.clients-track { display:flex; gap:16px; animation:cl 30s linear infinite; width:max-content; align-items:center; }
@keyframes cl { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.c-logo { display:flex; align-items:center; justify-content:center; flex-shrink:0; padding: 0 24px; }
.c-logo img { height:72px; width:auto; max-width:180px; object-fit:contain; }

/* ─── TESTIMONIALS ─── */
.test-section { 
  border-bottom: 1px solid var(--line); 
  padding: 80px 100px; 
  overflow: hidden;
  position: relative;
  background: url('../images/homepage/hero-bg-new.png') center center / cover no-repeat;
}
.test-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(24,176,57,0.75) 0%, 
    rgba(19,138,45,0.82) 25%,
    rgba(15,110,36,0.88) 50%,
    rgba(19,138,45,0.82) 75%,
    rgba(24,176,57,0.75) 100%
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 1;
}
.test-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.test-header,
.test-stats,
.test-rows {
  position: relative;
  z-index: 2;
}
.test-header .label-green,
.test-header h2 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.test-stat-val {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.test-stat-val span {
  color: #d4f4dd !important;
}
.test-stat-lbl {
  color: rgba(255,255,255,0.85) !important;
}
.test-header { padding: 0; margin-bottom: 56px; }
.test-stats { display: grid; grid-template-columns: repeat(4,1fr); padding: 0; margin-bottom: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.test-stat { padding: 32px 0; display: flex; flex-direction: column; gap: 6px; }
.test-stat:not(:last-child) { border-right: 1px solid var(--line); padding-right: 40px; margin-right: 40px; }
.test-stat-val { font-size: clamp(32px,4vw,52px); font-weight: 900; color: var(--ink); letter-spacing: -2px; line-height: 1; }
.test-stat-val span { color: var(--green); }
.test-stat-lbl { font-size: 12px; color: var(--dim); font-weight: 500; letter-spacing: 0.3px; }
.test-rows { display: flex; flex-direction: column; gap: 12px; padding: 0; overflow: hidden; }
.test-row { display: flex; width: max-content; gap: 12px; }
.test-row-1 { animation: testLeft 50s linear infinite; }
.test-row-2 { animation: testRight 50s linear infinite; }
@keyframes testLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes testRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.test-rows:hover .test-row { animation-play-state: paused; }
.test-card { 
  flex-shrink: 0; 
  width: 360px; 
  padding: 28px 32px; 
  border: 1px solid var(--line); 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  gap: 20px; 
  transition: border-color .2s, background .2s; 
  box-sizing: border-box;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.test-card:hover { 
  border-color: var(--green); 
  background: rgba(255,255,255,0.95); 
}
.test-q { font-size: 14px; color: var(--ink2); line-height: 1.8; }
.test-attr { border-top: 1px solid var(--line); padding-top: 16px; }
.test-nm { font-size: 13px; font-weight: 700; color: var(--ink); }
.test-co { font-size: 11px; color: var(--dim); margin-top: 2px; }

/* ─── FAQ + CONTACT ─── */
.faq-section { border-bottom: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0; }
.faq-pane { padding: 64px 100px; }
.faq-divider { background: var(--line); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { 
  width: 100%; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 20px 0; 
  background: transparent; 
  border: none; 
  color: var(--ink); 
  font-family: var(--font); 
  font-size: 14px; 
  font-weight: 600; 
  text-align: left; 
  gap: 20px;
  transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-q:hover .faq-icon { border-color: var(--green); }
.faq-icon { 
  width: 28px; 
  height: 28px; 
  border: 1.5px solid var(--line); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 16px; 
  color: var(--ink); 
  flex-shrink: 0; 
  transition: all .25s; 
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--green); color: var(--green); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; font-size: 13px; color: var(--mid); line-height: 1.8; padding: 0; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 0 16px; }
/* Contact */
.cform { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.cinput { width: 100%; padding: 12px 14px; background: var(--white); border: 1px solid var(--line); color: var(--ink); font-family: var(--font); font-size: 13px; outline: none; transition: border-color .2s; }
.cinput:focus { border-color: var(--green); }
.cinput::placeholder { color: var(--dim); }
textarea.cinput { resize: none; height: 88px; }
.btn-submit { width: 100%; padding: 13px; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; transition: all .18s; }
.btn-submit:hover { background: var(--green2); }

/* ─── NEWS ─── */
.news-section { border-bottom: 1px solid var(--line); overflow: hidden; padding: 0 100px; }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; padding: 64px 0 0; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 40px; }
.news-card { border-right: 1px solid var(--line); border-top: 1px solid var(--line); transition: background .2s; overflow: hidden; }
.news-card:last-child { border-right: none; }
.news-card:hover { background: var(--white); }
.news-img { width: 100%; height: 200px; overflow: hidden; background: var(--greenb); }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body { padding: 24px 28px 28px; }
.btn-outline { padding: 7px 20px; font-size: 13px; font-weight: 600; background: transparent; color: var(--ink); border: 1px solid var(--line); font-family: var(--font); transition: all .15s; }
.btn-outline:hover { border-color: var(--ink); }
.news-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.news-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
.news-date { font-size: 11px; color: var(--dim); }
.news-title { font-size: 15px; font-weight: 700; line-height: 1.45; color: var(--ink); margin-bottom: 10px; }
.news-excerpt { font-size: 12px; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.news-link { font-size: 12px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 4px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: #141410; padding: 88px 100px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(24,176,57,0.15) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none;
}
.cta-band-title { font-size: clamp(36px,5vw,72px); font-weight: 900; letter-spacing: -2.5px; line-height: 1.05; color: #fff; position: relative; }
.cta-band-title em { font-style: normal; color: var(--green); }
.cta-band-right { display: flex; flex-direction: column; gap: 14px; min-width: 280px; position: relative; }
.cta-band-right p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.cta-info { font-size: 12px; color: rgba(255,255,255,0.35); }
.btn-cta { padding: 14px 32px; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; border: none; transition: all .18s; width: fit-content; }
.btn-cta:hover { background: var(--green2); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer { background: var(--white); border-top: 1px solid var(--line); padding: 56px 100px 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand-p { font-size: 13px; color: var(--mid); line-height: 1.75; max-width: 240px; margin-bottom: 18px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.fci { font-size: 12px; color: var(--mid); }
.fci strong { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 2px; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--mid); transition: color .15s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--dim); }
.footer-tagline { font-size: 12px; color: var(--dim); }

/* ─── TWEAKS ─── */
#tweaks-panel { display: none; position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--white); border: 1px solid var(--line); padding: 20px; width: 220px; box-shadow: 0 16px 48px rgba(20,20,16,0.12); }
#tweaks-panel h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.twk-row { margin-bottom: 12px; }
.twk-row label { font-size: 10px; color: var(--dim); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.twk-sw-row { display: flex; gap: 7px; }
.twk-sw { width: 22px; height: 22px; border: 2px solid transparent; transition: border-color .15s; }
.twk-sw.on { border-color: var(--ink); }
.twk-row input[type=range] { width: 100%; accent-color: var(--green); }

/* LABEL */
.label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--dim); }
.label-green { color: var(--green); }

@media (max-width: 960px) {
  body::before, body::after { display: none; }
  nav { padding: 0 16px; }
  .nav-center { display: none; }
  .nav-dropdown-menu { display: none; }
  .nav-right .nav-lang { display: none; }

  /* Hero */
  .hero { display: flex; flex-direction: column; padding: 64px 20px 48px; gap: 28px; min-height: 100svh; height: auto; justify-content: center; }
  .hero-content { justify-content: flex-start; gap: 28px; display: flex; flex-direction: column; }
  .hero-aura, .hero-aura2 { display: none; }
  .hero-image-side { display: none; }
  .hero-h1 { letter-spacing: -2px; font-size: clamp(52px, 14vw, 72px); line-height: 0.92; }
  .hero-h1 .row { gap: 14px; }
  .hero-eyebrow { margin-bottom: 0; }
  .hero-cta-strip { flex-direction: row; align-items: center; gap: 16px; margin-top: 4px; }
  .hero-bottom { display: flex; flex-direction: column; gap: 0; margin-top: 0; }
  .hero-bottom-divider { display: none; }
  .hero-col { padding: 16px 0; border-top: 1px solid var(--line); border-bottom: none; }

  /* About */
  .about-strip { display: flex; flex-direction: column; padding: 0; }
  .about-img-side { display: none; }
  .about-text-side { padding: 40px 16px; }

  /* Services */
  .svc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .svc-item { display: flex; gap: 12px; align-items: center; padding: 18px 20px; grid-template-columns: unset; }
  .svc-num { font-size: 11px; min-width: 28px; }
  .svc-name { font-size: clamp(16px, 4.5vw, 22px); }
  .svc-arrow { opacity: 1; transform: translateX(0); margin-left: auto; }
  .svc-tag-pill { display: none; }
  .svc-item-img { display: none; }

  /* Stats */
  .stats-green { display: flex; flex-direction: column; gap: 20px; padding: 48px 16px; }
  .stat-g-item { width: 100%; border-right: none; padding: 0; }
  .stat-g-item:last-child { margin-top: 0; }

  /* Why bento */
  .why-bento { display: flex; flex-direction: column; }
  .why-bento-header { padding: 40px 16px; min-height: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .why-speedo { display: none; }
  .why-bento-grid { display: flex; flex-direction: column; padding: 0; }
  .why-card { padding: 24px 16px; border-left: none; border-right: none; border-top: 1px solid var(--line); }
  .why-card:first-of-type { border-top: none; }
  .why-card:nth-child(even) { border-left: none; padding-left: 16px; }

  /* Clients */
  .clients-sec { padding: 32px 0; }

  /* Testimonials */
  .test-section { padding: 40px 0; }
  .test-header { padding: 0 20px; margin-bottom: 24px; }
  .test-stats { display: grid; grid-template-columns: 1fr 1fr; padding: 0 20px; margin-bottom: 24px; border: none; gap: 0; }
  .test-stat { padding: 16px 0; border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .test-stat:not(:last-child) { border-right: none; padding-right: 0; margin-right: 0; }
  .test-stat:nth-child(odd) { padding-right: 16px; border-right: 1px solid rgba(255,255,255,0.2); }
  .test-stat:nth-last-child(-n+2) { border-bottom: none; }
  .test-stat:last-child { border-bottom: none; }
  .test-stat-val { font-size: clamp(28px, 7vw, 40px); letter-spacing: -1px; }
  .test-grid { display: flex; flex-direction: column; gap: 20px; }
  .test-row-2 { display: none; }
  .test-card { width: 72vw; max-width: 280px; padding: 20px; }
  .test-rows { padding: 0; gap: 0; }

  /* FAQ + Contact */
  .faq-layout { display: flex; flex-direction: column; }
  .faq-divider { display: none; }
  .faq-pane { padding: 40px 16px; }

  /* News */
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .news-grid { display: flex; flex-direction: column; gap: 20px; padding: 0; }
  .news-card { border-right: none; border-left: none; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .news-card:last-child { border-bottom: none; }
  .news-img { height: 180px; }
  .news-body { padding: 16px 0 0; }

  /* CTA & Footer */
  .cta-band { flex-direction: column; padding: 56px 28px; gap: 28px; }
  .cta-band-title { font-size: clamp(28px, 8vw, 48px); letter-spacing: -1.5px; }
  .cta-band-right { min-width: unset; width: 100%; }
  .cta-band-right p { font-size: 14px; line-height: 1.7; }
  .btn-cta { width: 100%; text-align: center; padding: 14px 20px; }
  .footer-top { display: flex; flex-direction: column; gap: 24px; }

  /* Global padding resets */
  .mq,.clients-sec,.faq-section,.svc-section,.news-section { padding-left: 0; padding-right: 0; }
  .svc-header,.news-header,.why-header { padding: 40px 20px 0; }
  .test-header { padding: 0 20px; margin-bottom: 24px; }
}
