/* Combined Ascenvia stylesheet.
   Generated from style.css, index.css, and inner.css.
   Edit this file as the source of truth. */

:root {
  --green: #6b1528;
  --green-mid: #821a30;
  --green-dark: #3d0a16;
  --green-black: #250612;
  --gold: #d4a843;
  --gold-lt: #e8bf5a;
  --gold-pale: #f8e8c8;
  --ivory: #fdf8f2;
  --ivory-2: #f2e8dc;
  --white: #ffffff;
  --txt: #2a0810;
  --txt-b: #6e4455;
  --txt-m: #a07585;
  --shadow: 0 8px 40px rgba(61,10,22,.12);
  --shadow-g: 0 4px 24px rgba(201,168,76,.18);
  --ff-d: 'Cormorant Garamond', 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif;
  --ff-b: 'Jost', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 2.5rem;
  background: rgba(107,21,40,.15);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,.07);
  transition: background .4s,box-shadow .4s;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--green)!important;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.3rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .2s,transform .2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: .3s;
}

.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--green-dark);
  padding: 1rem 2rem 2rem;
  gap: .9rem;
}

.mob-menu a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mob-menu.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ff-b);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background .2s,transform .2s,box-shadow .2s;
  white-space: nowrap;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--green);
}

.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: var(--shadow-g);
}

.btn-dark {
  background: var(--green);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--green-mid);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border: 1px solid rgba(107,21,40,.3);
}

.btn-outline-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.h-display {
  font-family: var(--ff-d);
  font-weight: 300;
  line-height: 1.12;
  color: var(--txt);
}

.h-display em {
  font-style: italic;
  color: var(--gold);
}

.h-display.light {
  color: var(--white);
}

.body-text.light {
  color: rgba(255,255,255,.55)!important;
}

.photo-section {
  position: relative;
  overflow: hidden;
}

.photo-section img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(37,6,18,.92) 0%,rgba(13,2,5,.55) 60%,rgba(37,6,18,.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 4rem 8vw;
  padding-top: 7rem;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: .8rem 0 1.6rem;
}

.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  border-radius: var(--radius);
  transition: transform .3s,box-shadow .3s,border-color .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.check-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .42rem;
  top: .68rem;
}

.img-break {
  position: relative;
  height: 440px;
  overflow: hidden;
}

.img-break.tall {
  height: 540px;
}

.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.img-break:hover img {
  transform: scale(1.03);
}

.img-break-text {
  max-width: 740px;
  text-align: center;
  padding: 2rem;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: mq 32s linear infinite;
  width: max-content;
}

.marquee-track .dot {
  color: var(--gold);
  font-size: .45rem;
}

@keyframes mq {
  0%{transform:translateX(0)}100%{transform:translateX(-50%)}
}

.stat-box:last-child {
  border-right: none;
}

.cta-banner-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-c-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gold-pale);
  transition: opacity .2s;
}

.cta-c-item:hover {
  opacity: .65;
}

.cta-divider {
  color: rgba(245,224,188,.3);
  font-size: 1.1rem;
}

.cta-banner-inner .btn-dark {
  background: var(--gold);
  color: var(--green-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer-contacts a:hover {
  color: var(--gold-pale);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  text-align: center;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease,transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .45s;
}

body {
  font-family: var(--ff-b);
  font-weight: 300;
  color: var(--txt);
  background: #fdf6f0;
  line-height: 1.7;
  overflow-x: hidden;
}

.stat-box {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,.1);
  border-right-color: rgba(200,146,42,.1);
}

.footer-logo span,
.nav-logo span {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,146,42,.08);
  border: 1px solid rgba(200,146,42,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.stat-num {
  display: block;
  font-family: var(--ff-d);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold) !important;
  line-height: 1;
}

.stats-band {
  background: #250612 !important;
  padding: 4rem 0;
}

.marquee-wrap {
  background: #250612 !important;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  border-top-color: rgba(200,146,42,.15);
  border-bottom-color: rgba(200,146,42,.15);
}

.marquee-track span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(248,232,200,.82) !important;
}

.footer {
  background: #1a0509 !important;
  padding: 5rem 0 0;
}

.footer-contacts a,
.footer-col a {
  color: rgba(248,232,200,.75) !important;
}

.footer-contacts a:hover,
.footer-col a:hover {
  color: var(--gold) !important;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 1rem;
}

.eyebrow::before,
.eyebrow::after {
  background: var(--gold) !important;
}

