:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #40916c;
  --orange: #e76f51;
  --orange-dark: #c85a3d;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --grey-light: #e9ecef;
  --grey-mid: #6c757d;
  --grey-dark: #343a40;
  --text: #212529;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  border-radius: 6px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }

.btn-cta {
  background: var(--orange);
  color: var(--white);
}
.btn-cta:hover {
  background: var(--orange-dark);
  transform: scale(1.02);
  color: var(--white);
}

.btn-cta-large {
  font-size: 18px;
  padding: 18px 32px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--orange-dark);
}

button.btn { font: inherit; font-weight: 600; font-size: 17px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* SECTION 1 — NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: box-shadow 0.2s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green);
}
.navbar-brand:hover { text-decoration: none; }
.navbar-cta {
  padding: 10px 20px;
  font-size: 15px;
}
@media (max-width: 540px) {
  .navbar-brand { display: none; }
  .navbar-inner { justify-content: flex-end; }
  .navbar-cta { width: 100%; }
}

/* SECTION 2 — HERO */
.hero {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px),
    var(--green-dark);
  color: var(--white);
  padding: 80px 0;
}
.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero-left { flex: 0 0 60%; max-width: 60%; }
.hero-right { flex: 0 0 40%; max-width: 40%; display: flex; justify-content: center; }
.hero h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  max-width: 560px;
}
.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.trust-badges li {
  display: inline-flex;
  align-items: center;
}
.hero-foot {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-illustration {
  width: 100%;
  max-width: 260px;
  height: auto;
}
@media (max-width: 1023px) {
  .hero-right { display: none; }
  .hero-left { flex: 0 0 100%; max-width: 100%; }
}
@media (max-width: 767px) {
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 17px; }
}

/* GENERIC SECTION HEADINGS */
section h2 {
  font-size: 36px;
  color: var(--green);
  text-align: center;
  margin-bottom: 16px;
}
.section-intro {
  text-align: center;
  color: var(--grey-mid);
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 17px;
}
@media (max-width: 767px) {
  section h2 { font-size: 28px; }
}

/* SECTION 3 — SERVICES */
.services {
  background: var(--white);
  padding: 80px 0 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-top: 3px solid var(--green);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.service-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--green);
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--grey-dark);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

.cta-strip {
  background: var(--orange);
  margin-top: 80px;
  padding: 24px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip p {
  color: var(--white);
  font-size: 17px;
  margin: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .cta-strip { margin-top: 48px; }
}

/* SECTION 4 — CALCULATOR */
.calculator {
  background: var(--off-white);
  padding: 80px 0;
}
.calc-card {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
}
.calc-field {
  margin-bottom: 22px;
}
.calc-field label,
.calc-label {
  display: block;
  font-weight: 600;
  color: var(--grey-dark);
  margin-bottom: 10px;
  font-size: 15px;
}
.calc-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-light);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.calc-field select:focus {
  border-color: var(--green);
  outline: none;
}
.toggle-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.toggle-btn {
  flex: 1;
  min-width: 110px;
  background: var(--white);
  color: var(--grey-dark);
  border: 1.5px solid var(--grey-light);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.toggle-btn small {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-mid);
}
.toggle-btn:hover {
  border-color: var(--green-light);
}
.toggle-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.toggle-btn.active small {
  color: rgba(255,255,255,0.85);
}

