:root{
  --board:#101615;
  --board2:#0c1211;

  --ink:#f3f4f6;
  --muted:rgba(243,244,246,.78);

  --paper:#e9e3d6;
  --paperInk:#101826;

  --green:#1f6d3a;
  --green2:#0f3e22;

  --accent:#6fb13b;

  --line:rgba(255,255,255,.12);
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--board);
  overflow-x:hidden;
}

/* Chalkboard texture */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(900px 600px at 12% 18%, rgba(111,177,59,.10), transparent 65%),
    radial-gradient(900px 600px at 88% 25%, rgba(111,177,59,.08), transparent 60%),
    radial-gradient(1400px 900px at 50% 50%, rgba(255,255,255,.05), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, transparent 1px, transparent 8px),
    linear-gradient(180deg, var(--board), var(--board2));
  pointer-events:none;
  z-index:-3;
}

/* Shield watermark */
body::after{
  content:"";
  position:fixed;
  inset:0;
  background-image:url("shield.png");
  background-repeat:no-repeat;
  background-position: 52% 40%;
  background-size: min(1100px, 92vw);
  opacity:.10; /* stronger like brochure */
  filter: grayscale(100%) contrast(115%);
  pointer-events:none;
  z-index:-2;
}

a{color:inherit}
.container{width:min(1220px, 94vw); margin:0 auto}

/* Top bar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.topbar-dark{
  background: rgba(16,22,21,.55);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

/* BIG logo */
.brand-logo{
  height:96px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
}

/* Nav */
.topnav{
  display:flex;
  gap:18px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.74rem;
  color: rgba(255,255,255,.80);
}
.topnav a{
  text-decoration:none;
  padding:10px 10px;
  border-radius:12px;
}
.topnav a:hover{
  background: rgba(255,255,255,.06);
  color:#fff;
}

.topbar-cta{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.82rem 1.1rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.72rem;
  text-decoration:none;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.btn-primary{
  background: linear-gradient(180deg, rgba(111,177,59,.95), rgba(31,109,58,.95));
  color:#0b140d;
  border-color: rgba(0,0,0,.25);
  box-shadow: 0 14px 26px rgba(0,0,0,.35);
}
.btn-outline{
  background: rgba(255,255,255,.06);
  color:#fff;
  border-color: rgba(255,255,255,.22);
}

.btn-lg{padding:1rem 1.25rem; font-size:.76rem}
.w-full{width:100%}

/* Brochure grid */
.brochure{padding:18px 0 16px}
.brochure-grid{
  display:grid;
  grid-template-columns: 1.05fr 1.55fr 1.05fr;
  gap:16px;
  align-items:stretch;
}

/* Panels */
.panel{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

/* Paper */
.panel-paper{
  background: linear-gradient(180deg, rgba(233,227,214,.98), rgba(233,227,214,.92));
  color: var(--paperInk);
  border:1px solid rgba(0,0,0,.22);
}

/* Center chalk card */
.panel-center{
  background:
    radial-gradient(700px 220px at 50% 0%, rgba(111,177,59,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45));
  border:1px solid rgba(255,255,255,.12);
}

/* Green */
.panel-green{
  background: linear-gradient(180deg, rgba(31,109,58,.95), rgba(15,62,34,.98));
  color:#fff;
  border:1px solid rgba(0,0,0,.35);
}

/* Panel headings */
.panel-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:16px 16px 10px;
}
.panel-head h3{
  margin:0;
  font-size:.92rem;
  letter-spacing:.18em;
  font-weight:900;
}
.panel-head.small{padding-top:10px}
.panel-head.green h3{color:#fff}

.rule{height:2px; width:56px; background: rgba(0,0,0,.28)}
.rule.light{background: rgba(255,255,255,.42)}

/* Left content */
.lead{
  margin:0;
  padding:0 18px;
  font-weight:900;
}
.divider{
  height:1px;
  background: rgba(0,0,0,.18);
  margin:12px 18px;
}
.list{
  margin:10px 0 0;
  padding:0 18px 14px 34px;
}
.list li{margin:8px 0}
.list.tight{padding-bottom:8px}

/* Center content */
.center-top{
  padding:18px 18px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  text-align:center;
}
.kicker{
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:.74rem;
  color: rgba(255,255,255,.72);
  text-shadow: 0 8px 18px rgba(0,0,0,.55);
}
h1{
  margin:10px 0 8px;
  font-size:2.25rem;
  line-height:1.03;
  font-weight:900;
  text-shadow: 0 14px 30px rgba(0,0,0,.55);
}
.sub{
  margin:0 auto;
  max-width: 48ch;
  color: rgba(255,255,255,.82);
  font-weight:700;
}

.banner{
  margin:14px auto 0;
  width:fit-content;
  padding:10px 14px;
  background: linear-gradient(180deg, #8c4e28, #66341a);
  color:#fff;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.74rem;
  box-shadow: 0 14px 26px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.14);
}

.actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.actions-left{justify-content:flex-start}

.contact{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.82);
  font-weight:900;
  font-size:.86rem;
  text-decoration:none;
}

/* Chalk playboard */
.playboard{
  padding:18px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.04), rgba(255,255,255,.04) 1px, transparent 1px, transparent 7px),
    linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.55));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.xo{
  font-weight:900;
  letter-spacing:.20em;
  color: rgba(255,255,255,.62);
  display:grid;
  gap:14px;
}
.row{display:flex; justify-content:space-between}
.faint{opacity:.65}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  padding:14px 18px 18px;
}
.price{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  padding:14px;
}
.price-title{
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.72rem;
  color: rgba(255,255,255,.72);
}
.price-value{
  margin-top:6px;
  font-weight:900;
  font-size:1.8rem;
  color:#fff;
}
.price-value span{
  font-size:1rem;
  font-weight:900;
  color: rgba(255,255,255,.72);
}
.price-sub{
  margin-top:6px;
  color: rgba(255,255,255,.75);
  font-weight:700;
  font-size:.92rem;
}

/* Right blocks */
.block{padding:4px 18px 10px}
.block-title{
  padding:10px 0 6px;
  font-weight:900;
  color:#fff;
}
.panel-green .list{color: rgba(255,255,255,.92)}
.cta-box{
  margin:12px 18px 18px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
}
.cta-title{
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.cta-sub{
  margin-top:6px;
  font-weight:800;
  opacity:.92;
}

/* Lower section */
.section{padding:42px 0 30px}
.section-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.section-card{
  padding:18px;
}
.paper-muted{
  color: rgba(16,24,38,.82);
  font-weight:700;
}
.steps{margin:10px 0 0; padding-left:18px}
.steps li{margin:10px 0; font-weight:700; color: var(--paperInk)}
.note{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.55);
  color: rgba(16,24,38,.82);
  font-weight:900;
}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:22px 0;
  background: rgba(0,0,0,.20);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-logo{height:44px; width:auto; display:block}
.footer-right{color: rgba(255,255,255,.78); font-weight:900}
.sep{opacity:.5; margin:0 8px}

/* Responsive */
@media (max-width:1050px){
  .brochure-grid{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .section-grid{grid-template-columns:1fr}
  .topnav{display:none}
  .brand-logo{height:86px}
}
@media (max-width:520px){
  .topbar-cta{flex-direction:column; align-items:stretch}
  .topbar-cta .btn{width:100%}
  h1{font-size:1.85rem}
}