.cta-banner {
  background: linear-gradient(135deg, #6b1528 0%, #3d0a16 100%) !important;
  padding: 5.5rem 2rem;
}

.cta-banner-inner h2 {
  font-family: var(--ff-d);
  font-size: clamp(1.9rem,3vw,2.8rem);
  font-weight: 400;
  color: var(--gold-pale) !important;
  margin-bottom: .8rem;
}

.cta-banner-inner p {
  font-size: .92rem;
  color: rgba(248,232,200,.88) !important;
  margin-bottom: 2rem;
}

.cta-banner .cta-c-item {
  color: var(--gold-pale) !important;
}

.cta-banner .cta-divider {
  color: rgba(248,232,200,.82) !important;
}

.img-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(37,6,18,.5) 0%, rgba(37,6,18,.75) 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-overlay {
  background: linear-gradient(to top, rgba(37,6,18,.92) 0%, rgba(37,6,18,.55) 60%, rgba(37,6,18,.2) 100%) !important;
}

.nav.scrolled {
  background: rgba(37,6,18,.97) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.body-text {
  font-size: .92rem;
  color: #4a2535 !important;
  line-height: 1.8;
}

.check-list li {
  font-size: .88rem;
  color: #4a2535 !important;
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.footer-contacts a {
  display: block;
  font-size: .82rem;
  color: rgba(248,232,200,.8)  !important;
  margin-bottom: .45rem;
  transition: color .2s;
}

.footer-col a {
  display: block;
  font-size: .82rem;
  color: rgba(248,232,200,.72) !important;
  margin-bottom: .55rem;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--gold-lt)        !important;
}

.footer-desc {
  font-size: .83rem;
  color: rgba(248,232,200,.72) !important;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-bottom p {
  font-size: .75rem;
  color: rgba(248,232,200,.42) !important;
}

.footer-col h4 {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold)           !important;
  margin-bottom: 1.2rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold) !important;
}

.h-display.light em {
  color: var(--gold-pale) !important;
}

.img-break-text h2 {
  font-family: var(--ff-d);
  font-size: clamp(1.9rem,3.2vw,3rem);
  font-weight: 300;
  color: #fff !important;
  line-height: 1.25;
  margin: 1rem 0 2rem;
}

.stat-lbl {
  display: block;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248,232,200,.75) !important;
  margin-top: .4rem;
}

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  font-size: .8rem;
  font-weight: 500;
  transition: transform .2s,box-shadow .2s;
}

.values-section-bg {
  background: #3d0a16 !important;
}

.svc-num {
  font-family: 'Palatino Linotype', Georgia, serif !important;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  color: rgba(212,168,67,.6) !important;
  line-height: 1 !important;
  padding-top: .3rem !important;
}

.ihg-img img::after {
  content: attr(alt) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  background: #3d0a16 !important;
  color: var(--gold) !important;
  font-size: .8rem !important;
}

.inner-section .values-grid {
  margin-top: 0 !important;
}

.values-section-wrap,
section.inner-section.values-bg {
  background: #2a0810 !important;
}

.hp-icon svg {
  color: var(--gold) !important;
}

.hp-icon svg path,
.hp-icon svg line,
.hp-icon svg rect,
.hp-icon svg circle,
.hp-icon svg polyline {
  stroke: var(--gold) !important;
}

.footer-contacts span,
.footer-contacts span[style],
span.footer-hours {
  color: rgba(248,232,200,.72) !important;
  font-size: .8rem !important;
}

.proc-step,
.hs-step {
  min-height: 230px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.proc-step h4,
.hs-step h4 {
  margin-bottom: .5rem;
}

.proc-step p,
.hs-step p {
  flex: 1;
}

footer span[style*="rgba(255,255,255,.25)"] {
  color: rgba(248,232,200,.72) !important;
}

.footer-contacts span {
  color: rgba(248,232,200,.62) !important;
  font-size: .8rem;
}

.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: .65rem !important;
  flex-shrink: 0;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

.values-section .val-card,
section[style*="background:#3d0a16"] .val-card,
section[style*="background:var(--green-dark)"] .val-card {
  background: rgba(61,10,22,.75) !important;
  border: 1px solid rgba(212,168,67,.2) !important;
}

.values-section {
  background: #3d0a16 !important;
}

.nav-logo img {
  height: 42px !important;
  width: 42px !important;
  object-fit: contain !important;
  filter: none !important;
  mix-blend-mode: multiply !important;
  background: #ffffff !important;
  border-radius: 5px !important;
  padding: 3px !important;
  box-shadow: 0 1px 8px rgba(0,0,0,.22) !important;
  display: block !important;
}

.nav-logo span {
  font-family: 'Cormorant Garamond','Palatino Linotype',Georgia,serif !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  color: #fff !important;
  letter-spacing: .06em !important;
  display: inline-block !important;
}

a.nav-logo,
.nav-inner a.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  text-decoration: none !important;
}

