:root {
  --brand-green: #1E653B;
  --brand-orange: #F27C20;
  --sun-gold: #F9C250;
  --bg-soft: #E8F2E1;
  --bg-light: #F8F7F2;
  --text-dark: #253828;
  --text-muted: #4A4A4A;
  --surface: #FFFFFF;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a,
button,
input,
textarea,
select {
  touch-action: manipulation;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

header.site-header {
  background: rgba(30, 101, 59, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.brand-logo {
  max-height: 56px;
  width: auto;
  display: block;
  background: transparent;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--sun-gold);
  color: var(--brand-green);
  border-radius: 10px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  transition: opacity 0.2s ease;
}

.nav-dropdown-toggle::after {
    content: "\25BC";
  transition: transform 0.3s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 50, 40, 0.98);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  min-width: 240px;
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(249, 194, 80, 0.15);
  color: #F9C250;
}

.nav-dropdown-more {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  color: #F9C250 !important;
  margin-top: 8px;
  padding-top: 12px;
}

.nav-dropdown-more:hover {
  background-color: rgba(249, 194, 80, 0.2) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
}

.btn-secondary {
  background: var(--sun-gold);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero {
  background: linear-gradient(180deg, #1E653B 0%, #1B5A32 100%);
  background-image: 
    linear-gradient(to right, rgba(30, 101, 59, 1) 0%, rgba(30, 101, 59, 0.65) 45%, rgba(30, 101, 59, 0) 100%),
    url("images/hero section.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #fff;
  padding: 120px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #F9C250;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  margin: 0 0 24px;
  max-width: 100%;
  line-height: 1.1;
}
+
+
+/* Hero title cascade/fade */
+.hero-title {
+  font-weight: 800;
+  line-height: 1.02;
+  margin: 0 0 24px;
+}
+.hero-title span {
+  display: inline-block;
+  opacity: 0;
+  transform: translateY(12px) scale(0.995);
+  margin-right: 8px;
+  animation: heroFadeUp 640ms cubic-bezier(.2,.9,.3,1) forwards;
+}
+.hero-title span:nth-child(1) { animation-delay: 0s; }
.hero-title span:nth-child(1) { animation-delay: 0s; }
.hero-title span:nth-child(2) { animation-delay: 0.12s; }
.hero-title span:nth-child(3) { animation-delay: 0.24s; }
.hero-title span:nth-child(4) { animation-delay: 0.36s; }
.hero-title span:nth-child(5) { animation-delay: 0.48s; }
.hero-title span:nth-child(6) { animation-delay: 0.60s; }
.hero-title span:nth-child(7) { animation-delay: 0.72s; }
+
+@keyframes heroFadeUp {
+  to { opacity: 1; transform: none; }
+}
+
+@media (prefers-reduced-motion: reduce) {
+  .hero-title span { animation: none; opacity: 1; transform: none; }
+}
+
+
*** End Patch

.hero p {
  max-width: 100%;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-visual {
  display: grid;
  place-items: center;
  gap: 24px;
}

.hero-visual img {
  width: min(520px, 100%);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.14);
  display: block;
}

.feature-card,
.feature-card-light {
  width: min(380px, 100%);
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.feature-label {
  margin: 0 0 12px;
  color: #F9C250;
  font-weight: 700;
}

.feature-card h2,
.feature-card-light h3 {
  font-size: 1.7rem;
  margin: 0 0 16px;
}

.feature-card p,
.feature-card-light p {
  margin: 0;
  color: var(--text-muted);
}

.section-overlap {
  margin-top: -60px;
  padding-top: 80px;
  background: transparent;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  margin: 16px 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
}

.brand-logo {
  max-height: 88px;
  width: auto;
  display: block;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.14);
}

#solutions .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}

@media (max-width: 640px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 101, 59, 0.98);
    padding: 18px 18px 22px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 20;
  }

  .nav-links a,
  .nav-links .btn-outline,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    min-width: 0;
    margin: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown-menu a {
    padding-left: 26px;
  }

  .brand-name {
    display: none;
  }

  .brand-logo {
    max-height: 40px;
    padding: 4px 6px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .feature-card {
    padding: 24px;
  }

  .card-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  table.spec-table,
  table.specs-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    border-collapse: separate;
  }

  table.spec-table::before,
  table.specs-table::before {
    content: "Swipe for more →";
    display: block;
    text-align: right;
    color: var(--sun-gold);
    font-size: 0.95rem;
    margin: 0 0 0.75rem;
  }

  table.spec-table th,
  table.specs-table th,
  table.spec-table td,
  table.specs-table td {
    white-space: nowrap;
  }
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.project-card {
  padding: 36px;
  background: var(--brand-green);
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 22px 60px rgba(30, 101, 59, 0.16);
}

.project-tag {
  display: inline-flex;
  background: rgba(249, 194, 80, 0.18);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.project-number {
  font-size: 3rem;
  margin: 0 0 16px;
}

.about-section {
  padding: 80px 0 60px;
  background: var(--bg-light);
}

#about {
  scroll-margin-top: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 22px;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 0;
  color: var(--brand-green);
}

.about-copy p {
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}

.about-actions {
  margin-top: 18px;
}

.about-actions .btn {
  min-width: 180px;
}

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

.stat-card {
  background: #fff;
  border: 1px solid rgba(30, 101, 59, 0.12);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 2.5rem;
  color: var(--brand-green);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
}

.about-page-hero {
  background: linear-gradient(180deg, #1E653B 0%, #1B5A32 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}

.about-page-hero h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  margin: 0 0 16px;
}

.about-page-hero .lead {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

#contact {
  scroll-margin-top: 120px;
}

.anchor-target {
  position: relative;
  top: -120px;
  height: 1px;
  visibility: hidden;
}

.contact-page-hero {
  background: linear-gradient(180deg, #1E653B 0%, #1B5A32 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}

.contact-page-hero h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  margin: 0 0 16px;
}

.contact-page-hero .lead {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.contact-main {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-form-panel,
.contact-info-panel {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(30, 101, 59, 0.08);
}

.contact-form-panel h2 {
  margin-top: 0;
  color: var(--brand-green);
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.contact-form-panel p {
  margin: 16px 0 30px;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-weight: 600;
  color: var(--brand-green);
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(30, 101, 59, 0.16);
  background: #fff;
  color: var(--text-dark);
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(30, 101, 59, 0.1);
}

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

.contact-info-panel {
  display: grid;
  gap: 24px;
}

.contact-card {
  background: #F8F7F2;
  border-radius: 24px;
  padding: 26px;
}

.contact-card h3 {
  margin-top: 0;
  color: var(--brand-green);
}

.contact-card p,
.contact-card li {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.8;
}

.contact-card p + p {
  margin-top: 14px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.contact-card ul li::before {
  content: "\2022";
  color: var(--brand-orange);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.contact-card--note {
  background: rgba(30, 101, 59, 0.06);
}

@media (max-width: 900px) {
  .contact-grid,
  .highlight-grid,
  .about-grid,
  .about-main-grid,
  .tr408-grid,
  #solutions .card-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .contact-page-hero {
    padding: 60px 0 40px;
  }

  .contact-page-hero h1 {
    font-size: 2.2rem;
  }

  .contact-form-panel,
  .contact-info-panel {
    padding: 24px;
  }
}

.about-main {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-main-content {
  display: grid;
  gap: 20px;
}

.about-main-content h2 {
  font-size: 2rem;
  margin: 0 0 16px;
  color: var(--brand-green);
}

.about-main-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.about-main-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(30, 101, 59, 0.14);
}

.about-main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.about-values {
  padding: 80px 0;
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: 24px;
  border: 1px solid rgba(30, 101, 59, 0.1);
}

.value-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--brand-green);
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.value-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.value-card li {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.value-card li strong {
  color: var(--brand-green);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--bg-soft);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--brand-green);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
}

.site-footer {
  background: #3fa864;
  color: #fff;
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-hours {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

..footer-links h3,
.footer-contact h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sun-gold);
}

.btn-footer {
  min-width: 220px;
}

/* Projects Page Styles */
.projects-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.project-card__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--bg-light);
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.05);
}

.project-card__image-wrapper--video {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card__video {
  width: 100%;
  height: 100%;
  display: block;
}

.project-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-card__content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-card__title {
  font-size: 1.4rem;
  margin: 0 0 16px;
  color: var(--brand-green);
}

.project-card__meta {
  background: var(--bg-soft);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.project-card__meta p {
  margin: 8px 0;
  color: var(--text-dark);
}

.project-card__meta strong {
  color: var(--brand-green);
}

.project-card__description {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 16px;
  flex-grow: 1;
}

.project-card__quote {
  background: rgba(30, 101, 59, 0.05);
  border-left: 4px solid var(--brand-orange);
  padding: 16px;
  margin: 16px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-radius: 4px;
}

.project-card__quote em {
  color: var(--text-muted);
}

.project-card__quote strong {
  display: block;
  margin-top: 10px;
  color: var(--brand-green);
}

.project-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.detail-tag {
  background: var(--brand-green);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(30, 101, 59, 0.95) 0%, rgba(242, 124, 32, 0.1) 100%);
  text-align: center;
  color: var(--text-dark);
}

.cta-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 16px;
  color: var(--brand-green);
}

.cta-section p {
  font-size: 1.1rem;
  margin: 0 0 32px;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.nav-links a.active {
  color: var(--sun-gold);
  font-weight: 600;
  border-bottom: 2px solid var(--sun-gold);
  padding-bottom: 4px;
}

.nav-dropdown-toggle.active,
.nav-dropdown-menu a.active {
  color: var(--sun-gold);
}

.nav-dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .project-card__image-wrapper {
    height: 240px;
  }
}

.copyright-bar {
  background: rgba(30, 101, 59, 0.96);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.copyright-bar p {
  margin: 0;
  padding: 0 20px;
}

  .sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(30, 101, 59, 0.96);
    backdrop-filter: blur(12px);
    z-index: 999;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.15);
  }

  .sticky-cta-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #fff;
    color: var(--brand-green);
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    min-width: 150px;
  }

  .sticky-cta-bar a.cta-whatsapp {
    background: #25D366;
    color: #fff;
  }

  .sticky-cta-bar {
    flex-wrap: wrap;
  }
}

.cookie-banner p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.95);
}

