:root{
  --green:#003b1f;
  --green2:#002b17;
  --orange:#c75a00;
  --grey:#d9d9d9;
  --grey2:#efefef;
  --white:#ffffff;
  --black:#000000;
  --shadow: 0 10px 25px rgba(0,0,0,.12);
  --radius: 14px;
  --max: 1200px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Calibri, Arial, sans-serif;
  background: var(--grey);
  color:#111;
}

a{ text-decoration:none; color:inherit; } /* no underlines */
a:focus{ outline:3px solid rgba(255,255,255,.55); outline-offset:3px; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
}

/* HEADER */
header.site-header{
  background: linear-gradient(180deg, var(--green), var(--green2));
  color: var(--white);
  height: 200px;
  display:flex;
  align-items:center;
  padding: 14px 0;
}

.header-inner{
  width: 100%;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.brand-row{
  display:flex;
  align-items:center;
  gap: 12px;
  justify-content:center;
}

.brand-row img{
  width:52px;
  height:52px;
  object-fit:contain;
}

.brand-title{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-align:center;
  line-height:1.05;
}

.nav-row{
  display:flex;
  justify-content:center;
  padding: 0 10px;
}

nav.main-nav{
  display:flex;
  gap: 14px;
  flex-wrap:nowrap;
  overflow:auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

nav.main-nav a{
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  white-space:nowrap;
  padding: 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  transition: transform .12s ease, background .12s ease;
}

nav.main-nav a:hover{
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

/* MAIN */
main{
  background: var(--grey);
  padding: 18px 0 22px;
}

.hero{
  background: var(--grey);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero h1{
  margin:0 0 8px;
  text-align:center;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.hero p{
  margin: 0 auto;
  text-align:center;
  max-width: 900px;
  font-size: 16px;
  line-height: 1.45;
}

/* AD UNIT INSIDE HERO */
.hero-ad{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 8px;
}

.ad-box{
  width: 970px;
  height: 250px;
  max-width: 100%;
  background: rgba(255,255,255,.55);
  border: 2px dashed rgba(0,0,0,.25);
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 10px;
  font-weight: 800;
}

.ad-note{
  font-size: 13px;
  font-weight: 700;
  opacity: .85;
  text-align:center;
}

.section-title{
  margin: 22px 0 12px;
  text-align:center;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category{
  margin: 18px 0 26px;
}

.category h2{
  margin: 10px 0 12px;
  text-align:center;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 5 fixed columns */
.tools-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.tool-card{
  background: var(--orange);
  color: var(--white);
  border-radius: 14px;
  min-height: 70px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 12px 10px;
  font-weight: 800;
  font-size: 13.5px;
  box-shadow: var(--shadow);
  transition: transform .12s ease, filter .12s ease;
}

.tool-card:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* TESTIMONIALS */
.testimonials-wrap{
  background: var(--grey2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow:hidden;
  margin-top: 10px;
}

.testimonials-title{
  text-align:center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0 12px;
  font-size: 20px;
}

.marquee{
  position: relative;
  overflow:hidden;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  padding: 10px;
}

.marquee-track{
  display:flex;
  gap: 12px;
  width: max-content;
  animation: marquee 350s linear infinite;
}

@keyframes marquee{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0%); }
}

.testimonial{
  flex: 0 0 auto;
  min-width: 300px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.testimonial .name{
  font-weight: 900;
  margin-bottom: 6px;
}

.testimonial .text{
  font-size: 14px;
  line-height: 1.45;
}

/* ✅ FOOTER: PLAIN DARK GREEN (no gradient) */
footer.site-footer{
  background: var(--green);   /* plain dark green */
  color: var(--white);
  padding: 22px 0 10px;
  margin-top: 18px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.footer-grid h3{
  margin:0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-text{
  margin: 0 0 10px;
  line-height: 1.55;
  font-size: 14px;
  opacity: .95;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.footer-links a{
  background: rgba(255,255,255,.10);
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
}

.footer-links a:hover{
  background: rgba(255,255,255,.18);
}

.footer-add-note{
  margin-top: 10px;
  font-size: 13px;
  opacity: .9;
}

/* Copyright line stays exactly as before (black, 16pt, bold) */
.copyright-line{
  margin-top: 14px;
  text-align:center;
  background: var(--black);
  color: var(--white);
  font-size: 16pt;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1100px){
  .tools-grid{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 820px){
  header.site-header{ height: auto; padding: 14px 0 12px; }
  .brand-title{ font-size: 28px; }
  .tools-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 420px){
  .brand-row img{ width:44px; height:44px; }
  .brand-title{ font-size: 24px; }
}
