:root {
  --bg: #eef3dd;
  --green: #7fb343;
  --green-dark: #5b8a2a;
  --yellow: #f7d21b;
  --cream: #f7f4e9;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(31, 31, 31, 0.16);
  --soft-shadow: 0 14px 40px rgba(31, 31, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.uploaded-image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--green-dark);
  margin: 0 0 10px;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: #1f1f1f;
  box-shadow: 0 12px 20px rgba(247, 210, 27, 0.35);
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: #1f1f1f;
}

.btn-dark {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(238, 243, 221, 0.96) 0%, rgba(238, 243, 221, 0.4) 100%);
  backdrop-filter: blur(10px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  margin: 16px auto 8px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-image {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(127, 179, 67, 0.15);
  display: grid;
  place-items: center;
  color: var(--green-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: #2f2f2f;
}

.nav-link,
.nav-item button {
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-item button:hover,
.nav-link:hover {
  color: var(--green-dark);
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  padding: 12px;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.dropdown a {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.dropdown a:hover {
  background: #f6f6f6;
}

.has-dropdown:hover .dropdown {
  display: flex;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f7f7f7;
  font-weight: 600;
  font-size: 0.85rem;
}

.phone-pill i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #3b3b3b;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 24px 24px;
  background: var(--white);
  border-radius: 24px;
  margin: 0 auto 20px;
  box-shadow: var(--soft-shadow);
  width: min(92vw, 720px);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-section p {
  margin: 6px 0;
  font-weight: 700;
  font-size: 0.85rem;
}

.mobile-section a {
  padding: 6px 0;
  font-size: 0.85rem;
  display: block;
}

.hero {
  padding: 8px 0 50px;
}

.hero-shell {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 90px;
  background: #dfe8ce;
  box-shadow: var(--shadow);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.hero-card {
  position: relative;
  transform: none;
  max-width: 520px;
  width: min(90%, 520px);
  background: var(--cream);
  border-radius: 26px;
  padding: 34px 32px;
  box-shadow: var(--soft-shadow);
  text-align: left;
  z-index: 2;
  margin-right: auto;
}

.hero-card h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 14px;
}

.hero-card h1 span {
  display: block;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-features {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3a3a3a;
}

.hero-features i {
  color: var(--green);
}

.leaf-bloom {
  position: absolute;
  top: -14px;
  right: 28px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  opacity: 0.95;
  transform: rotate(18deg);
  object-fit: cover;
}

.hero-rating {
  position: absolute;
  bottom: 28px;
  right: 32px;
  background: var(--white);
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--soft-shadow);
  font-size: 0.85rem;
  z-index: 2;
}

.rating-score {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fdf2b6;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.rating-stars {
  color: #f2b800;
  font-size: 0.75rem;
}

.how-it-works {
  padding: 30px 0 40px;
  background: #ffffff;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 40px;
}

.how-it-works .section-label {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.step-card {
  position: relative;
  background: transparent;
  border-radius: 24px;
  padding: 10px 12px 20px;
  text-align: center;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 58px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: var(--green);
  opacity: 0.7;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 54px;
  right: -6px;
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent var(--green);
  opacity: 0.7;
}

.step-card:last-child::after,
.step-card:last-child::before {
  display: none;
}

.step-visual {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f3d2;
  border: 2px solid rgba(127, 179, 67, 0.5);
  color: var(--green-dark);
  font-size: 2rem;
  position: relative;
}

.step-visual::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, #a9d86e, #6ea83c);
  transform: rotate(-20deg);
}

.leaf-accent {
  position: absolute;
  left: 8px;
  top: -6px;
  width: 16px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, #a9d86e, #6ea83c);
  transform: rotate(18deg);
}

.leaf-accent::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 12px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, #b9e37a, #79b043);
  transform: rotate(-28deg);
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 220px;
}

.who-we-are {
  padding: 30px 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #4aa400 50%, #4aa400 100%);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  background: #f4f6ee;
  border-radius: 36px;
  padding: 50px;
}

.split-image img {
  border-radius: 28px;
  box-shadow: 0 26px 50px rgba(31, 31, 31, 0.14);
}

.split-content p {
  color: #6b6b6b;
}

.split-content h2 {
  margin-top: 8px;
}

.split-content .section-label {
  margin-bottom: 10px;
}

.split-content .btn-outline {
  background: var(--yellow);
  border-color: transparent;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.check-list li {
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  background: #4aa400;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.why-choose {
  padding: 30px 0;
  background: #4aa400;
  text-align: center;
  color: #ffffff;
}

.why-choose .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.why-choose h2 {
  max-width: 600px;
  margin: 0 auto 36px;
}

.feature-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
  margin-bottom: 30px;
}

.feature-card {
  background: #e9f3c9;
  padding: 22px;
  border-radius: 24px;
  color: #1f1f1f;
  flex: 1 1 0;
}

.feature-card p {
  color: #6b6b6b;
  margin: 8px 0 0;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #4aa400;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0 20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: #ffffff;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.stats > div {
  padding-top: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stats > div:first-child {
  border-left: none;
}

.our-services {
  padding: 30px 0;
  background: var(--bg);
  text-align: left;
}

.our-services .section-label,
.our-services h2 {
  text-align: left;
}

.service-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  border-radius: 28px;
  background: #e8f2c6;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: none;
}

.service-media {
  position: relative;
  background: var(--yellow);
  border-radius: 26px;
  padding: 8px;
}

.service-card img {
  height: 170px;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.15);
  color: var(--green-dark);
  font-size: 1.1rem;
}

.service-body h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.service-body h3 span {
  display: block;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(31, 31, 31, 0.06);
}

.cta-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f3d2;
  color: var(--green-dark);
}

.testimonials {
  padding: 30px 0;
  background: #ffffff;
  text-align: center;
}

.testimonial-shell {
  margin-top: 36px;
  position: relative;
  background: #f8f8f0;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--soft-shadow);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.testimonial {
  display: block;
  text-align: left;
  color: var(--muted);
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.08);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-meta img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-badge {
  margin: 18px auto 0;
  width: fit-content;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.testimonial-badge span {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.home-packages {
  padding: 80px 0;
  background: #f6f6ee;
  text-align: center;
}

.home-packages h2 {
  margin: 12px 0 0;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
}

.home-packages .section-label {
  text-align: center;
  margin-bottom: 0;
}

.package-intro {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.packages-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  text-align: left;
}

.package-card {
  background: #ffffff;
  border: 1px solid #ecf0e1;
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: var(--soft-shadow);
}

.package-card.featured {
  border-color: var(--green);
  border-width: 2px;
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #49a700;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
}

.package-tier {
  margin: 0;
  color: #49a700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.875rem;
}

.package-card h3 {
  margin: 12px 0 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.package-price {
  margin: 16px 0 0;
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: -0.01em;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6e6e6e;
}

.package-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.package-features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #4b4b4b;
  font-size: 0.875rem;
  line-height: 1.35;
}

.package-features i {
  color: #48a600;
  margin-right: 6px;
}

.package-btn {
  width: 100%;
  margin-top: 28px;
  font-size: 1rem;
  padding: 11px 20px;
  min-height: 52px;
  border-width: 2px;
}

.quote {
  padding: 30px 0;
  background: #ffffff;
  text-align: left;
}

.quote-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.quote-form-card {
  background: linear-gradient(135deg, #f4e650 0%, #eef6c8 55%, #e6f1bf 100%);
  border-radius: 28px;
  padding: 32px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.quote-form input,
.quote-form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font-size: 0.9rem;
  background: #ffffff;
}

.quote-form .full {
  grid-column: span 2;
}

.quote-form .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
}

.quote-form button.full {
  grid-column: span 2;
  justify-self: flex-start;
}

.quote-aside {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
}

.quote-image {
  border-radius: 26px;
  overflow: hidden;
  background: #f2f2f2;
}

.quote-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.quote-note {
  background: #f4f6ee;
  border-radius: 20px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.note-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.note-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #ffffff;
  font-size: 0.8rem;
}

.quote-note h3 {
  margin: 0;
  font-size: 1.1rem;
}

.quote-note span {
  font-weight: 700;
}

.faqs {
  padding: 30px 0;
  background: #ffffff;
}

.faq-card {
  margin-top: 30px;
  background: transparent;
  border-radius: 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 24px;
}

.faq-highlight {
  background: #e7f2c9;
  border-radius: 28px;
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-highlight span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-radius: 20px;
  border: none;
  background: #f4f4ec;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
}

.faq-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 0.9rem;
}

.faq-content {
  display: none;
  padding: 0 22px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-content.is-open {
  display: block;
}

.faq-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  width: fit-content;
}

.faq-phone .phone-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #1f1f1f;
}

.blog {
  padding: 30px 0;
  background: #f6f6ee;
  text-align: left;
}

.blog .section-label,
.blog h2 {
  text-align: left;
}

.blog h2 {
  margin-bottom: 10px;
}

.blog-grid {
  margin: 36px 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  background: transparent;
  border-radius: 24px;
  overflow: visible;
  text-align: left;
  box-shadow: none;
}

.blog-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.14);
}

.blog-card span {
  display: block;
  padding: 18px 0 6px;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-card h3 {
  padding: 0 0 18px;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
}

.blog-excerpt {
  color: #6b6b6b;
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.blog-readmore {
  color: var(--green-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-detail {
  padding: 30px 0;
}

.blog-detail h1 {
  margin-top: 8px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.post-category {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

.post-date {
  color: #6b6b6b;
  font-size: 0.9rem;
}

.blog-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.14);
  margin-bottom: 20px;
}

.blog-content {
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 24px;
}

.blog-content img {
  max-width: 100%;
  border-radius: 16px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.post-tags span {
  background: #e9f3d2;
  color: #2f5f12;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-related {
  padding: 30px 0;
  background: #f6f6ee;
}

.blog-related h2 {
  margin: 0 0 20px;
}

.blog-actions {
  text-align: center;
  margin-top: 12px;
}

.blog .btn-outline {
  border-color: var(--green);
  color: var(--green-dark);
  background: #e9f3d2;
  box-shadow: none;
}

.blog-page {
  padding: 30px 0;
  background: #f6f6ee;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: start;
}

.blog-grid-large {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card-large {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.12);
}

.blog-card-large img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px 22px 24px;
}

.blog-card-body span {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.blog-card-body p {
  margin: 0 0 12px;
  color: #6b6b6b;
  font-size: 0.95rem;
}

.blog-empty {
  color: #6b6b6b;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.blog-widget {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.1);
}

.blog-widget h3 {
  margin: 0 0 12px;
}

.blog-search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-search input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #f4f4ec;
}

.blog-search button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #4aa400;
  color: #ffffff;
  display: grid;
  place-items: center;
}

.blog-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-pill {
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 600;
  color: #4b4b4b;
  cursor: pointer;
  padding: 4px 0;
}

.category-pill.is-active {
  color: var(--green);
}

.blog-newsletter {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #f4f4ec;
}

.blog-newsletter button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #4aa400;
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 1020px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-grid-large {
    grid-template-columns: 1fr;
  }
}

.cta {
  padding: 30px 0;
  background: #ffffff;
}

.cta-shell {
  background: #f8f8f0;
  border-radius: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--soft-shadow);
}

.cta-shell img {
  border-radius: 22px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 30px 0 20px;
  background: #ffffff;
}

.footer-shell {
  background: #e9f3cf;
  border-radius: 30px;
  padding: 40px 40px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #6b6b6b;
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-cta h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.2;
}

.footer-newsletter .section-label {
  margin-bottom: 12px;
}

.footer-newsletter form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-newsletter input {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  min-width: 240px;
}

.btn-green {
  background: #4aa400;
  color: #ffffff;
  box-shadow: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  margin: 14px 0 8px;
  font-weight: 600;
}

.footer-phone span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #1f1f1f;
}

.footer-email {
  color: #1f1f1f;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 36px;
  background: #ffffff;
  border-radius: 999px;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b6b6b;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #2f7d32;
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-card {
    margin: 24px;
  }

  .hero-shell {
    padding: 40px 18px 50px;
  }

  .hero-rating {
    position: static;
    margin: 0 24px 24px;
  }

  .steps,
  .service-grid,
  .stats,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .home-packages h2 {
    font-size: 2rem;
  }

  .package-intro {
    font-size: 1.08rem;
  }

  .package-tier {
    font-size: 0.92rem;
  }

  .package-card h3 {
    font-size: 1.5rem;
  }

  .package-price {
    font-size: 2rem;
  }

  .package-price span {
    font-size: 1rem;
  }

  .package-copy {
    font-size: 0.95rem;
  }

  .package-features {
    font-size: 0.95rem;
  }

  .package-btn {
    font-size: 1rem;
  }

  .feature-grid {
    flex-direction: column;
  }

  .step-card::after,
  .step-card::before {
    display: none;
  }

  .split,
  .quote-grid,
  .faq-card,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form .consent,
  .quote-form button {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    border-radius: 24px;
  }

  .hero-card {
    margin: 16px;
    padding: 20px;
  }

  .hero-card h1 {
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .hero-card h1 span {
    display: inline;
  }

  .hero-card p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .hero-features {
    font-size: 0.76rem;
    gap: 10px;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }
}