a.nav-logo img,
.nav-inner a.nav-logo img {
  display: block !important;
  height: 42px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: min(220px, 54vw) !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

a.nav-logo span,
.nav-inner a.nav-logo span {
  display: none !important;
  font-family: 'Cormorant Garamond','Palatino Linotype',Georgia,serif !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  letter-spacing: .06em !important;
  white-space: nowrap !important;
}

.hero .bg,
.photo-section .bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 0 !important;
}

.hero-overlay,
.bg-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}

.hero-inner,
.page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82) !important;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap !important;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0 !important;
  margin-bottom: 1.2rem;
}

.footer-logo img {
  height: 40px !important;
  object-fit: contain !important;
  filter: none !important;
  width: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  display: block !important;
  max-width: min(220px, 70vw) !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

.footer-logo span {
  font-family: var(--ff-d);
  font-size: 1.2rem;
  color: var(--white);
  display: none !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: linear-gradient(110deg,rgba(37,6,18,.92) 0%,rgba(13,2,5,.72) 50%,rgba(37,6,18,.5) 100%);
  position: absolute;
  inset: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  min-width: 300px;
}

.hp-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  backdrop-filter: blur(10px);
  padding: 1.1rem 1.4rem;
  transition: background .3s,border-color .3s,transform .2s;
  cursor: pointer;
}

.hp-card:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.35);
  transform: translateX(4px);
}

.hp-icon {
  background: rgba(107,21,40,.6);
  border-color: rgba(212,168,67,.3) !important;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(201,168,76,.2);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-icon.gold-icon {
  background: rgba(201,168,76,.1);
  color: var(--gold);
}

.hp-card h4 {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: .15rem;
  white-space: nowrap;
}

.hp-card p {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

.hp-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transition: opacity .2s,transform .2s;
}

.hp-card:hover .hp-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: .8rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(201,168,76,.35);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: sl 2s ease-in-out infinite;
}

@keyframes sl {
  0%{left:-100%}100%{left:100%}
}

.what-we-do {
  padding: 7rem 0;
  background: var(--ivory);
}

.wwd-header {
  margin-bottom: 4rem;
}

.div-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ivory-2);
  overflow: hidden;
  transition: transform .3s,box-shadow .3s,border-color .3s;
  cursor: pointer;
}

.div-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.div-card:hover .div-card-img img {
  transform: scale(1.06);
}

.div-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(37,6,18,.8) 0%,rgba(37,6,18,.28) 100%);
}

.div-card-img-overlay.iot-overlay {
  background: linear-gradient(to top,rgba(37,6,18,.85) 0%,rgba(201,168,76,.05) 100%);
}

.div-number {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-family: ui-sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  line-height: 1;
}

.div-live-badge {
  position: absolute;
  top: .9rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(37,6,18,.75);
  border: 1px solid rgba(201,168,76,.25);
  padding: .25rem .6rem;
  backdrop-filter: blur(6px);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: ld 2s ease-in-out infinite;
}

@keyframes ld {
  0%,100%{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.7)}
}

.div-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--txt-m);
  margin-bottom: .6rem;
}

.div-label.gold-label {
  color: var(--gold);
}

.div-card-body h3 {
  font-family: var(--ff-d);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--txt);
  line-height: 1.2;
  margin-bottom: .9rem;
}

.div-card-body p {
  color: var(--txt-b);
  font-size: .86rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex: 1;
}

.div-certs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.5rem;
}

.div-certs span {
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .07em;
  padding: .22rem .6rem;
  background: var(--ivory);
  border: 1px solid var(--ivory-2);
  color: var(--txt-b);
  border-radius: 2px;
}

.div-link {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid rgba(107,21,40,.2);
  padding-bottom: 1px;
  display: inline-block;
  align-self: flex-start;
  transition: color .2s,border-color .2s;
}

.div-link.gold-link {
  color: var(--gold);
  border-color: rgba(201,168,76,.3);
}

.div-card:hover .div-link {
  border-color: currentColor;
}

.why-section {
  padding: 7rem 0;
  background: var(--ivory-2);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.8rem;
  text-align: center;
}

.wb-num {
  display: block;
  font-family: var(--ff-d);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
}

.wb-lbl {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(37,6,18,.75);
  margin-top: .3rem;
  line-height: 1.4;
}

.process-section {
  background: var(--green-dark);
  padding: 7rem 0;
}

