* =========================================================
   FIXALAAN — Global Styles (style.css)
   Folder layout assumed:
   /HTML/*.html  → link ../CSS/style.css
   /Images/*     → use ../Images/ in URLs from HTML
   Primary brand: #0f5a34 (green)
   ======================================================= */
:root{--green:#0f5a34;--dark:#0f172a;--light:#f8fafc;--muted:#64748b;--accent:#facc15}
*{box-sizing:border-box}
html,body{margin:0;font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial}
body{background:#fff;color:var(--dark)}
.wrap{max-width:960px;margin:0 auto;padding:20px}
.bar{background:var(--green);color:#fff;padding:8px 12px;text-align:center;font-weight:600}
.logo{display:flex;align-items:center;gap:10px;margin:14px 0}
.logo img{width:36px;height:36px}
.progress{height:6px;background:#e5e7eb;border-radius:999px;overflow:hidden;margin:10px 0 18px}
.progress>div{height:6px;background:var(--green);width:0%}
.step{display:none}
.step.active{display:block}
.group{background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;padding:16px;margin:12px 0}
label{display:block;font-weight:600;margin:10px 0 6px}
input,select{width:100%;padding:12px 12px;border:1px solid #e5e7eb;border-radius:10px;background:#fff}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:700px){.row{grid-template-columns:1fr}}
.btn{display:inline-block;background:var(--green);color:#fff;border:none;border-radius:10px;padding:14px 16px;font-weight:700;cursor:pointer}
.btn.secondary{background:#0b3d24}
.btn:disabled{opacity:.5;cursor:not-allowed}
.actions{display:flex;gap:10px;justify-content:flex-end;margin-top:14px}
.muted{color:var(--muted);font-size:14px}
.pill{display:inline-block;background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0;border-radius:999px;padding:6px 10px;font-size:13px}
.notice{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46;border-radius:12px;padding:12px;margin:10px 0}
.card-grid{display:grid;grid-template-columns:repeat(5,minmax(140px,1fr));gap:12px}
@media (max-width:900px){.card-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:600px){.card-grid{grid-template-columns:repeat(2,1fr)}}
.card{border:1px solid #e5e7eb;border-radius:12px;padding:14px;cursor:pointer;background:#fff;transition:transform .1s,border .1s}
.card:hover{transform:translateY(-2px);border-color:#cbd5e1}
.card.active{outline:2px solid var(--green)}
.price-row{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
@media (max-width:900px){.price-row{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.price-row{grid-template-columns:1fr}}
.price-card{border:1px solid #e5e7eb;border-radius:12px;padding:14px}
.price-card.best{border-color:var(--green);box-shadow:0 0 0 2px rgba(15,90,52,.15)}
.ref{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;background:#0f172a;color:#fff;padding:2px 8px;border-radius:6px}
.wa{position:fixed;right:14px;bottom:14px;background:#25D366;color:#fff;border-radius:999px;padding:14px 16px;font-weight:800;text-decoration:none}

/* 1) Reset & Variables */
:root{
  --green:#0f5a34;
  --green-700:#0b4628;
  --green-600:#0d4f2e;
  --accent:#facc15;
  --dark:#0f172a;
  --muted:#64748b;
  --light:#f8fafc;
  --white:#ffffff;
  --max:1200px;
  --radius:14px;
  --shadow:0 8px 24px rgba(15,90,52,.15);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; color:var(--dark); background:#fff;
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  text-rendering:optimizeLegibility; -webkit-font-smoothing:antialiased;
}
img,svg,video{max-width:100%; height:auto; display:block}
a{color:var(--green); text-decoration:none}
a:hover{opacity:.9}

/* 2) Layout helpers */
.container{width:100%; max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:56px 0}
.grid{display:grid; gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:900px){ .grid-2,.grid-3{grid-template-columns:1fr} }
.card{
  background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow);
  padding:20px;
}

/* 3) Top info bar */
.topbar{
  background:var(--green); color:#fff; font-size:14px;
}
.topbar .wrap{display:flex; gap:12px; align-items:center; justify-content:center; padding:6px 12px; flex-wrap:wrap}
.topbar .sep{opacity:.55}

/* 4) Header & Nav */
.header{
  background:#fff; position:sticky; top:0; z-index:50; border-bottom:1px solid #e5e7eb;
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:18px; padding:12px 0;
}
.logo{display:flex; align-items:center; gap:10px}
.logo img{width:42px; height:42px; border-radius:8px}
.nav a{color:var(--dark); font-weight:600; padding:8px 10px; border-radius:10px}
.nav a:hover{background:rgba(15,90,52,.08)}
.nav .cta{background:var(--green); color:#fff; padding:10px 14px; border-radius:12px; box-shadow:var(--shadow)}
.nav .cta:hover{background:var(--green-600)}

/* Mobile nav toggle (simple hide-on-mobile menu placeholder) */
.menu{display:flex; gap:8px; align-items:center}
@media (max-width:900px){
  .menu{display:none}
  .nav .cta{margin-left:auto}
}

/* 5) Hero */
.hero{
  background:linear-gradient(180deg,#ffffff 0%, #f2faf6 100%);
  padding:64px 0 36px;
}
.hero .wrap{display:grid; grid-template-columns:1.2fr .8fr; gap:28px; align-items:center}
.hero h1{font-size:40px; line-height:1.1; margin:0 0 12px}
.hero p{color:#374151; margin:0 0 20px}
@media (max-width:900px){
  .hero .wrap{grid-template-columns:1fr}
  .hero h1{font-size:32px}
}
.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  background:#e8f6ee; color:var(--green-700);
  border:1px solid #d7efdf; padding:6px 10px; border-radius:999px; font-size:13px
}

/* 6) Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px; border:0; cursor:pointer;
  font-weight:700; transition:transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--green); color:#fff; box-shadow:var(--shadow)}
.btn-primary:hover{background:var(--green-600)}
.btn-outline{background:#fff; color:var(--green); border:2px solid var(--green)}
.btn-outline:hover{background:#f2faf6}
.btn-accent{background:var(--accent); color:#111}
.btn-accent:hover{filter:saturate(1.1)}

/* 7) WhatsApp floating button */
.whatsapp-float{
  position:fixed; right:18px; bottom:18px; z-index:60;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; display:grid; place-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
}
.whatsapp-float:hover{transform:translateY(-2px)}

/* 8) Forms (quote/contact) */
.form{
  display:grid; gap:14px;
}
.input, .select, .textarea{
  width:100%; padding:12px 14px; border-radius:12px; border:1.5px solid #e5e7eb; background:#fff;
  outline:0; transition:border .15s ease, box-shadow .15s ease;
  font:inherit;
}
.input:focus, .select:focus, .textarea:focus{
  border-color:var(--green); box-shadow:0 0 0 3px rgba(15,90,52,.15)
}
.textarea{min-height:120px; resize:vertical}
.inline-2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width:700px){ .inline-2{grid-template-columns:1fr} }
.help{font-size:12px; color:var(--muted)}
.success{border-color:#16a34a !important}
.error{border-color:#ef4444 !important}

/* 9) Feature rows / services */
.feature{
  display:flex; gap:18px; align-items:flex-start;
  padding:16px; border-radius:14px; border:1px solid #e5e7eb;
  background:#fff;
}
.feature i, .feature .icon{
  width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  background:#e8f6ee; color:var(--green-700); font-style:normal; font-weight:800;
}

/* 10) Tables (legal requirements block) */
.table{width:100%; border-collapse:collapse; overflow:hidden; border-radius:12px; box-shadow:var(--shadow); background:#fff}
.table th,.table td{padding:14px 12px; text-align:left; border-bottom:1px solid #eef2f7}
.table th{background:#f7fafb; font-size:14px; color:#334155}
.table tr:last-child td{border-bottom:0}
.tag-red{color:#991b1b; background:#fee2e2; border:1px solid #fecaca; padding:3px 8px; border-radius:999px; font-size:12px}
.tag-amber{color:#92400e; background:#fef3c7; border:1px solid #fde68a; padding:3px 8px; border-radius:999px; font-size:12px}

/* 11) Footer */
.footer{
  background:#0b1b13; color:#cfe7db; padding:36px 0 20px; margin-top:48px;
}
.footer a{color:#e7fff4}
.footer .cols{display:grid; grid-template-columns:2fr 1fr 1fr; gap:20px}
.footer small{display:block; margin-top:18px; opacity:.75}
@media (max-width:900px){ .footer .cols{grid-template-columns:1fr} }

/* 12) Banners / alerts */
.notice{
  background:#f7fee7; border:1px solid #d9f99d; color:#3f6212;
  padding:12px 14px; border-radius:12px;
}

/* 13) Animations */
.fade-up{opacity:0; transform:translateY(12px); animation:fadeUp .6s ease forwards}
@keyframes fadeUp{to{opacity:1; transform:none}}

/* 14) Utilities */
.center{text-align:center}
.m0{margin:0} .mt8{margin-top:8px} .mt16{margin-top:16px} .mt24{margin-top:24px} .mt32{margin-top:32px}
.mb8{margin-bottom:8px} .mb16{margin-bottom:16px} .mb24{margin-bottom:24px} .mb32{margin-bottom:32px}
.p16{padding:16px} .p20{padding:20px}
.round{border-radius:var(--radius)}
.border{border:1px solid #e5e7eb}
.bg-light{background:var(--light)}
.text-muted{color:var(--muted)}
.hide{display:none !important}

/* 15) Hero CTA row responsive stack */
.cta-row{display:flex; gap:12px; flex-wrap:wrap}