:root {
  --navy-950: #031021;
  --navy-900: #061a33;
  --navy-850: #08203e;
  --navy-800: #0a2850;
  --blue-500: #2684ff;
  --blue-400: #4b9cff;
  --white: #ffffff;
  --text-soft: #c8d5e5;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 16, 33, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue-500);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.brand-copy small {
  margin-top: 0.3rem;
  color: var(--blue-400);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:hover { color: var(--blue-400); }

.site-nav .nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 27px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(3, 16, 33, 0.99) 0%, rgba(6, 26, 51, 0.95) 56%, rgba(10, 40, 80, 0.72) 100%),
    repeating-linear-gradient(135deg, transparent 0 55px, rgba(38, 132, 255, 0.06) 55px 56px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(75, 156, 255, 0.2);
  transform: rotate(45deg);
}

.hero::before {
  width: 430px;
  height: 430px;
  right: -140px;
  top: 60px;
}

.hero::after {
  width: 260px;
  height: 260px;
  right: 100px;
  bottom: -170px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 4rem;
  align-items: center;
  padding-block: 6rem;
}

.hero-content { max-width: 820px; }

.hero-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(3, 16, 33, 0.45);
  box-shadow: var(--shadow);
}

.hero-panel span {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-weight: 700;
}

.hero-panel span:last-child { border-bottom: 0; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 7.2vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-copy,
.section-copy {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
}

.button-primary { background: var(--blue-500); }
.button-primary:hover { background: var(--blue-400); }

.button-secondary { border-color: rgba(255, 255, 255, 0.4); }
.button-secondary:hover {
  border-color: var(--blue-400);
  color: var(--blue-400);
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--navy-900);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > div {
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.proof-grid > div:last-child { border-right: 0; }

.proof-grid strong {
  display: block;
  color: var(--blue-400);
  font-size: 2rem;
}

.proof-grid span { color: var(--text-soft); }

.section { padding: 6rem 0; }
.section-dark { background: var(--navy-900); }

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  position: relative;
  min-height: 220px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.card-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--blue-400);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card h3 {
  margin-bottom: 0.65rem;
  color: var(--white);
}

.card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.industry-grid article {
  padding: 1.5rem;
  border-left: 3px solid var(--blue-500);
  background: var(--navy-900);
}

.industry-grid strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.industry-grid p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.cta-section {
  border-block: 1px solid var(--line);
  background: var(--navy-850);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.contact-section { border-top: 1px solid var(--line); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--navy-900);
}

.contact-panel a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-panel a:hover { color: var(--blue-400); }
.contact-panel span { color: var(--text-soft); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #020b17;
}

.footer-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel span:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--navy-950);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.9rem; }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .proof-grid,
  .cards,
  .industry-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:last-child { border-bottom: 0; }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 0.82rem; }

  .hero-inner {
    min-height: 560px;
    padding-block: 4.5rem;
  }

  .hero-panel { grid-template-columns: 1fr; }

  .hero-panel span:nth-child(odd) {
    border-right: 0;
  }

  .section { padding: 4rem 0; }

  .footer-inner {
    padding-block: 1.4rem;
    align-items: flex-start;
    flex-direction: column;
  }
}


.site-nav a.active {
  color: var(--blue-400);
}

.hero-compact .hero-inner {
  min-height: 590px;
}

.page-hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(3,16,33,.99), rgba(8,32,62,.92)),
    repeating-linear-gradient(135deg, transparent 0 55px, rgba(38,132,255,.06) 55px 56px);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
}

.cards-links .card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.cards-links .card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-500);
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--navy-900);
}

.product-placeholder,
.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed rgba(75,156,255,.45);
  background:
    linear-gradient(135deg, rgba(38,132,255,.08), transparent),
    var(--navy-850);
  color: var(--blue-400);
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

.product-card p {
  color: var(--text-soft);
}

.product-card a {
  color: var(--blue-400);
  font-weight: 800;
  text-decoration: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.detail-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.detail-list li {
  margin-bottom: .65rem;
}

@media (max-width: 860px) {
  .product-card {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero {
    padding: 4.5rem 0 3.5rem;
  }
}


.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-detail-card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: var(--navy-900);
}

.contact-detail-card h2,
.contact-detail-card h3 {
  margin-bottom: .8rem;
}

.contact-detail-card a {
  color: var(--white);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-detail-card a:hover {
  color: var(--blue-400);
}

.contact-detail-card p,
.contact-detail-card address {
  margin-bottom: 0;
  color: var(--text-soft);
  font-style: normal;
}

@media (max-width: 760px) {
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}


.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
  gap: 2rem;
  align-items: start;
}

.enquiry-form {
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: var(--navy-900);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-grid label,
.consent-row {
  display: grid;
  gap: .45rem;
  color: var(--white);
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: .85rem .95rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  background: var(--navy-950);
  color: var(--white);
  font: inherit;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
}

.form-grid small {
  color: var(--text-soft);
  font-weight: 400;
}

.full-width {
  grid-column: 1 / -1;
}

.form-footer {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--text-soft);
  font-weight: 400;
}

.consent-row input {
  margin-top: .3rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--blue-400);
}