.proc-num {
  color: rgba(201,168,76,.3);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block !important;
  font-family: var(--ff-d);
  font-weight: 300;
  line-height: 1;
}

.proc-step h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .5rem;
  font-family: var(--ff-d);
  font-weight: 500;
}

.proc-step p {
  color: rgba(255,255,255,.38);
  font-size: .78rem;
  line-height: 1.6;
  flex: 1;
}

.hero-inner,
.what-we-do .container,
.why-section .container,
.process-section .container,
.stats-band .container {
  width: 100%;
}

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

.hero-content .h-display {
  max-width: 10ch;
}

.hero-content .body-text {
  text-wrap: pretty;
}

.hero-content .body-text.light {
  color: rgba(255,255,255,.78) !important;
}

.hp-card,
.div-card,
.proc-step,
.stat-box,
.cta-c-item {
  min-width: 0;
}

.hp-card > div:not(.hp-icon),
.div-card-body,
.proc-step {
  overflow-wrap: anywhere;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  align-items: stretch;
}

.div-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.why-text {
  min-width: 0;
}

.stats-row {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.process-steps {
  align-items: stretch;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.proc-step {
  background: rgba(255,255,255,.03);
  border-color: rgba(212,168,67,.15) !important;
  border: 1px solid rgba(201,168,76,.08);
  display: flex !important;
  flex-direction: column !important;
  min-height: 200px !important;
  justify-content: flex-start;
  flex: 1;
  min-width: 160px;
  max-width: none;
  text-align: center;
  padding: 2rem 1.5rem;
  width: 100%;
}

.proc-arrow {
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding-bottom: 2rem;
  padding: 0 .2rem;
  align-self: center;
  font-size: 1.3rem;
  color: rgba(201,168,76,.3);
  flex-shrink: 0;
}

.inner-section {
  padding: 6rem 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-flip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.stat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ivory-2);
}

.sp-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.sp-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,var(--gold) 0%,transparent 100%);
}

.sp-num {
  display: block;
  font-family: var(--ff-d);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--txt);
  line-height: 1;
}

.sp-lbl {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-m);
  margin-top: .4rem;
}

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

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

.team-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(212,168,67,.15) !important;
  border: 1px solid rgba(201,168,76,.1);
  overflow: hidden;
}

.team-photo {
  height: 240px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-card h4 {
  font-family: var(--ff-d);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  padding: 1.4rem 1.5rem .2rem;
}

.team-card span {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 1.5rem .8rem;
}

.team-card p {
  color: rgba(255,255,255,.38);
  font-size: .82rem;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5px;
  background: rgba(255,255,255,.04);
}

.cert-card {
  background: var(--green-dark);
  border-color: rgba(212,168,67,.12) !important;
  padding: 2.2rem;
  border: 1px solid rgba(201,168,76,.08);
  transition: background .3s;
}

.cert-card:hover {
  background: var(--green-mid);
}

.cc-code {
  display: block;
  font-family: var(--ff-d);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: .3rem;
}

.cc-name {
  color: rgba(255,255,255,.45);
  display: block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.cert-card p {
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  line-height: 1.6;
}

.dash-mock {
  background: #4a0f1c;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.dm-header {
  background: #3d0a16;
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  border-bottom: 1px solid rgba(201,168,76,.1);
}

.dm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dm-dot.r {
  background: #ff5f57;
}

.dm-dot.y {
  background: #febc2e;
}

.dm-dot.g {
  background: #28c840;
}

.dm-title {
  margin-left: .7rem;
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
}

.dm-body {
  padding: 1.4rem;
}

.dm-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(201,168,76,.08);
  margin-bottom: 1.3rem;
}

.dms {
  background: #4a0f1c;
  padding: .9rem;
  text-align: center;
}

.dms-v {
  display: block;
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.dms-l {
  display: block;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: .25rem;
}

.dm-chart-label {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: .5rem;
}

.dm-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
  margin-bottom: 1.1rem;
}

.dm-bar {
  flex: 1;
  background: rgba(201,168,76,.18);
  border-radius: 2px 2px 0 0;
  position: relative;
}

.dm-bar.active {
  background: var(--gold);
}

.dm-bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .58rem;
  color: rgba(255,255,255,.25);
}

.dm-alerts {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .5rem;
}

.dm-alert {
  font-size: .68rem;
  padding: .38rem .7rem;
  border-radius: 2px;
}

.dm-alert.ok {
  background: rgba(74,222,128,.07);
  border-left: 2px solid rgba(74,222,128,.4);
  color: rgba(74,222,128,.75);
}