.calc-result {
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 28px 0 22px;
}
.calc-result-label {
  font-size: 14px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.calc-result-price {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.calc-result-note {
  font-size: 13px;
  opacity: 0.8;
}
.calc-reassure {
  text-align: center;
  color: var(--grey-mid);
  font-size: 13px;
  margin-top: 14px;
}
@media (max-width: 480px) {
  .calc-card { padding: 22px; }
  .calc-result-price { font-size: 30px; }
}

/* SECTION 5 — AREAS */
.areas {
  background: var(--white);
  padding: 80px 0;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.pill {
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
}
.areas-cta {
  background: var(--green);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.areas-cta p {
  color: var(--white);
  font-size: 17px;
  margin: 0;
}
.seo-paragraph {
  color: var(--grey-mid);
  max-width: 760px;
  margin: 32px auto 0;
  font-size: 15px;
  text-align: center;
  line-height: 1.7;
}

/* SECTION 6 — WHY */
.why {
  background: var(--off-white);
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 12px;
}
.why-item {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.why-check {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 16px;
}
.why-item h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--green);
  font-size: 19px;
  margin-bottom: 8px;
}
.why-item p {
  color: var(--grey-dark);
  font-size: 15px;
}
@media (max-width: 1023px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* SECTION 7 — HOW IT WORKS */
.how {
  background: var(--white);
  padding: 80px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 40px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 2px dashed var(--green-light);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.step h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--green);
  font-size: 20px;
  margin-bottom: 8px;
}
.step p {
  color: var(--grey-dark);
  font-size: 15px;
}
.how-cta {
  text-align: center;
}
.how-cta p {
  margin-top: 14px;
  color: var(--grey-mid);
  font-size: 14px;
}
@media (max-width: 767px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
}

/* SECTION 8 — FAQ */
.faq {
  background: var(--off-white);
  padding: 80px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 50px 18px 22px;
  font-family: 'DM Serif Display', serif;
  color: var(--green);
  font-size: 17px;
  position: relative;
  transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  color: var(--green);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { background: var(--off-white); }
.faq-answer {
  padding: 0 22px 20px;
  color: var(--grey-dark);
  font-size: 15px;
  line-height: 1.65;
}

/* SECTION 9 — CONTACT */
.contact {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0;
}
.contact h2 {
  color: var(--white);
}
.contact-sub {
  text-align: center;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.contact-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-phone {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-meta {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 20px;
}
.contact-right form { display: grid; gap: 14px; }
.form-field label {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: 6px;
  padding: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green-light);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 80px; }
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-phone { font-size: 30px; }
}

/* SECTION 10 — FOOTER */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.footer-phone {
  color: var(--orange);
  font-size: 16px;
  font-weight: 500;
}
.footer-phone:hover { color: var(--orange-dark); text-decoration: none; }
.footer-seo {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  max-width: 760px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* SECTION 11 — MOBILE STICKY CALL BAR */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  border-top: 2px solid var(--orange-dark);
}
.mobile-call-bar:hover {
  background: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
}
@media (max-width: 767px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* PRINT */
@media print {
  .navbar, .mobile-call-bar, .cta-strip, .btn-cta, .btn { display: none !important; }
  body { padding-top: 0; padding-bottom: 0; }
  section { padding: 24px 0 !important; }
  .hero { background: none; color: #000; }
  .hero h1, .contact h2 { color: #000; }
}

/* Trust badges — 6-badge variant */
.trust-badges-six {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 16px;
}
@media (max-width: 480px) {
  .trust-badges-six {
    grid-template-columns: 1fr 1fr;
  }
}

/* Navbar links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 0 24px;
}
.navbar-links a {
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}
.navbar-links a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .navbar-links { display: none; }
}

/* Blog Teaser Section */
.blog-teaser {
  background: var(--white);
  padding: 80px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border-radius: 10px;
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--grey-light);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}
.blog-card-tag {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
  width: fit-content;
}
.blog-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
  flex-grow: 1;
}
.blog-read-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-teaser { padding: 48px 0; }
}

/* Blog Post Layout */
.blog-post {
  padding: 48px 0 80px;
  background: var(--white);
}
.blog-container {
  max-width: 780px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 32px;
  font-family: 'DM Sans', sans-serif;
}
.breadcrumb a {
  color: var(--green);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

article h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
article h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--green);
  margin-top: 48px;
  margin-bottom: 16px;
}
article h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}
article p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}
article ul, article ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
article li {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}
article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
article table th {
  background: var(--green);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
article table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--grey-light);
  color: var(--text);
}
article table tr:nth-child(even) td {
  background: var(--off-white);
}

.blog-cta-box {
  background: var(--green-dark);
  color: white;
  border-radius: 10px;
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}
.blog-cta-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
}
.blog-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.blog-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--grey-light);
}
.blog-related h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.blog-related ul {
  list-style: none;
  padding: 0;
}
.blog-related li {
  margin-bottom: 10px;
}
.blog-related a {
  color: var(--green);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.blog-related a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  article h1 { font-size: 28px; }
  article h2 { font-size: 22px; }
  .blog-cta-box { padding: 24px; }
}
