:root {
  --orange: #f59b1d;
  --orange-deep: #d77b09;
  --blue: #0d2b4d;
  --blue-deep: #081d37;
  --grey: #676d76;
  --grey-dark: #2f343a;
  --grey-light: #eef0f2;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(12, 33, 60, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--blue);
  line-height: 1.6;
}

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

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

button, input, textarea {
  font: inherit;
}

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

.section {
  padding: 110px 0;
}

.alt-bg {
  background: linear-gradient(180deg, var(--grey-light), rgba(255, 255, 255, 0.9));
}

.services.section {
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: var(--orange);
  font-size: 0.76rem;
}

.eyebrow-dark {
  color: var(--orange-deep);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(13, 43, 77, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--orange-deep);
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.1;
  color: var(--blue);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 18px;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

p {
  margin-top: 0;
  color: rgba(13, 43, 77, 0.78);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 43, 77, 0.1);
  box-shadow: 0 8px 26px rgba(13, 43, 77, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  max-height: 90px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 18px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--orange-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.82rem 1.25rem;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(245, 155, 29, 0.28);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(13, 43, 77, 0.2);
  color: var(--blue);
}

.hero {
  background: linear-gradient(180deg, rgba(245, 155, 29, 0.06), rgba(13, 43, 77, 0.03));
  padding: 70px 0 80px;
}

.services-hero-carousel {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-deep);
}

.services-hero-slides,
.services-hero-slides::after,
.services-hero-slide {
  position: absolute;
  inset: 0;
}

.services-hero-slides {
  z-index: -1;
}

.services-hero-slides::after {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 29, 55, 0.02), rgba(8, 29, 55, 0.72));
}

.services-hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.services-hero-slide.is-active {
  opacity: 1;
}

.services-hero-carousel .hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1180px, calc(100% - 32px));
}

.services-hero-carousel .hero-copy {
  max-width: 760px;
  margin-left: auto;
  text-align: right;
}

.services-hero-carousel h1,
.services-hero-carousel .lead {
  color: var(--white);
}

.services-hero-carousel .hero-actions {
  justify-content: flex-end;
}

.hero-image-full {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(8, 29, 55, 0.08), rgba(8, 29, 55, 0.9)), url("images/kevo.jpg") center / cover no-repeat;
}

.hero-image-full .hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1180px, calc(100% - 32px));
}

.hero-image-full .hero-copy {
  max-width: 760px;
  margin-left: auto;
  text-align: right;
}

.hero-image-full .hero-actions,
.hero-image-full .hero-stats {
  justify-content: flex-end;
}

.hero-image-full .btn-secondary,
.services-hero-carousel .btn-secondary,
.service-detail-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-image-full .btn-secondary:hover,
.hero-image-full .btn-secondary:focus-visible,
.services-hero-carousel .btn-secondary:hover,
.services-hero-carousel .btn-secondary:focus-visible,
.service-detail-hero .btn-secondary:hover,
.service-detail-hero .btn-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.hero-image-full h1,
.hero-image-full .lead,
.hero-image-full .hero-stats span,
.hero-image-full .hero-stats strong {
  color: var(--white);
}

.hero-image-full .hero-visual {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 52px;
}