.cookie-banner a {
  color: #F9C250;
  text-decoration: underline;
}

.cookie-banner button {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  background: var(--sun-gold);
  color: var(--text-dark);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-grid,
  .highlight-grid,
  .about-grid,
  .about-main-grid,
  .tr408-grid,
  #solutions .card-grid {
    grid-template-columns: 1fr;
  }

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

  .header-inner,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .brand-logo {
    max-height: 42px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    width: auto;
    background: rgba(30, 101, 59, 0.98);
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    z-index: 30;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn-outline,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: left;
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: transparent;
    box-shadow: none;
    min-width: 0;
    padding: 6px 0 0 8px;
    margin-top: 4px;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .hero {
    padding: 80px 0 60px;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 7vw, 2.7rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-page-hero {
    padding: 60px 0 40px;
  }

  .about-page-hero h1 {
    font-size: 2.2rem;
  }

  .about-page-hero .lead {
    font-size: 1.05rem;
  }

  .about-main,
  .about-values {
    padding: 60px 0;
  }

  .about-main-grid {
    gap: 24px;
  }

  .about-main-content h2 {
    font-size: 1.6rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 20px;
  }

  .feature-card {
    padding: 24px;
  }

  .stats,
  .products-grid,
  .tr408-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }

  .modal-panel {
    padding: 16px;
    border-radius: 12px;
  }

  .carousel-slide img {
    max-height: 45vh;
  }

  .carousel-button {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .highway-info {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  .hero {
    padding: 66px 0 48px;
  }

  .hero-actions .btn,
  .sticky-cta-bar a,
  .cookie-banner button,
  .btn {
    width: 100%;
    min-height: 48px;
  }

  .section-heading,
  .project-card__content,
  .contact-form-panel,
  .contact-info-panel,
  .product-card,
  .dept-card {
    padding: 20px;
  }

  .project-card__image-wrapper {
    height: 220px;
  }

  .product-card__face {
    min-height: 220px;
  }

  .product-card--compact {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .product-card--compact .product-card__face--image {
    width: 100%;
    min-width: 0;
    min-height: 120px;
  }

  .stats,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 24px;
  }

  .cookie-banner {
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

@media (min-resolution: 500dpi) {
  body {
    font-size: 17px;
  }

  .btn,
  .sticky-cta-bar a,
  .cookie-banner button,
  .form-group input,
  .form-group textarea {
    min-height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .brand-logo {
    max-height: 72px;
  }

  .hero h1,
  .about-page-hero h1,
  .contact-page-hero h1 {
    letter-spacing: -0.01em;
  }
}

.tr408-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
  margin-top: 32px;
}

.tr408-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(30, 101, 59, 0.14);
}

.tr408-table-wrap {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(30, 101, 59, 0.12);
  border-radius: 24px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(30, 101, 59, 0.08);
  text-align: left;
  color: var(--text-dark);
}

.spec-table th {
  background: rgba(30, 101, 59, 0.08);
  font-weight: 700;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tbody tr:nth-child(odd) {
  background: rgba(30, 101, 59, 0.04);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 1000;
}

.modal-overlay.open {
  display: flex;
}

.modal-panel {
  width: calc(100vw - 24px);
  max-width: 100vw;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  padding: 24px;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 101, 59, 0.08);
  color: var(--brand-green);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-header {
  margin-bottom: 24px;
}

.carousel {
  position: relative;
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  touch-action: pan-y pinch-zoom;
}

.carousel-slide {
  display: none;
  position: relative;
  overflow: hidden;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  max-height: 52vh;
  border-radius: 20px;
  display: block;
  object-fit: contain;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 101, 59, 0.75);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:active,
.carousel-arrow:hover {
  background: var(--brand-green);
}

.carousel-arrow.left {
  left: 12px;
}

.carousel-arrow.right {
  right: 12px;
}

@media (max-width: 640px) {
  .carousel-arrow {
    opacity: 1;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .carousel-slide img {
    max-height: 45vh;
  }
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.carousel-button {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--brand-green);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.dot-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 101, 59, 0.24);
  cursor: pointer;
}

.dot.active,
.dot:hover {
  background: var(--brand-green);
}

.highway-info {
  background: #F7F9F3;
  padding: 20px;
  border-radius: 20px;
}

.highway-info h3 {
  margin-top: 0;
}

.highway-info ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dark);
  line-height: 1.8;
}

.modal-content {
  margin-top: 0;
}

/* Specs Section Styling */
.specs-section {
  margin: 40px 0;
  padding: 30px;
  background: #F7F9F3;
  border-radius: 12px;
}

.specs-section h3 {
  margin-top: 0;
  color: var(--brand-green);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.specs-table tbody tr:nth-child(odd) {
  background: #F8F7F2;
}

.specs-table tbody tr:hover {
  background: #E8F2E1;
}

.specs-table td {
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid rgba(30, 101, 59, 0.1);
}

.specs-table td:first-child {
  font-weight: 500;
  color: var(--text-dark);
  width: 35%;
}

.specs-table td:last-child {
  color: var(--text-muted);
}

.specs-section-header {
  background: rgba(30, 101, 59, 0.1) !important;
  font-weight: 600 !important;
  color: var(--brand-green) !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .modal-panel {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .modal-panel {
    max-height: calc(100vh - 40px);
    padding: 18px;
  }
}

/* --- Overrides & Products/Modal styles (appended) --- */
/* Clean hero-title rules (override earlier duplicates) */
.hero-title {
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 24px;
}
.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px) scale(0.995);
  margin-right: 12px;
  animation: heroFadeUp 640ms cubic-bezier(.2,.9,.3,1) forwards;
}
.hero-title span:nth-child(1) { animation-delay: 0s; }
.hero-title span:nth-child(2) { animation-delay: 0.12s; }
.hero-title span:nth-child(3) { animation-delay: 0.24s; }
.hero-title span:nth-child(4) { animation-delay: 0.36s; }
.hero-title span:nth-child(5) { animation-delay: 0.48s; }
.hero-title span:nth-child(6) { animation-delay: 0.60s; }
.hero-title span:nth-child(7) { animation-delay: 0.72s; }
@keyframes heroFadeUp { to { opacity: 1; transform: none; } }

/* Products section */
.products-section { padding: 64px 0; background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 24px; align-items: start; }
.product-card { background: #fff; border: 1px solid rgba(30, 101, 59, 0.1); padding: 24px; border-radius: 24px; text-align: left; box-shadow: 0 18px 40px rgba(30, 101, 59, 0.06); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; cursor: pointer; display: flex; flex-direction: column; gap: 20px; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(30, 101, 59, 0.18); box-shadow: 0 24px 60px rgba(30, 101, 59, 0.12); }
.product-card__face { width: 100%; min-height: 280px; background: #E8F3E8; border-radius: 20px; display: grid; place-items: center; color: var(--brand-green); font-weight: 800; font-size: 1.6rem; overflow: hidden; }
.product-card__face--image { padding: 0; background: linear-gradient(135deg, rgba(30, 101, 59, 0.95), rgba(92, 150, 96, 0.92)); }
.product-card__face img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Product card variant with inset circular panel badge */
.product-card--with-panel { position: relative; }
.product-card--with-panel .product-card__face { position: relative; border-radius: 12px; overflow: hidden; }
.product-card--with-panel .panel-badge { position: absolute; left: 14px; top: 14px; width: 56px; height: 56px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,0.12); border: 3px solid rgba(255,255,255,0.95); }
.product-card--with-panel .panel-badge img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.product-card--with-panel h3 { color: var(--brand-green); }
.product-card__face span { display: inline-block; }
.product-card__visual { display: grid; gap: 8px; padding: 24px; color: #fff; text-align: center; }
.product-card__pill { display: inline-flex; justify-content: center; align-items: center; width: fit-content; margin: 0 auto; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-card__content { display: grid; gap: 12px; }
.product-card h3 { margin: 0; color: var(--brand-green); font-size: 1.3rem; line-height: 1.2; }
.product-card p { color: #4A4A4A; line-height: 1.85; margin: 0; }
.product-card__features { display: grid; gap: 8px; padding-left: 18px; margin: 0; color: #4A4A4A; font-size: 0.95rem; line-height: 1.6; }
.product-card__features li::marker { color: var(--brand-green); }

/* Brief specs shown on product cards */
.product-card__specs { margin-top: 8px; }
.product-card__specs ul { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 6px; }
.product-card__specs li { font-size: 0.9rem; color: #4A4A4A; }
.product-card__specs li strong { color: var(--brand-green); font-weight: 700; margin-right: 6px; }

@media (max-width: 640px) {
  .product-card__specs ul { grid-template-columns: 1fr; font-size: 0.88rem; }
}

/* Compact product card used on yard lights (image + short text) */
.product-card--compact {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  min-height: 110px;
}
.product-card--compact .product-card__face--image {
  flex: 0 0 96px;
  min-width: 96px;
  min-height: 96px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}
.product-card--compact .product-card__face--image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card--compact .product-card__content { flex: 1; display: block; }
.product-card--compact h3 { margin: 0 0 6px 0; font-size: 1.05rem; color: var(--brand-green); }
.product-card--compact p { margin: 0; color: #4A4A4A; font-size: 0.95rem; }
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.variant-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.variant-card__image {
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #e8f3e8;
}
.variant-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.variant-card__content h4 {
  margin: 0 0 10px 0;
  color: var(--brand-green);
  font-size: 1.05rem;
}
.variant-card__content .product-card__features {
  margin-top: 0;
}
@media (max-width: 900px) {
  .variant-card {
    grid-template-columns: 1fr;
  }
}
.products-actions { margin-top: 32px; text-align: center; }

.department-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 24px; }
.dept-card { background: #fff; border: 1px solid rgba(30, 101, 59, 0.1); padding: 24px 22px 28px; border-radius: 24px; box-shadow: 0 18px 40px rgba(30, 101, 59, 0.05); display: grid; gap: 20px; }
.dept-card__face { width: 100%; min-height: 220px; background: #E8F3E8; border-radius: 24px; display: grid; place-items: center; font-weight: 800; color: var(--brand-green); font-size: 1.5rem; overflow: hidden; text-decoration: none; }
.dept-card__face:hover { transform: scale(1.02); }
.dept-card__face--image { padding: 0; background: transparent; }
.dept-card__face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dept-card__face span { display: inline-block; }
.dept-card h3 { margin: 0; color: var(--brand-green); font-size: 1.25rem; }
.dept-card p { margin: 0; color: #4A4A4A; line-height: 1.8; }

@media (max-width: 900px) { .products-grid, .department-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .products-grid, .department-grid { grid-template-columns: 1fr; } }