.form-sidebar {
  display: grid;
  gap: 1rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.thank-you-section {
  min-height: calc(100vh - 162px);
  display: grid;
  align-items: center;
}

@media (max-width: 860px) {
  .form-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }
}


.form-status-success {
  color: #7ee2a8;
}

.form-status-error {
  color: #ff9a9a;
}

#submit-button:disabled {
  cursor: wait;
  opacity: .65;
}


.home-hero .hero-inner {
  min-height: 660px;
}

.hero-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75,156,255,.35);
  background:
    linear-gradient(135deg, rgba(38,132,255,.10), transparent),
    repeating-linear-gradient(135deg, transparent 0 44px, rgba(75,156,255,.06) 44px 45px),
    var(--navy-850);
  color: var(--blue-400);
  font-weight: 800;
  text-align: center;
}

.home-services {
  padding: 6rem 0;
  background: var(--navy-950);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading-row h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.text-link {
  flex: 0 0 auto;
  color: var(--blue-400);
  text-decoration: none;
  font-weight: 800;
}

.text-link:hover {
  color: var(--white);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-feature-card {
  min-height: 285px;
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--navy-900);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-500);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--blue-400);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.service-feature-card h3 {
  margin-bottom: .65rem;
}

.service-feature-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.home-proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.featured-product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.3rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.featured-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-500);
}

.featured-product-image,
.recent-work-image {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(75,156,255,.4);
  background:
    linear-gradient(135deg, rgba(38,132,255,.08), transparent),
    var(--navy-850);
  color: var(--blue-400);
  font-weight: 800;
  text-align: center;
}

.featured-product-copy {
  align-self: center;
}

.featured-product-copy > span,
.recent-work-card > div:last-child > span {
  color: var(--blue-400);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-product-copy h3,
.recent-work-card h3 {
  margin: .45rem 0 .55rem;
}

.featured-product-copy p,
.recent-work-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.industry-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.industry-home-grid article {
  padding: 1.6rem;
  border-top: 3px solid var(--blue-500);
  background: var(--navy-900);
}

.industry-home-grid span {
  color: var(--blue-400);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.industry-home-grid h3 {
  margin: 2rem 0 .5rem;
}

.industry-home-grid p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.recent-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.recent-work-card {
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.recent-work-card > div:last-child {
  padding: 1rem .2rem .25rem;
}

.home-gallery-preview {
  background: var(--navy-950);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-gallery-grid div {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(75,156,255,.38);
  background:
    linear-gradient(135deg, rgba(38,132,255,.06), transparent),
    var(--navy-900);
  color: var(--blue-400);
  font-weight: 800;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .8fr;
  gap: 2rem;
  padding-block: 3rem;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: .45rem;
}

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

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--text-soft);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: .9rem;
}

@media (max-width: 1050px) {
  .service-feature-grid,
  .home-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-product-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-product-grid,
  .industry-home-grid,
  .recent-work-grid,
  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .service-feature-grid,
  .home-proof-grid,
  .home-gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-block: 1.3rem;
    align-items: flex-start;
    flex-direction: column;
  }
}


/* v0.7 real-building homepage hero */
.home-hero-building {
  min-height: 690px;
  background:
    linear-gradient(90deg,
      rgba(3, 16, 33, 0.98) 0%,
      rgba(3, 16, 33, 0.92) 32%,
      rgba(3, 16, 33, 0.50) 58%,
      rgba(3, 16, 33, 0.10) 100%
    ),
    linear-gradient(0deg, rgba(3, 16, 33, 0.18), rgba(3, 16, 33, 0.18)),
    url("../images/kendrick-building.png") center right / cover no-repeat;
}

.home-hero-building::before,
.home-hero-building::after {
  display: none;
}

.home-hero-building .hero-inner {
  min-height: 690px;
  display: flex;
  align-items: center;
}

.hero-content-panel {
  max-width: 720px;
  padding: 2rem 0;
}

.hero-content-panel h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.7vw, 6rem);
  text-transform: uppercase;
}