.dm-alert.warn {
  background: rgba(251,191,36,.07);
  border-left: 2px solid rgba(251,191,36,.4);
  color: rgba(251,191,36,.75);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5px;
  background: rgba(255,255,255,.03);
}

.feat-box {
  background: var(--green-black);
  border-color: rgba(212,168,67,.1) !important;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(201,168,76,.06);
  transition: background .3s;
}

.feat-box:hover {
  background: rgba(107,21,40,.5);
}

.fb-icon {
  font-size: 1.6rem;
  margin-bottom: .9rem;
  line-height: 1;
}

.feat-box h4 {
  color: var(--white);
  font-family: var(--ff-d);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.feat-box p {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
  line-height: 1.6;
}

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

.ihg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ihg-card:hover .ihg-img img {
  transform: scale(1.06);
}

.ihg-body {
  padding: 1.8rem;
}

.ihg-body h4 {
  font-family: var(--ff-d);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: .7rem;
}

.ihg-body p {
  color: var(--txt-b);
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.how-steps {
  align-items: flex-start;
  display: flex;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr !important;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.hs-step {
  background: rgba(255,255,255,.03);
  border-color: rgba(212,168,67,.12) !important;
  border: 1px solid rgba(201,168,76,.08);
  display: flex !important;
  flex-direction: column !important;
  min-height: 200px !important;
  justify-content: flex-start;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 2rem 1.2rem;
}

.hs-num {
  color: rgba(201,168,76,.3);
  font-size: 2rem;
  margin-bottom: .9rem;
  display: block;
  font-family: var(--ff-d);
  font-weight: 300;
}

.hs-step h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--ff-d);
  font-weight: 500;
  margin-bottom: .5rem;
}

.hs-step p {
  color: rgba(255,255,255,.35);
  font-size: .76rem;
  flex: 1;
  line-height: 1.6;
}

.hs-arrow {
  display: flex !important;
  align-items: center !important;
  padding: 0 .3rem !important;
  align-self: center;
  font-size: 1.2rem;
  color: rgba(201,168,76,.3);
  flex-shrink: 0;
  padding-bottom: 2.5rem;
}

.pstat-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  margin-bottom: 0;
}

.ps-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--ivory-2);
}

.ps-num {
  display: block;
  font-family: var(--ff-d);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--txt);
}

.ps-lbl {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-m);
  margin-top: .4rem;
}

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

.ind-card {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.ind-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.ind-card:hover img {
  transform: scale(1.07);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(37,6,18,.88) 0%,transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}

.ind-overlay h4 {
  font-family: var(--ff-d);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .25rem;
}

.ind-overlay p {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}

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

.testi-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(212,168,67,.12) !important;
  border: 1px solid rgba(201,168,76,.1);
  padding: 2.2rem;
}

.tc-q {
  font-family: var(--ff-d);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: .4rem;
}

.testi-card p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.3rem;
}

.tc-auth {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.tc-auth strong {
  color: var(--white);
  display: block;
  font-size: .85rem;
  font-weight: 500;
}

.tc-auth span {
  color: rgba(255,255,255,.3);
  display: block;
  font-size: .72rem;
  margin-top: .1rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 1px;
  background: var(--ivory-2);
}

.logo-grid div {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  height: 100px;
}

.client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .7rem;
  transition: transform .3s,filter .3s;
  filter: grayscale(20%);
}

.client-logo:hover {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-col p.body-text {
  margin-bottom: 2rem;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.c-icon {
  width: 38px;
  height: 38px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: .95rem;
}

.c-detail strong {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-m);
  margin-bottom: .15rem;
}

.c-detail a,
.c-detail span {
  font-size: .9rem;
  color: var(--txt);
}

.c-img {
  margin-top: 2rem;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
}

.c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-card {
  background: var(--white);
  padding: 2.8rem;
  border: 1px solid var(--ivory-2);
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--txt);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ivory-2);
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.2rem;
}

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

.fg label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-m);
}

.fg input,
.fg select,
.fg textarea {
  font-family: var(--ff-b);
  font-size: .88rem;
  font-weight: 300;
  color: var(--txt);
  background: var(--ivory);
  border: 1px solid var(--ivory-2);
  padding: .72rem 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
}

.fg textarea {
  resize: vertical;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ivory-2);
}

.svc-item {
  padding: 1.6rem 0 !important;
  border-bottom: 1px solid var(--ivory-2) !important;
  display: grid !important;
  grid-template-columns: 52px 1fr !important;
  gap: 1.5rem !important;
  align-items: start !important;
  border-top: none !important;
  margin: 0 !important;
}