.lead {
  max-width: 560px;
  font-size: 1.14rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.hero-stats strong {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  color: var(--blue);
  letter-spacing: -0.05em;
}

.hero-stats span {
  font-size: 0.82rem;
  color: rgba(13, 43, 77, 0.7);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-card {
  background: linear-gradient(135deg, rgba(13, 43, 77, 0.96), rgba(17, 74, 112, 0.8));
  border-radius: 30px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.card-main {
  position: relative;
  width: min(100%, 560px);
  height: 420px;
  padding: 24px 20px 10px;
  overflow: hidden;
}

.project-tag {
  display: inline-block;
  margin: 12px 0 0 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.hero-installation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.93) saturate(0.9);
  z-index: 0;
}

.card-floating {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 210px;
  padding: 22px 20px;
  background: linear-gradient(135deg, rgba(245, 155, 29, 0.95), rgba(222, 123, 9, 0.9));
}

.metric {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.card-floating strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.about-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(245, 155, 29, 0.18);
  color: var(--orange-deep);
  font-weight: 900;
}

.feature-list p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.services .section-heading {
  margin-bottom: 28px;
}

.service-grid,
.project-grid,
.process-grid {
  display: grid;
  gap: 28px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  min-height: 520px;
  padding: 30px 24px;
  border-radius: 24px;
  border: 1px solid rgba(13, 43, 77, 0.08);
  box-shadow: 0 14px 28px rgba(13, 43, 77, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(13, 43, 77, 0.14);
}

.service-card-image {
  width: calc(100% + 48px);
  max-width: none;
  height: 210px;
  margin: -30px -24px 24px;
  object-fit: cover;
}

.service-card .service-link {
  margin-top: auto;
}

.service-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-meta {
  display: block;
  margin-top: 18px;
  color: rgba(13, 43, 77, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--orange-deep);
}

.service-category-grid,
.detailed-service-grid,
.capability-grid,
.audience-grid,
.resource-grid {
  display: grid;
  gap: 28px;
}

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

.service-category {
  overflow: hidden;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(13, 43, 77, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(13, 43, 77, 0.12);
}

.service-category h3 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.service-category .service-kicker {
  margin-bottom: 12px;
}

.service-category-image {
  width: calc(100% + 52px);
  height: 150px;
  margin: -24px -26px 22px;
  object-fit: cover;
}

.service-list,
.benefit-list,
.capability-list,
.audience-list,
.resource-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 20px;
  margin-top: 14px;
}
.service-list li,
.benefit-list li,
.capability-list li,
.audience-list li,
.resource-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(13, 43, 77, 0.78);
  font-size: 0.9rem;
}

.service-list li::before,
.benefit-list li::before,
.capability-list li::before,
.audience-list li::before,
.resource-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.service-category .service-link {
  margin-top: 18px;
  margin-right: 14px;
}

.detailed-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detailed-service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 43, 77, 0.08);
  box-shadow: 0 18px 38px rgba(13, 43, 77, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.detailed-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(13, 43, 77, 0.14);
}

.detailed-service-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.detailed-service-body {
  padding: 26px 24px 28px;
}

.detailed-service-body h3 {
  font-size: 1.45rem;
}

.benefit-list {
  display: grid;
  gap: 8px;
}

.benefit-list li {
  font-weight: 700;
}

.benefit-list li::before {
  content: "✓";
  top: 0;
  width: auto;
  height: auto;
  background: none;
  color: var(--orange-deep);
  font-weight: 900;
}

.process-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-grid,
.audience-grid,
.resource-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.capability-list,
.audience-list,
.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 0;
}

.capability-list li,
.audience-list li,
.resource-list li {
  padding: 16px 18px 16px 38px;
  background: var(--grey-light);
  font-weight: 700;
}

.capability-list li::before,
.audience-list li::before,
.resource-list li::before {
  left: 18px;
  top: 1.25em;
}

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

.resource-gallery figure {
  overflow: hidden;
  margin: 0;
  background: var(--grey-light);
  border: 1px solid rgba(13, 43, 77, 0.08);
}

.resource-gallery img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.resource-gallery figcaption {
  padding: 11px 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.safety-panel {
  max-width: 820px;
}

.closing-cta {
  max-width: 820px;
}

.service-detail-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-deep);
}

.service-detail-hero > img,
.service-detail-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-detail-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.service-detail-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 29, 55, 0.12), rgba(8, 29, 55, 0.86));
}

.service-detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
  text-align: right;
}

.service-detail-hero h1,
.service-detail-hero .lead {
  color: var(--white);
}

.service-detail-layout,
.detail-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.service-detail-panel {
  padding: 30px;
  background: var(--grey-light);
  border-top: 4px solid var(--orange);
}

.detail-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 24px;
  color: rgba(13, 43, 77, 0.78);
  font-weight: 600;
}

.detail-columns {
  align-items: center;
}

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

.work-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(13, 43, 77, 0.1);
}