.hero-content-panel .hero-copy {
  max-width: 650px;
  font-size: 1.08rem;
}

@media (max-width: 860px) {
  .home-hero-building {
    min-height: 650px;
    background:
      linear-gradient(90deg,
        rgba(3, 16, 33, 0.98) 0%,
        rgba(3, 16, 33, 0.90) 58%,
        rgba(3, 16, 33, 0.62) 100%
      ),
      url("../images/kendrick-building.png") center / cover no-repeat;
  }

  .home-hero-building .hero-inner {
    min-height: 650px;
  }
}

@media (max-width: 560px) {
  .home-hero-building {
    min-height: 620px;
    background:
      linear-gradient(rgba(3, 16, 33, 0.88), rgba(3, 16, 33, 0.92)),
      url("../images/kendrick-building.png") 65% center / cover no-repeat;
  }

  .home-hero-building .hero-inner {
    min-height: 620px;
  }

  .hero-content-panel h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
}


/* v0.8 Hero refinements */
.home-hero-building{
  background-position: 72% center;
}

.hero-content-panel h1{
  line-height:0.95;
  letter-spacing:-0.03em;
}

.hero-content-panel .hero-actions .button-primary{
  transform:scale(1.04);
}

.hero-content-panel .hero-actions{
  gap:1rem;
}

@media (min-width: 900px){
.home-hero-building{
 animation: heroPan 18s ease-in-out infinite alternate;
}
}

@keyframes heroPan{
 from{background-position:68% center;}
 to{background-position:74% center;}
}


/* v0.9 enhanced building hero */
.home-hero-building {
  min-height: 690px;
  animation: none;
  background:
    linear-gradient(90deg,
      rgba(3, 16, 33, 0.99) 0%,
      rgba(3, 16, 33, 0.95) 27%,
      rgba(3, 16, 33, 0.70) 45%,
      rgba(3, 16, 33, 0.18) 68%,
      rgba(3, 16, 33, 0.04) 100%
    ),
    url("../images/kendrick-building-enhanced.jpg") 66% center / cover no-repeat;
}

.home-hero-building .hero-inner {
  min-height: 690px;
}

.hero-content-panel {
  max-width: 670px;
}

.hero-content-panel h1 {
  max-width: 680px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
  line-height: .93;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero-highlight {
  display: inline-block;
  margin-top: .2rem;
  color: var(--blue-500);
}

.hero-content-panel .hero-copy {
  max-width: 630px;
}

@media (max-width: 860px) {
  .home-hero-building {
    background:
      linear-gradient(90deg,
        rgba(3,16,33,.98) 0%,
        rgba(3,16,33,.92) 55%,
        rgba(3,16,33,.55) 100%
      ),
      url("../images/kendrick-building-enhanced.jpg") 64% center / cover no-repeat;
  }
}

@media (max-width: 560px) {
  .home-hero-building {
    min-height: 650px;
    background:
      linear-gradient(rgba(3,16,33,.88), rgba(3,16,33,.94)),
      url("../images/kendrick-building-enhanced.jpg") 64% center / cover no-repeat;
  }

  .home-hero-building .hero-inner {
    min-height: 650px;
  }

  .hero-content-panel h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }
}


/* v1.2 approved hero positioning */
.home-hero-building {
  min-height: 690px;
  animation: none;
  background:
    linear-gradient(90deg,
      rgba(3, 16, 33, 0.99) 0%,
      rgba(3, 16, 33, 0.97) 24%,
      rgba(3, 16, 33, 0.84) 37%,
      rgba(3, 16, 33, 0.43) 51%,
      rgba(3, 16, 33, 0.10) 68%,
      rgba(3, 16, 33, 0.02) 100%
    ),
    url("../images/kendrick-building-hero-v12.jpg") center center / cover no-repeat;
}

.home-hero-building .hero-inner {
  min-height: 690px;
}

@media (max-width: 860px) {
  .home-hero-building {
    background:
      linear-gradient(90deg,
        rgba(3,16,33,.98) 0%,
        rgba(3,16,33,.94) 48%,
        rgba(3,16,33,.58) 100%
      ),
      url("../images/kendrick-building-hero-v12.jpg") 62% center / cover no-repeat;
  }
}

@media (max-width: 560px) {
  .home-hero-building {
    min-height: 650px;
    background:
      linear-gradient(rgba(3,16,33,.88), rgba(3,16,33,.95)),
      url("../images/kendrick-building-hero-v12.jpg") 63% center / cover no-repeat;
  }

  .home-hero-building .hero-inner {
    min-height: 650px;
  }
}