.svc-item:first-child {
  border-top: none !important;
}

.svc-item h4 {
  font-size: 1.2rem !important;
  margin-bottom: .3rem !important;
  color: var(--txt) !important;
  font-weight: 500 !important;
  font-family: 'Palatino Linotype','Book Antiqua',Palatino,Georgia,serif;
}

.svc-item p {
  color: var(--txt-b) !important;
  font-size: .87rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.val-card {
  background: rgba(85,16,32,1) !important;
  border: 1px solid rgba(212,168,67,.22) !important;
  padding: 2.5rem 2rem !important;
  transition: background .3s !important;
}

.val-card:hover {
  background: rgba(107,21,40,.7) !important;
}

.val-num {
  color: rgba(212,168,67,.45) !important;
  font-size: 2rem !important;
  font-family: 'Palatino Linotype','Book Antiqua',Palatino,Georgia,serif;
  font-weight: 300;
  margin-bottom: 1rem !important;
  line-height: 1 !important;
}

.val-card h4 {
  color: #f8e8c8 !important;
  font-size: 1.25rem !important;
  font-family: 'Palatino Linotype','Book Antiqua',Palatino,Georgia,serif;
  font-weight: 500;
  margin-bottom: .6rem !important;
}

.val-card p {
  color: rgba(248,232,200,.8) !important;
  font-size: .85rem;
  line-height: 1.7;
}

.div-card-img {
  height: 220px !important;
  overflow: hidden;
  background: #3d0a16;
  position: relative;
}

.div-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s;
}

.ihg-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  overflow: hidden;
  transition: transform .3s,box-shadow .3s;
}

.ihg-img {
  height: 200px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #3d0a16, #6b1528) !important;
}

.ihg-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  min-height: 200px;
  transition: transform .5s;
}

.consulting-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cons-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2.5rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--ivory-2);
  align-items: start;
  transition: background .2s;
}

.cons-card:first-child {
  border-top: 1px solid var(--ivory-2);
}

.cons-card:hover {
  background: rgba(107,21,40,.03);
}

.cons-icon {
  width: 64px;
  height: 64px;
  background: rgba(107,21,40,.07);
  border: 1px solid rgba(107,21,40,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b1528;
  flex-shrink: 0;
  border-radius: 3px;
  margin-top: .2rem;
}

.cons-body h4 {
  font-family: var(--ff-d);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--txt);
  margin-bottom: .7rem;
}

.cons-body > p {
  font-size: .9rem;
  color: var(--txt-b);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cons-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .5rem;
}

.cons-list li {
  font-size: .82rem;
  color: var(--txt-b);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}

.cons-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .38rem;
  top: .5rem;
}

.iot-divisions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.iot-div-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ivory-2);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.iot-div-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.idc-img {
  height: 240px;
  overflow: hidden;
}

.idc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.iot-div-card:hover .idc-img img {
  transform: scale(1.05);
}

.idc-body {
  padding: 2rem;
}

.idc-tag {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.idc-body h3 {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--txt);
  margin-bottom: .8rem;
}

.idc-body p {
  font-size: .88rem;
  color: var(--txt-b);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.idc-link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,168,67,.3);
  padding-bottom: 1px;
  display: inline-block;
}