.work-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.zoomable-image {
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zoomable-image:hover,
.zoomable-image:focus {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(13, 43, 77, 0.14);
  outline: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 17, 31, 0.8);
  backdrop-filter: blur(4px);
}

.image-lightbox-image {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  background: var(--white);
}

.image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.work-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 18px;
  margin-bottom: 20px;
}

.icon-box.orange {
  background: rgba(245, 155, 29, 0.14);
}

.icon-box.blue {
  background: rgba(13, 43, 77, 0.12);
}

.icon-box.grey {
  background: rgba(103, 109, 118, 0.12);
}

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

.project-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(13, 43, 77, 0.08);
}

.project-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 3px;
  background: var(--grey-light);
}

.project-gallery img {
  height: 220px;
}

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

.project-body p {
  color: rgba(13, 43, 77, 0.76);
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-body span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 20px;
  border: 1px solid rgba(13, 43, 77, 0.08);
}

.process-step span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.contact-copy ul {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
  font-weight: 600;
  color: var(--blue);
}

.contact-form {
  min-width: 0;
  background: linear-gradient(135deg, rgba(13, 43, 77, 0.98), rgba(15, 59, 95, 0.96));
  padding: 30px 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-address {
  margin-top: 24px;
  color: rgba(13, 43, 77, 0.78);
  font-style: normal;
  line-height: 1.75;
}

.contact-address strong {
  color: var(--blue);
}

.contact-address a,
.hero-stats a,
.contact-copy a {
  color: var(--blue);
  font-weight: 700;
}

.contact-address a:hover,
.contact-address a:focus-visible,
.hero-stats a:hover,
.hero-stats a:focus-visible,
.contact-copy a:hover,
.contact-copy a:focus-visible {
  color: var(--orange-deep);
}

.site-footer {
  background: var(--blue-deep);
  color: var(--white);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
}

.footer-inner p::after {
  content: " Designed by CVSIX Media.";
  color: var(--orange);
  font-weight: 800;
}

.footer-credit {
  color: var(--orange);
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
}

.footer-quick-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.footer-quick-links strong {
  color: var(--white);
}

.footer-quick-links a {
  color: rgba(255,255,255,0.78);
}

.footer-quick-links a:hover,
.footer-quick-links a:focus-visible {
  color: var(--orange);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px 12px 12px;
  color: var(--white);
  background: #168c4b;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
  font-size: 0.78rem;
  font-weight: 800;
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  font-size: 0.62rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  background: #0f703b;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .nav {
    position: relative;
  }

  .mobile-menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    display: grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 2px solid var(--orange-deep);
    border-radius: 8px;
    background: var(--orange);
    cursor: pointer;
    transform: translateY(-50%);
  }

  .mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--blue-deep);
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    background: var(--orange-deep);
    outline: 3px solid rgba(245, 155, 29, 0.28);
    outline-offset: 2px;
  }

  .nav > .btn-primary {
    display: none;
  }

  .nav.nav-open .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 8px;
    background: var(--blue-deep);
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 28px rgba(0,0,0,0.18);
  }

  .nav.nav-open .main-nav a {
    padding: 13px 14px;
    color: var(--white);
  }

  .nav.nav-open .main-nav a:hover,
  .nav.nav-open .main-nav a:focus-visible {
    color: var(--orange);
    background: rgba(255,255,255,0.08);
  }

  .hero {
    padding-top: 48px;
  }

  .service-grid,
  .process-grid,
  .field-row,
  .service-category-grid,
  .detailed-service-grid,
  .capability-grid,
  .audience-grid,
  .resource-grid,
  .process-grid-six {
    grid-template-columns: 1fr;
  }

  .service-list,
  .capability-list,
  .audience-list,
  .resource-list {
    grid-template-columns: 1fr;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

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

  .resource-gallery img {
    height: 120px;
  }

  .footer-quick-links {
    width: 100%;
    order: 3;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 10px 13px 10px 10px;
  }

  .work-gallery img {
    height: 250px;
  }

  .brand-tag {
    display: none;
  }

  .hero-stats {
    gap: 18px;
  }
}