/* v1.3 trust and industries sections */
.why-section,
.industries-section {
  padding: 6rem 0;
}

.why-section {
  background: var(--navy-950);
}

.industries-section {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.why-card {
  min-height: 300px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-500);
  background: rgba(255,255,255,.04);
}

.why-number,
.industry-mark {
  display: inline-block;
  color: var(--blue-400);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.why-card h3 {
  margin: 3.2rem 0 .75rem;
}

.why-card p {
  margin: 0;
  color: var(--text-soft);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.industry-card {
  min-height: 230px;
  padding: 1.4rem;
  border-top: 3px solid var(--blue-500);
  background: var(--navy-950);
}

.industry-card h3 {
  margin: 2.2rem 0 .6rem;
}

.industry-card p {
  margin: 0;
  color: var(--text-soft);
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 700px) {
  .why-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .industry-card {
    min-height: auto;
  }
}

.why-subtitle{max-width:760px;color:var(--text-soft);margin:.75rem 0 0}
.why-line{width:120px;height:4px;background:var(--blue-500);margin:1.25rem 0 2rem}
.why-card{position:relative;border:1px solid rgba(255,255,255,.08);border-radius:14px;overflow:hidden}
.why-card:before{content:"";position:absolute;left:0;top:0;width:100%;height:3px;background:var(--blue-500);transform:scaleX(0);transform-origin:left;transition:.25s}
.why-card:hover:before{transform:scaleX(1)}
.why-card:hover{transform:translateY(-8px);box-shadow:0 12px 30px rgba(0,0,0,.35)}
.why-icon{font-size:2rem;margin-bottom:2rem}


/* v1.5 final Why Choose section */
.why-section {
  padding: 6.5rem 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 55%),
    var(--navy-950);
}

.why-heading {
  max-width: 900px;
  margin-bottom: 3rem;
}

.why-heading h2 {
  max-width: 760px;
  margin: .65rem 0 0;
}

.why-intro {
  max-width: 790px;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.why-line {
  width: 120px;
  height: 3px;
  margin-top: 1.5rem;
  background: var(--blue-500);
}

.why-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-feature {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.35rem;
  min-height: 250px;
  padding: 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  overflow: hidden;
  transition: background .2s ease, transform .2s ease;
}

.why-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue-500);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .22s ease;
}

.why-feature:hover {
  background: rgba(255,255,255,.035);
  transform: translateY(-3px);
}

.why-feature:hover::before {
  transform: scaleY(1);
}

.why-feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75,156,255,.35);
  background: rgba(38,132,255,.06);
}

.why-feature-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .2s ease;
}

.why-feature:hover .why-feature-icon svg {
  stroke: var(--blue-400);
}

.why-kicker {
  display: inline-block;
  margin-bottom: .55rem;
  color: var(--blue-400);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.why-feature h3 {
  margin: 0 0 .7rem;
}

.why-feature p {
  margin: 0;
  color: var(--text-soft);
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-stats > div {
  display: grid;
  gap: .2rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line);
}

.why-stats > div:last-child {
  border-right: 0;
}

.why-stats strong {
  color: var(--blue-400);
  font-size: 1.8rem;
  line-height: 1;
}

.why-stats span {
  color: var(--text-soft);
  font-size: .88rem;
}

@media (max-width: 850px) {
  .why-feature-list {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stats > div:nth-child(2) {
    border-right: 0;
  }

  .why-stats > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .why-section {
    padding: 4.5rem 0;
  }

  .why-feature {
    grid-template-columns: 1fr;
    padding: 1.6rem;
  }

  .why-feature-icon {
    width: 52px;
    height: 52px;
  }

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

  .why-stats > div,
  .why-stats > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-stats > div:last-child {
    border-bottom: 0;
  }
}


/* v1.6 simplified premium homepage */
.homepage-trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy-900);
}

.homepage-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.homepage-trust-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 120px;
  padding: 1.3rem 1.5rem;
  border-right: 1px solid var(--line);
}

.homepage-trust-grid > div:last-child {
  border-right: 0;
}

.trust-symbol {
  min-width: 58px;
  color: var(--blue-400);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.homepage-trust-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.5;
}

.homepage-trust-grid strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .homepage-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .homepage-trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .homepage-trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .homepage-trust-grid {
    grid-template-columns: 1fr;
  }

  .homepage-trust-grid > div,
  .homepage-trust-grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .homepage-trust-grid > div:last-child {
    border-bottom: 0;
  }
}
