*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  background: #071d17;
  color: #f7f2e7;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.25s,
    opacity 0.25s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
h1,
h2,
h3,
h4 {
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #f7f2e7;
}
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}
p {
  margin-bottom: 1rem;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 16, 12, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(109, 143, 106, 0.1);
}
.header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  padding: 7px 0;
  font-size: 0.8rem;
  color: rgba(247, 242, 231, 0.55);
  border-bottom: 1px solid rgba(109, 143, 106, 0.07);
}
.header-top a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(247, 242, 231, 0.55);
}
.header-top a:hover {
  color: #6d8f6a;
}
.header-top svg {
  width: 14px;
  height: 14px;
  fill: #6d8f6a;
  flex-shrink: 0;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f7f2e7;
  white-space: nowrap;
}
.logo span {
  color: #6d8f6a;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 14px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #f7f2e7;
  transition: color 0.25s;
}
.main-nav > li > a:hover {
  color: #6d8f6a;
}
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6d8f6a;
  margin-left: 8px;
  transition: transform 0.3s;
}
.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #03100c;
  border: 1px solid rgba(109, 143, 106, 0.18);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
  z-index: 100;
}
.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li {
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.3s ease;
}
.has-dropdown:hover .dropdown li {
  opacity: 1;
  transform: translateX(0);
}
.has-dropdown:hover .dropdown li:nth-child(1) {
  transition-delay: 0.03s;
}
.has-dropdown:hover .dropdown li:nth-child(2) {
  transition-delay: 0.06s;
}
.has-dropdown:hover .dropdown li:nth-child(3) {
  transition-delay: 0.09s;
}
.has-dropdown:hover .dropdown li:nth-child(4) {
  transition-delay: 0.12s;
}
.has-dropdown:hover .dropdown li:nth-child(5) {
  transition-delay: 0.15s;
}
.has-dropdown:hover .dropdown li:nth-child(6) {
  transition-delay: 0.18s;
}
.has-dropdown:hover .dropdown li:nth-child(7) {
  transition-delay: 0.21s;
}
.has-dropdown:hover .dropdown li:nth-child(8) {
  transition-delay: 0.24s;
}
.has-dropdown:hover .dropdown li:nth-child(9) {
  transition-delay: 0.27s;
}
.has-dropdown:hover .dropdown li:nth-child(10) {
  transition-delay: 0.3s;
}
.dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 0.84rem;
  color: rgba(247, 242, 231, 0.65);
  transition: all 0.2s;
}
.dropdown li a:hover {
  color: #6d8f6a;
  background: rgba(109, 143, 106, 0.06);
  padding-left: 30px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-toggle.active {
  background: rgba(3, 16, 12, 0.97);
}
.mobile-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  background: #f7f2e7;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
  border-radius: 1px;
  transform: translateX(-50%);
}
.mobile-toggle span:nth-child(1) {
  top: 15px;
}
.mobile-toggle span:nth-child(2) {
  top: 21px;
}
.mobile-toggle span:nth-child(3) {
  top: 27px;
}
.mobile-toggle.active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.active {
  opacity: 1;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 55%;
  max-width: 380px;
  height: 100svh;
  background: #03100c;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 0;
  border-left: 1px solid rgba(109, 143, 106, 0.15);
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 24px;
  border-bottom: none;
}
.mobile-nav-header .logo {
  display: none;
}
.mobile-nav-list {
  list-style: none;
  padding: 16px 24px;
}
.mobile-nav-list > li {
  border-bottom: 1px solid rgba(109, 143, 106, 0.08);
}
.mobile-nav-list > li > a {
  display: block;
  padding: 14px 0;
  color: #f7f2e7;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.03em;
}
.mobile-nav-list > li > a:hover {
  color: #6d8f6a;
}
.mobile-dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 0;
  color: #f7f2e7;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.mobile-dropdown-title svg {
  width: 16px;
  height: 16px;
  stroke: #6d8f6a;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mobile-dropdown-title.active svg {
  transform: rotate(180deg);
}
.mobile-sub-menu {
  list-style: none;
  padding: 0 0 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-sub-menu.open {
  max-height: 600px;
}
.mobile-sub-menu li a {
  font-size: 0.84rem;
  padding: 9px 0;
  display: block;
  color: rgba(247, 242, 231, 0.55);
}
.mobile-sub-menu li a:hover {
  color: #6d8f6a;
}
.mobile-nav-contact {
  padding: 20px 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(109, 143, 106, 0.1);
}
.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7f2e7;
  font-size: 0.84rem;
  padding: 8px 0;
}
.mobile-nav-contact a[href^="mailto"] {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mobile-nav-contact svg {
  width: 16px;
  height: 16px;
  fill: #6d8f6a;
  flex-shrink: 0;
}
.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 16, 12, 0.92) 0%,
    rgba(7, 29, 23, 0.72) 50%,
    rgba(3, 16, 12, 0.92) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero-content {
  flex: 1;
  max-width: 580px;
  min-height: 360px;
}
.hero-content h1 {
  margin-bottom: 1.2rem;
  min-height: 170px;
}
.hero-content h1 span {
  color: #6d8f6a;
}
.hero-content p {
  font-size: 1.06rem;
  color: rgba(247, 242, 231, 0.78);
  margin-bottom: 1.5rem;
}
.hero-form {
  flex: 0 0 420px;
  align-self: flex-start;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  min-height: 56px;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-primary {
  background: #6d8f6a;
  color: #071d17;
  box-shadow: 0 4px 20px rgba(109, 143, 106, 0.25);
}
.btn-primary:hover {
  background: #7da37a;
  color: #071d17;
  box-shadow: 0 6px 28px rgba(109, 143, 106, 0.4);
  transform: translateY(-2px);
}
.btn.btn-primary,
a.btn.btn-primary {
  color: #071d17 !important;
  text-decoration: none;
}
.btn.btn-primary:hover,
a.btn.btn-primary:hover {
  color: #071d17 !important;
}
.btn-outline {
  background: transparent;
  color: #6d8f6a;
  border: 2px solid #6d8f6a;
}
.btn-outline:hover {
  background: #6d8f6a;
  color: #071d17;
}
.feedback-form-container {
  background: rgba(3, 16, 12, 0.9);
  border: 1px solid rgba(109, 143, 106, 0.2);
  border-radius: 14px;
  padding: 32px;
  backdrop-filter: blur(12px);
  height: fit-content;
}
.feedback-form-container h2,
.feedback-form-container h3 {
  font-family: "Lora", serif;
  font-size: 1.4rem;
  color: #f7f2e7;
  margin-bottom: 20px;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: flex;
  gap: 12px;
}
.form-group {
  flex: 1;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(247, 242, 231, 0.05);
  border: 1px solid rgba(109, 143, 106, 0.18);
  border-radius: 8px;
  color: #f7f2e7;
  font-size: 0.93rem;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247, 242, 231, 0.3);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #6d8f6a;
  box-shadow: 0 0 0 3px rgba(109, 143, 106, 0.12);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  text-align: center;
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  min-height: 56px;
  background: #6d8f6a;
  color: #071d17;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(109, 143, 106, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.submit-btn:hover {
  background: #7da37a;
  box-shadow: 0 6px 28px rgba(109, 143, 106, 0.4);
  transform: translateY(-2px);
}
#form-success {
  text-align: center;
  padding: 24px;
}
#form-success p {
  color: #6d8f6a;
  font-size: 1.1rem;
  font-weight: 500;
}
.section {
  padding: 80px 0;
}
.section-dark {
  background: #071d17;
}
.section-darker {
  background: #03100c;
}
.section-light {
  background: #ede7da;
  color: #1f2a24;
}
.section-light h2,
.section-light h3 {
  color: #1f2a24;
}
.section-light a {
  color: #4a6e47;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-header p {
  color: rgba(247, 242, 231, 0.6);
  margin-top: 10px;
  font-size: 1.02rem;
}
.section-light .section-header p {
  color: rgba(31, 42, 36, 0.6);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: rgba(247, 242, 231, 0.03);
  border: 1px solid rgba(109, 143, 106, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  margin-bottom: 10px;
}
.card-body p {
  color: rgba(247, 242, 231, 0.6);
  font-size: 0.9rem;
  flex: 1;
}
.card-body .btn {
  margin-top: 16px;
  align-self: flex-start;
}
.section-light .card {
  background: rgba(31, 42, 36, 0.04);
  border-color: rgba(31, 42, 36, 0.1);
}
.section-light .card-body p {
  color: rgba(31, 42, 36, 0.6);
}
.two-col {
  display: flex;
  align-items: center;
  gap: 48px;
}
.two-col-reverse {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-direction: row-reverse;
}
.two-col-text {
  flex: 1;
}
.two-col-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}
.two-col-img--installer {
  aspect-ratio: 1280 / 960;
}
.two-col-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.two-col-img--installer img {
  height: 100%;
  object-fit: cover;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-item {
  padding: 28px;
  background: rgba(247, 242, 231, 0.03);
  border: 1px solid rgba(109, 143, 106, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.3s;
}
.feature-item:hover {
  border-color: rgba(109, 143, 106, 0.3);
}
.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 143, 106, 0.1);
  border-radius: 12px;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: #6d8f6a;
}
.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.feature-item p {
  color: rgba(247, 242, 231, 0.55);
  font-size: 0.88rem;
}
.section-light .feature-item {
  background: rgba(31, 42, 36, 0.04);
  border-color: rgba(31, 42, 36, 0.12);
}
.section-light .feature-item h3 {
  color: #1f2a24;
}
.section-light .feature-item p {
  color: rgba(31, 42, 36, 0.7);
}
.cta-banner {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(
    135deg,
    rgba(109, 143, 106, 0.12) 0%,
    rgba(7, 29, 23, 0.6) 100%
  );
  border: 1px solid rgba(109, 143, 106, 0.15);
  border-radius: 16px;
}
.cta-banner h2 {
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(247, 242, 231, 0.6);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn {
  margin: 0 8px;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(109, 143, 106, 0.12);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(247, 242, 231, 0.03);
  border: 1px solid rgba(109, 143, 106, 0.1);
  border-radius: 10px;
  transition: all 0.25s;
}
.area-card:hover {
  border-color: #6d8f6a;
  background: rgba(109, 143, 106, 0.06);
}
.area-card svg {
  width: 18px;
  height: 18px;
  fill: #6d8f6a;
  flex-shrink: 0;
}
.area-card span {
  font-size: 0.9rem;
  font-weight: 500;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(109, 143, 106, 0.1);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(109, 143, 106, 0.25);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(109, 143, 106, 0.04);
}
.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: #6d8f6a;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: rgba(247, 242, 231, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-answer a {
  color: #6d8f6a;
  text-decoration: underline;
}
.site-footer {
  background: #03100c;
  border-top: 1px solid rgba(109, 143, 106, 0.08);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-col h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d8f6a;
  margin-bottom: 16px;
}
.footer-col p {
  color: rgba(247, 242, 231, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-col a {
  display: block;
  color: rgba(247, 242, 231, 0.5);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #6d8f6a;
}
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(109, 143, 106, 0.06);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(247, 242, 231, 0.35);
}
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  padding: 16px 32px;
  background: #6d8f6a;
  color: #071d17;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(109, 143, 106, 0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 190px; /* fixed width */
  height: 48px; /* fixed height */
  white-space: nowrap;
}
.sticky-quote-btn:hover {
  background: #7da37a;
  box-shadow: 0 8px 32px rgba(109, 143, 106, 0.5);
  transform: translateY(-3px);
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: #071d17;
  border: 1px solid rgba(109, 143, 106, 0.2);
  border-radius: 16px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: #f7f2e7;
  stroke-width: 2;
}
.modal-close:hover svg {
  stroke: #6d8f6a;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(247, 242, 231, 0.03);
  border: 1px solid rgba(109, 143, 106, 0.1);
  border-radius: 10px;
  margin-bottom: 16px;
}
.contact-info-card svg {
  width: 24px;
  height: 24px;
  fill: #6d8f6a;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.contact-info-card p,
.contact-info-card a {
  color: rgba(247, 242, 231, 0.55);
  font-size: 0.87rem;
}
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #03100c 0%, #071d17 100%);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(109, 143, 106, 0.2),
    transparent
  );
}
.page-hero p {
  color: rgba(247, 242, 231, 0.55);
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 1.02rem;
}
.content-block {
  margin-bottom: 40px;
}
.content-block h2 {
  margin-bottom: 16px;
}
.content-block h3 {
  margin-bottom: 12px;
  color: rgba(247, 242, 231, 0.85);
}
.content-block p {
  color: rgba(247, 242, 231, 0.65);
  line-height: 1.8;
}
.content-block ul,
.content-block ol {
  margin: 12px 0 16px 24px;
  color: rgba(247, 242, 231, 0.65);
}
.content-block ul li {
  list-style: disc;
  padding: 4px 0;
  font-size: 0.92rem;
}
.content-block ol li {
  list-style: decimal;
  padding: 4px 0;
  font-size: 0.92rem;
}
.content-block a {
  color: #6d8f6a;
  text-decoration: underline;
}
.section-light .content-block p {
  color: rgba(31, 42, 36, 0.65);
}
.section-light .content-block ul,
.section-light .content-block ol {
  color: rgba(31, 42, 36, 0.65);
}
.section-light .content-block h3 {
  color: rgba(31, 42, 36, 0.85);
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-form {
    flex: none;
    width: 100%;
    max-width: 480px;
    min-height: auto;
  }
  .hero-content {
    min-height: auto;
  }
  .hero-content h1 {
    min-height: 120px;
  }
  .two-col,
  .two-col-reverse {
    flex-direction: column;
    gap: 32px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  .site-header {
    border-bottom: none;
  }
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-overlay {
    display: block;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }
  .feedback-form-container {
    min-height: auto;
  }
  .section {
    padding: 48px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .sticky-quote-btn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    padding: 14px 24px;
    font-size: 0.78rem;
    width: 190px; /* добавь явно */
    height: 48px; /* добавь явно */
  }
  .sticky-quote-btn:hover {
    transform: translateX(50%) translateY(-3px);
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.96rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
@media print {
  .site-header,
  .site-footer,
  .sticky-quote-btn,
  .modal-overlay {
    display: none;
  }
}