@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
  }
  
  .hero-pillars {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }
  
  .hp-card {
    flex: 1;
    min-width: 200px;
  }
  
  .divisions-grid {
    grid-template-columns: 1fr;
  }
  
  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-badge {
    right: .5rem;
    bottom: -1rem;
  }
  
  .cert-grid {
    grid-template-columns: repeat(2,1fr);
  }
  
  .feat-grid {
    grid-template-columns: repeat(2,1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2,1fr);
  }
  
  .iot-home-grid {
    grid-template-columns: repeat(2,1fr);
  }
  
  .ind-grid {
    grid-template-columns: repeat(2,1fr);
  }
  
  .testi-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-grid {
    grid-template-columns: repeat(3,1fr);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .two-col,
  .two-col-flip {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .pstat-row {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav {
    padding: 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-box:nth-child(2n) {
    border-right: none;
  }
  
  .cta-contact-row {
    flex-direction: column;
    gap: .6rem;
  }
  
  .cta-divider {
    display: none;
  }
  
  .process-steps,
  .how-steps {
    grid-template-columns: 1fr !important;
  }
  
  .proc-arrow,
  .hs-arrow {
    justify-content: center !important;
    transform: rotate(90deg) !important;
    padding: .4rem 0 !important;
  }
  
  .hero-inner {
    padding-top: 5rem;
  }
  
  .hero-pillars {
    flex-direction: column;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .proc-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  
  .stats-row {
    grid-template-columns: repeat(2,1fr)!important;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
  }
  
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .iot-home-grid {
    grid-template-columns: 1fr;
  }
  
  .ind-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2,1fr);
  }
  
  .how-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .hs-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  
  .pstat-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .dash-mock {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    gap: 1.2rem;
  }
  
  .nav-links a {
    font-size: .72rem;
    letter-spacing: .08em;
  }
  
  .nav-cta {
    padding: .45rem 1rem;
    font-size: .72rem;
  }
  
  .hero {
    min-height: 100vh;
  }
  
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4rem) !important;
  }
  
  .hero-pillars {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: .8rem !important;
    min-width: auto !important;
  }
  
  .hp-card {
    flex: 1 1 200px;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .divisions-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem;
  }
  
  .div-card-img {
    height: 180px;
  }
  
  .why-inner {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  
  .why-visual img {
    aspect-ratio: 16/9;
    max-height: 320px;
  }
  
  .why-badge {
    right: .5rem;
    bottom: -.5rem;
    padding: 1.2rem;
  }
  
  .wb-num {
    font-size: 2rem;
  }
  
  .stats-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .process-steps {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
  }
  
  .proc-arrow:nth-child(6),
  .proc-arrow:nth-child(8) {
    display: none;
  }
  
  .two-col,
  .two-col-flip {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  
  .iot-divisions {
    grid-template-columns: 1fr 1fr;
  }
  
  .cert-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .feat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .iot-home-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .ind-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .testi-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .logo-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .pstat-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .stat-panel {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1.2rem;
  }
  
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .hero {
    min-height: 100vh;
  }
  
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 7rem 1.2rem 2rem !important;
  }
  
  .hero-content h1 {
    font-size: clamp(2.2rem, 8vw, 3rem) !important;
  }
  
  .hero-sub {
    font-size: .88rem !important;
  }
  
  .hero-pillars {
    flex-direction: column !important;
    min-width: auto !important;
  }
  
  .hp-card {
    width: 100%;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: .8rem;
  }
  
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .divisions-grid {
    grid-template-columns: 1fr !important;
  }
  
  .div-card-img {
    height: 200px;
  }
  
  .why-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .why-visual img {
    aspect-ratio: 16/9;
    max-height: 260px;
  }
  
  .why-badge {
    right: 0;
    bottom: 0;
    padding: 1rem;
  }
  
  .wb-num {
    font-size: 1.8rem;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .stat-box {
    border-right: none !important;
    border-bottom: 1px solid rgba(201,168,76,.1);
  }
  
  .process-steps,
  .how-steps {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .proc-arrow,
  .hs-arrow {
    transform: rotate(90deg) !important;
    padding: .3rem 0 !important;
    align-self: center !important;
  }
  
  .page-hero {
    min-height: 32vh;
  }
  
  .page-hero-content {
    padding: 0 1.5rem 2.5rem;
    padding-top: 6rem;
  }
  
  .page-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  
  .inner-section {
    padding: 4rem 0 !important;
  }
  
  .two-col,
  .two-col-flip {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .cert-grid {
    grid-template-columns: 1fr !important;
  }
  
  .feat-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .iot-home-grid {
    grid-template-columns: 1fr !important;
  }
  
  .ind-grid {
    grid-template-columns: 1fr !important;
  }
  
  .testi-grid {
    grid-template-columns: 1fr !important;
  }
  
  .values-grid {
    grid-template-columns: 1fr !important;
  }
  
  .team-grid {
    grid-template-columns: 1fr !important;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .pstat-row {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .stat-panel {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .iot-divisions {
    grid-template-columns: 1fr !important;
  }
  
  .consulting-grid .cons-card {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .cons-list {
    grid-template-columns: 1fr !important;
  }
  
  .services-list .svc-item {
    grid-template-columns: 40px 1fr !important;
    gap: 1rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr !important;
  }
  
  .form-card {
    padding: 1.8rem !important;
  }
  
  .cta-banner {
    padding: 3.5rem 1.5rem !important;
  }
  
  .cta-contact-row {
    flex-direction: column !important;
    gap: .6rem !important;
    align-items: center;
  }
  
  .cta-divider {
    display: none !important;
  }
  
  .cta-banner-inner h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
  }
  
  .img-break {
    height: 280px !important;
  }
  
  .img-break.tall {
    height: 320px !important;
  }
  
  .img-break-text h2 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }
  
  .marquee-track {
    animation-duration: 18s !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .footer {
    padding-top: 3rem !important;
  }
  
  .wa-float {
    padding: .6rem .9rem !important;
    font-size: .75rem !important;
  }
  
  .section-header,
  .wwd-header {
    margin-bottom: 2.5rem !important;
  }
  
  .h-display {
    font-size: clamp(1.7rem, 6vw, 2.5rem) !important;
  }
  
  .dash-mock {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .feat-grid {
    grid-template-columns: 1fr !important;
  }
  
  .stat-panel {
    grid-template-columns: 1fr !important;
  }
  
  .div-card-img {
    height: 180px;
  }
  
  .nav-logo span {
    font-size: 1.1rem !important;
  }
  
  .hero-content h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem) !important;
  }
  
  .btn {
    padding: .75rem 1.5rem !important;
    font-size: .75rem !important;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .nav {
    padding: 0 1.2rem !important;
  }
  
  .nav-inner {
    gap: 1rem !important;
  }
  
  .nav-links {
    gap: clamp(.75rem, 1.4vw, 1.15rem) !important;
  }
  
  .nav-links a {
    font-size: clamp(.62rem, .82vw, .72rem) !important;
    letter-spacing: .07em !important;
  }
  
  .nav-cta {
    padding: .45rem .95rem !important;
    font-size: .68rem !important;
  }
  
  a.nav-logo img,
  .nav-inner a.nav-logo img {
    height: 36px !important;
    max-width: 180px !important;
  }
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    min-height: auto;
  }
  
  .hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }
  
  .hp-card {
    flex: initial;
    align-items: flex-start;
    padding: 1rem;
  }
  
  .hp-arrow {
    opacity: 1;
  }
  
  .divisions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  
  .stat-box {
    border-right: 0;
    border-bottom: 1px solid rgba(201,168,76,.1);
  }
  
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
  }
}

@media (max-width: 900px) {
  .what-we-do,
  .why-section,
  .process-section {
    padding: 5rem 0;
  }
  
  .hero {
    min-height: auto;
  }
  
  .hero-inner {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  
  .hero-content .h-display {
    max-width: 9ch;
  }
  
  .hero-pillars {
    grid-template-columns: 1fr;
  }
  
  .hp-card {
    align-items: center;
  }
  
  .divisions-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  
  .div-card-img {
    height: clamp(190px, 36vw, 260px);
  }
  
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .why-visual img {
    aspect-ratio: 16 / 10;
    max-height: 380px;
  }
  
  .why-badge {
    right: 1rem;
    bottom: 1rem;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-overlay {
    background: linear-gradient(180deg, rgba(13,2,5,.9) 0%, rgba(37,6,18,.84) 54%, rgba(13,2,5,.78) 100%);
  }
  
  .hero-inner {
    padding: 6.5rem 1.1rem 3rem !important;
  }
  
  .hero-content .h-display {
    max-width: 100%;
    font-size: clamp(2.35rem, 15vw, 3.45rem) !important;
    line-height: 1.02;
  }
  
  .hero-btns {
    width: 100%;
    margin-top: 2rem;
  }
  
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hp-card {
    gap: .9rem;
    padding: .95rem;
  }
  
  .hp-card h4 {
    font-size: .98rem;
  }
  
  .hp-card p {
    font-size: .7rem;
    line-height: 1.45;
  }
  
  .wwd-header {
    margin-bottom: 2.5rem;
  }
  
  .div-card-body {
    padding: 1.45rem;
  }
  
  .div-card-body h3 {
    font-size: 1.35rem;
  }
  
  .img-break-text {
    padding: 1.25rem;
  }
  
  .stats-row {
    grid-template-columns: 1fr !important;
  }
  
  .stat-box {
    padding: 1.45rem 1rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  
  .proc-step {
    min-height: auto !important;
    padding: 1.45rem 1.2rem;
  }
  
  .cta-contact-row {
    align-items: stretch;
  }
  
  .cta-c-item {
    justify-content: center;
    text-align: center;
    word-break: break-word;
  }
  
  .wa-float {
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100vw - 2rem);
  }
}

@media (max-width: 380px) {
  .hero-inner {
    padding-left: .9rem !important;
    padding-right: .9rem !important;
  }
  
  .hp-icon {
    width: 38px;
    height: 38px;
  }
  
  .div-certs span {
    font-size: .58rem;
    padding: .2rem .45rem;
  }
  
  .wb-num {
    font-size: 2rem;
  }
  
  .wb-lbl {
    font-size: .6rem;
  }
}

@media(max-width: 768px) {
  .cons-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .cons-list {
    grid-template-columns: 1fr;
  }
  
  .iot-divisions {
    grid-template-columns: 1fr;
  }
}
