:root {
  --black: #080808;
  --black-soft: #11110f;
  --ink: #171714;
  --gold: #d4b04d;
  --gold-bright: #e1bc55;
  --cream: #f5f2e9;
  --white: #ffffff;
  --muted: #6f6d66;
  --line: rgba(23, 23, 20, 0.14);
  --max: 1180px;
  --header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.admin-bar .site-header { top: 32px; }
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed; z-index: 999; left: 1rem; top: -100px;
  padding: 0.85rem 1.2rem; background: var(--gold); color: var(--black);
  font-weight: 800; text-decoration: none; border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header); color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.12));
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}
.nav-shell {
  width: min(calc(100% - 48px), 1380px); height: 100%; margin: 0 auto;
  display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.4rem);
}
.brand { display: inline-flex; align-items: center; gap: .62rem; text-decoration: none; flex: 0 0 auto; }
.brand img.header-logo-mark { width: 52px; height: 52px; object-fit: cover; flex: 0 0 auto; border-radius: 8px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { color: var(--white); font-size: 1.08rem; letter-spacing: .17em; font-weight: 800; }
.brand-copy strong span { color: var(--gold); }
.brand-copy small { color: rgba(255,255,255,.58); margin-top: .4rem; font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; }
.primary-nav { margin-left: auto; }
.primary-nav-list { display: flex; align-items: center; gap: clamp(1rem, 2.1vw, 2rem); margin: 0; padding: 0; list-style: none; }
.primary-nav a {
  position: relative; color: rgba(255,255,255,.72); text-decoration: none;
  font-size: .78rem; font-weight: 650; letter-spacing: .03em; transition: color .2s ease;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -.55rem; height: 2px;
  background: var(--gold); transition: right .25s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav .current-menu-item > a { color: var(--white); }
.primary-nav a[href*="#solutions"], .primary-nav a[href*="#contact"] { color: var(--gold); }
.primary-nav a[href*="#solutions"]:hover, .primary-nav a[href*="#solutions"]:focus-visible, .primary-nav a[href*="#contact"]:hover, .primary-nav a[href*="#contact"]:focus-visible { color: var(--gold-bright); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after, .primary-nav .current-menu-item > a::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .7rem; padding: .78rem 1rem;
  background: var(--gold); color: var(--black); text-decoration: none;
  text-transform: uppercase; font-size: .69rem; letter-spacing: .11em; font-weight: 850;
  border-radius: 2px; transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 760px; height: 100svh; max-height: 920px; color: var(--white); background: var(--black); overflow: hidden; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; pointer-events: none; transition: opacity .75s ease; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-image { position: absolute; inset: -3%; background-size: cover; background-position: center; transform: scale(1.03); transition: transform 5s ease; }
.hero-image-cyber { background-image: url('../images/hero-cybersecurity.webp'); }
.hero-image-cloud { background-image: url('../images/hero-cloud.webp'); }
.hero-image-connectivity { background-image: url('../images/hero-connectivity.webp'); }
.hero-slide.is-active .hero-image { transform: scale(1); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(4,4,4,.97) 0%, rgba(4,4,4,.82) 35%, rgba(4,4,4,.28) 72%, rgba(4,4,4,.5) 100%),
    linear-gradient(0deg, rgba(4,4,4,.88) 0%, transparent 44%);
}
.hero-shell { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--max)); height: 100%; margin: auto; display: flex; align-items: center; }
.hero-copy { max-width: 760px; padding: calc(var(--header) + 2rem) 0 9.5rem; }
.eyebrow { margin: 0 0 1.45rem; color: rgba(255,255,255,.64); font-size: .7rem; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; display: flex; align-items: center; gap: .7rem; }
.eyebrow span { width: 28px; height: 2px; background: var(--gold); }
.eyebrow.dark { color: #605e57; }
.hero h1, .hero h2 { margin: 0; max-width: 900px; font-size: clamp(3.2rem, 6.6vw, 6.25rem); line-height: .94; letter-spacing: -.065em; font-weight: 750; }
.hero h1 em, .hero h2 em, .section-heading h2 em, .about-copy h2 em, .contact h2 em { color: var(--gold); font-style: normal; }
.hero-lead { max-width: 620px; margin: 1.85rem 0 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.72; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: .88rem 1.35rem; border: 1px solid transparent; border-radius: 2px; text-decoration: none; text-transform: uppercase; font-size: .7rem; letter-spacing: .105em; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--black); }
.button-gold:hover { background: var(--gold-bright); }
.button-ghost { border-color: rgba(255,255,255,.34); color: var(--white); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: var(--gold); background: rgba(212,176,77,.08); }
.slider-ui { position: absolute; z-index: 5; left: max(24px, calc((100vw - var(--max)) / 2)); right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 6.7rem; display: flex; align-items: center; gap: 1.4rem; }
.slider-status { min-width: 58px; display: flex; align-items: baseline; gap: .25rem; }
.slider-status strong { color: var(--gold); font-size: 1rem; }
.slider-status span { color: rgba(255,255,255,.4); font-size: .66rem; letter-spacing: .08em; }
.slider-dots { display: flex; flex: 1; max-width: 290px; gap: .5rem; }
.slider-dot { position: relative; width: 72px; height: 24px; border: 0; background: none; padding: 0; cursor: pointer; }
.slider-dot::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 2px; background: rgba(255,255,255,.22); }
.slider-dot::after { content: ""; position: absolute; left: 0; right: 100%; top: 11px; height: 2px; background: var(--gold); }
.slider-dot.is-active::after { right: 0; transition: right 3s linear; }
.slider-arrows { display: flex; gap: .45rem; margin-left: auto; }
.slider-arrow { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.2); color: var(--white); border-radius: 50%; font-size: 1.05rem; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.slider-arrow:hover, .slider-arrow:focus-visible { background: var(--gold); border-color: var(--gold); color: var(--black); }
.trust-strip { position: absolute; z-index: 4; bottom: 0; left: 0; right: 0; height: 86px; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(8,8,8,.84); border-top: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.trust-strip div { display: flex; align-items: center; justify-content: center; gap: .75rem; border-right: 1px solid rgba(255,255,255,.1); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong { color: var(--gold); font-size: 1.12rem; }
.trust-strip span { color: rgba(255,255,255,.62); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: clamp(5.5rem, 9vw, 8.8rem) 0; }
.section-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 5rem; align-items: end; margin-bottom: 3.8rem; }
.section-heading.no-copy { grid-template-columns: minmax(0, 850px); }
.section-heading h2, .about-copy h2, .contact h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.01; letter-spacing: -.055em; }
.section-heading > p { margin: 0 0 .25rem; color: var(--muted); line-height: 1.75; font-size: .98rem; }
.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.solution-card { position: relative; min-height: 320px; padding: 2rem 1.65rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.26); overflow: hidden; transition: background .25s ease, transform .25s ease; }
.solution-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: var(--gold); transition: width .35s ease; }
.solution-card:hover { background: var(--white); transform: translateY(-4px); z-index: 2; box-shadow: 0 24px 55px rgba(30,28,20,.08); }
.solution-card:hover::after { width: 100%; }
.service-code { color: #9b978c; font-size: .62rem; letter-spacing: .15em; font-weight: 750; }
.solution-card h3 { margin: 4.6rem 0 .85rem; font-size: 1.45rem; letter-spacing: -.035em; }
.solution-card p, .solution-card .service-copy { margin: 0; color: var(--muted); line-height: 1.65; font-size: .88rem; }
.solution-card .service-copy p { margin: 0; }
.solution-card a { position: absolute; left: 1.65rem; bottom: 1.8rem; color: var(--ink); text-decoration: none; font-size: .71rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 820; }
.solution-card a span { color: var(--gold); margin-left: .35rem; }
.solution-card.featured { background: var(--gold); }
.solution-card.energy { background: var(--black-soft); color: var(--white); }
.solution-card.featured p, .solution-card.featured .service-code { color: rgba(8,8,8,.6); }
.solution-card.energy p, .solution-card.energy .service-code { color: rgba(255,255,255,.54); }
.solution-card.featured a { color: var(--black); }
.solution-card.energy a { color: var(--white); }
.service-more { display: none; }
.service-popover { position: fixed; z-index: 120; width: min(760px, calc(100vw - 32px)); padding: clamp(2.3rem, 4vw, 3.5rem); color: var(--white); background: linear-gradient(145deg, #050505, #1c1912); border: 1px solid rgba(212,176,77,.5); border-radius: 18px; box-shadow: 0 32px 90px rgba(0,0,0,.48); opacity: 0; visibility: hidden; transform: translateY(10px) scale(.98); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.service-popover.is-visible { opacity: 1; visibility: visible; transform: none; }
.service-popover::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--gold); border-radius: 16px 16px 0 0; }
.service-popover > span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-popover h4 { margin: 1rem 2rem 1.25rem 0; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.02; letter-spacing: -.045em; }
.service-popover p { margin: 0; max-width: 680px; color: rgba(255,255,255,.74); font-size: .98rem; line-height: 1.75; }
.service-popover ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1.5rem; margin: 1.5rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid rgba(255,255,255,.13); list-style: none; }
.service-popover li { position: relative; padding-left: 1.2rem; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.5; }
.service-popover li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.service-popover small { display: block; margin-top: 1.2rem; color: rgba(255,255,255,.38); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.service-popover-close { position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; }
.service-popover-close:hover, .service-popover-close:focus-visible { color: var(--black); background: var(--gold); border-color: var(--gold); }
.solution-card:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.feature-label { position: absolute; top: 1.75rem; right: 1.5rem; padding: .35rem .55rem; border: 1px solid currentColor; border-radius: 999px; font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }

.about { position: relative; overflow: hidden; background: var(--black); color: var(--white); }
.about-pattern { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(30deg, transparent 45%, rgba(212,176,77,.22) 46%, rgba(212,176,77,.22) 47%, transparent 48%), linear-gradient(-30deg, transparent 45%, rgba(255,255,255,.08) 46%, rgba(255,255,255,.08) 47%, transparent 48%); background-size: 180px 104px; mask-image: linear-gradient(90deg, transparent 42%, black); }
.about-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(4rem, 9vw, 8rem); align-items: center; }
.about-copy h2 { max-width: 650px; }
.about-lead { margin: 2rem 0 1rem; color: rgba(255,255,255,.76); font-size: 1.05rem; line-height: 1.75; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: rgba(255,255,255,.52); line-height: 1.72; }
.about-expand-toggle { display: inline-flex; align-items: center; gap: .8rem; margin: 1rem 0 0; padding: .85rem 1.1rem; color: var(--black); background: var(--gold); border: 0; border-radius: 2px; font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; cursor: pointer; }
.about-expand-toggle span { font-size: 1rem; transition: transform .25s ease; }
.about-expand-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.about-expand-panel { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .65s cubic-bezier(.22,.75,.25,1), opacity .35s ease; }
.about-expand-panel.is-open { max-height: 1200px; opacity: 1; }
.about-expand-inner { padding: 2rem 0 .5rem; }
.about-expand-inner > p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.75; }
.about-expand-inner h3 { margin: 2rem 0 1rem; color: var(--gold); font-size: 1.4rem; letter-spacing: -.025em; }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.values-grid > div { padding: 1rem; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.values-grid strong { display: block; margin-bottom: .45rem; color: var(--white); font-size: .82rem; }
.values-grid span { display: block; color: rgba(255,255,255,.48); font-size: .7rem; line-height: 1.55; }
.about-expand-panel + .text-link { margin-top: 1.5rem; }
.text-link { display: inline-flex; gap: .65rem; margin-top: 1rem; color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 800; }
.about-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.proof-card { min-height: 210px; padding: 1.7rem; background: rgba(10,10,9,.92); }
.proof-card.proof-large { grid-column: span 2; min-height: 270px; background: var(--gold); color: var(--black); }
.proof-card > span { display: block; color: rgba(255,255,255,.44); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.proof-large > span { color: rgba(0,0,0,.55); }
.proof-card strong { display: block; margin-top: 1.2rem; font-size: 1.2rem; }
.proof-large strong { margin-top: 1.5rem; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .88; letter-spacing: -.06em; }
.proof-large em { font-style: normal; color: var(--white); }
.proof-card p { color: rgba(255,255,255,.48); line-height: 1.6; font-size: .82rem; }

.video-showcase { position: relative; min-height: 100svh; background: var(--black); color: var(--white); overflow: hidden; }
.video-showcase > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.08) 60%), linear-gradient(0deg, rgba(0,0,0,.72), transparent 48%); pointer-events: none; }
.video-below-copy { padding: clamp(3.5rem, 7vw, 7rem) 0; background: var(--black); color: var(--white); }
.video-below-copy h2, .review-heading h2 { margin: 0; font-size: clamp(3rem, 6vw, 6.2rem); line-height: .95; letter-spacing: -.06em; }
.video-below-copy h2 em, .review-heading h2 em { color: var(--gold); font-style: normal; }
.video-sound-toggle { position: absolute; z-index: 3; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 9vh; display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; color: var(--white); background: rgba(0,0,0,.52); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; cursor: pointer; backdrop-filter: blur(12px); }
.video-sound-toggle span { display: grid; place-items: center; width: 28px; height: 28px; color: var(--black); background: var(--gold); border-radius: 50%; }
.video-sound-toggle strong { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }

.brands-partners { padding: clamp(4rem, 7vw, 6.5rem) 0; background: var(--cream); color: var(--ink); overflow: hidden; }
.brands-heading { width: min(calc(100% - 48px), var(--max)); margin: 0 auto 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brands-heading h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .95; letter-spacing: -.06em; font-weight: 750; }
.brands-heading h2 em { color: var(--gold); font-style: normal; }
.brands-controls { display: flex; gap: .7rem; }
.brands-controls button { width: 48px; height: 48px; border: 1px solid rgba(8,8,8,.25); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.brands-controls button:hover, .brands-controls button:focus-visible { color: var(--black); background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.brands-window { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; overflow: hidden; }
.brands-track { display: flex; gap: 1rem; transition: transform .55s cubic-bezier(.22,.75,.25,1); will-change: transform; }
.brand-logo-card { flex: 0 0 calc((100% - 4rem) / 5); min-width: 0; height: 150px; display: grid; place-items: center; padding: 1.4rem; background: #f7f6f2; border: 1px solid rgba(212,176,77,.38); border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,.25); }
.brand-logo-card img { width: 100%; height: 90px; object-fit: contain; }

.reviews-showcase { position: relative; min-height: 100svh; padding: clamp(4rem, 8vh, 6.5rem) 0 clamp(5rem, 9vh, 7rem); background: var(--black-soft); color: var(--white); overflow: hidden; }
.review-heading { width: min(calc(100% - 48px), var(--max)); margin: 0 auto clamp(2.5rem, 5vh, 4rem); text-align: center; }
.review-heading .eyebrow { justify-content: center; }
.review-heading h2 { max-width: 900px; margin: 0 auto; font-size: clamp(2.6rem, 4.6vw, 5rem); }
.review-sets { position: relative; width: min(calc(100% - 48px), 1120px); min-height: 520px; margin: 0 auto; }
.review-set { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2.4rem); opacity: 0; visibility: hidden; transform: translateX(35px); transition: opacity .5s ease, transform .5s ease, visibility .5s; }
.review-set.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.review-card { display: flex; flex-direction: column; align-items: center; min-height: 480px; padding: clamp(1.8rem, 3vw, 2.7rem); background: #151515; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; box-shadow: 0 28px 70px rgba(0,0,0,.28); text-align: center; }
.review-portrait { width: 104px; height: 104px; flex: 0 0 104px; overflow: hidden; border: 2px solid var(--gold); border-radius: 50%; background: transparent; }
.review-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.78) contrast(1.03); }
.review-content { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; padding-top: 1rem; }
.quote-mark { display: block; height: .55em; color: var(--gold); font-family: Georgia, serif; font-size: clamp(4rem, 6vw, 6rem); line-height: 1; }
.review-content blockquote { margin: 1rem 0 2rem; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.5; letter-spacing: -.02em; font-weight: 600; }
.review-person { display: flex; flex-direction: column; gap: .4rem; padding-top: 1rem; border-top: 3px solid var(--gold); }
.review-person strong { font-size: .95rem; }
.review-person span { color: rgba(255,255,255,.5); font-size: .65rem; line-height: 1.5; letter-spacing: .07em; text-transform: uppercase; }
.review-controls { position: relative; z-index: 5; justify-content: center; margin: 2.5rem auto 0; display: flex; align-items: center; gap: 1rem; }
.review-controls button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(0,0,0,.3); color: var(--white); cursor: pointer; }
.review-controls button:hover, .review-controls button:focus-visible { color: var(--black); background: var(--gold); border-color: var(--gold); }
.review-controls > span { color: rgba(255,255,255,.45); font-size: .7rem; }
.review-controls strong { color: var(--gold); }

.contact { background: var(--gold); padding: clamp(4.8rem, 8vw, 7.2rem) 0; }
.contact-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.contact h2 em { color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 570px; line-height: 1.7; color: rgba(8,8,8,.68); }
.button-dark { background: var(--black); color: var(--white); }
.button-outline-dark { border-color: rgba(8,8,8,.45); color: var(--black); }
.button-outline-dark:hover { background: rgba(255,255,255,.25); border-color: var(--black); }
.contact-details { font-style: normal; border-top: 1px solid rgba(8,8,8,.24); }
.contact-details > * { position: relative; min-height: 88px; display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(8,8,8,.24); text-decoration: none; }
.contact-details small { text-transform: uppercase; letter-spacing: .12em; font-size: .61rem; color: rgba(8,8,8,.55); }
.contact-details strong { font-size: .98rem; line-height: 1.45; }
.contact-details span { font-size: 1.1rem; }
.contact-details .address-social { grid-template-columns: 70px 1fr; align-items: start; padding: 1.2rem 0; }
.social-links { grid-column: 2; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(8,8,8,.42); border-radius: 50%; text-decoration: none; color: var(--black); transition: background .2s ease, color .2s ease, transform .2s ease; }
.social-links a:hover { color: var(--white); background: var(--black); transform: translateY(-2px); }
.social-links img { width: 17px; height: 17px; display: block; }
.social-links a img, .social-links .social-link img { filter: brightness(0); transition: filter .2s ease; }
.social-links a:hover img { filter: brightness(0) invert(1); }
.social-links .social-link { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(8,8,8,.24); border-radius: 50%; opacity: .48; }

.site-footer { padding: 3.5rem 0 2rem; background: var(--black); color: var(--white); }
.footer-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: center; gap: 2rem; }
.footer-shell > p { color: rgba(255,255,255,.47); font-size: .8rem; text-align: center; }
.footer-links, .footer-links ul { display: flex; justify-content: flex-end; gap: 1rem; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,.62); font-size: .72rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-shell > small { grid-column: 1 / -1; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .65rem; letter-spacing: .04em; }
.whatsapp-float { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #08220f; text-decoration: none; font-size: .68rem; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.24); transition: transform .2s ease; }
.whatsapp-float img { width: 27px; height: 27px; display: block; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.custom-logo-wrap .custom-logo-link { display: block; }
.custom-logo-wrap img { width: auto; max-width: 220px; max-height: 54px; object-fit: contain; }
.content-page { min-height: 70vh; padding: calc(var(--header) + 5rem) 24px 6rem; background: var(--cream); }
.entry-content { width: min(100%, 780px); margin: 0 auto; font-size: 1rem; line-height: 1.75; }
.entry-content.alignwide, .wide-content { width: min(100%, var(--max)); }
.entry-content h1 { margin: 0 0 2rem; font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1; letter-spacing: -.055em; }
.entry-content h2, .entry-content h3 { letter-spacing: -.03em; }
.entry-content img { height: auto; }
.entry-content a:not(.button) { color: #8a6a17; }
.entry-image { margin: 0 0 2rem; }
.page-builder-content { background: var(--cream); }
.content-card { padding: 2rem 0; border-bottom: 1px solid var(--line); }
.content-card h1 { margin: .3rem 0 1rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.content-card h1 a { color: var(--ink); text-decoration: none; }
.entry-meta { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 1080px) {
  .primary-nav-list { gap: 1rem; }
  .primary-nav a { font-size: .7rem; }
  .nav-cta { display: none; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .service-popover { left: 24px !important; right: 24px; top: 50% !important; width: auto; max-height: calc(100svh - 48px); overflow-y: auto; transform: translateY(-47%) scale(.98); }
  .service-popover.is-visible { transform: translateY(-50%); }
}

@media (max-width: 820px) {
  :root { --header: 72px; }
  .nav-shell, .hero-shell, .section-shell, .contact-shell, .footer-shell { width: min(calc(100% - 32px), var(--max)); }
  .menu-toggle { display: grid; gap: 5px; margin-left: auto; width: 42px; height: 42px; place-content: center; border: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.18); border-radius: 50%; }
  .menu-toggle span { width: 18px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: var(--header) 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 2rem 1.5rem; background: rgba(8,8,8,.985); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  body.admin-bar .primary-nav { top: calc(var(--header) + 46px); }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav-list { width: 100%; flex-direction: column; align-items: flex-start; gap: 0; }
  .primary-nav-list li { width: 100%; }
  .primary-nav a { width: 100%; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
  .primary-nav a::after { display: none; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-copy { padding-bottom: 9rem; }
  .hero h1, .hero h2 { font-size: clamp(3rem, 12vw, 5.1rem); }
  .hero-shade { background: linear-gradient(90deg, rgba(4,4,4,.95) 0%, rgba(4,4,4,.68) 100%), linear-gradient(0deg, rgba(4,4,4,.9), transparent 50%); }
  .hero-image { background-position: 62% center; }
  .slider-ui { left: 16px; right: 16px; bottom: 5.5rem; }
  .slider-arrows { display: none; }
  .trust-strip { height: 70px; }
  .trust-strip div { gap: .4rem; flex-direction: column; text-align: center; }
  .trust-strip strong { font-size: .9rem; }
  .trust-strip span { font-size: .52rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.3rem; }
  .about-grid, .contact-shell { grid-template-columns: 1fr; }
  .video-below-copy { padding: 3.5rem 0; }
  .video-sound-toggle { right: 16px; bottom: 2rem; }
  .brand-logo-card { flex-basis: calc((100% - 2rem) / 3); }
  .review-card { min-height: 440px; }
  .about-copy { max-width: 650px; }
  .footer-shell { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-links { justify-content: center; }
  .footer-links ul { justify-content: center; }
  .footer-shell > small { grid-column: auto; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 560px) {
  .brand img.header-logo-mark { width: 45px; height: 45px; }
  .brand-copy strong { font-size: .94rem; }
  .brand-copy small { font-size: .48rem; }
  .hero { min-height: 700px; }
  .hero-copy { padding-top: calc(var(--header) + 1rem); padding-bottom: 7.5rem; }
  .hero h1, .hero h2 { font-size: clamp(2.72rem, 13vw, 4rem); }
  .hero-lead { font-size: .92rem; line-height: 1.6; }
  .hero-actions { gap: .65rem; }
  .button { width: 100%; }
  .slider-ui { bottom: 4.55rem; }
  .slider-dots { max-width: 210px; }
  .trust-strip { height: 62px; }
  .trust-strip strong { font-size: .78rem; }
  .trust-strip span { max-width: 90px; line-height: 1.25; }
  .section { padding: 4.6rem 0; }
  .section-heading h2, .about-copy h2, .contact h2 { font-size: 2.65rem; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 290px; }
  .service-popover { left: 16px !important; right: 16px; top: 50% !important; width: auto; max-height: calc(100svh - 32px); overflow-y: auto; transform: translateY(-47%) scale(.98); }
  .service-popover.is-visible { transform: translateY(-50%); }
  .service-popover ul { grid-template-columns: 1fr; }
  .about-proof { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .proof-card.proof-large { grid-column: auto; }
  .contact-details > * { grid-template-columns: 56px 1fr auto; }
  .contact-details .address-social { grid-template-columns: 56px 1fr; }
  .review-heading h2 { font-size: 2.5rem; }
  .review-heading, .review-sets { width: min(calc(100% - 32px), var(--max)); }
  .brands-heading, .brands-window { width: min(calc(100% - 32px), var(--max)); }
  .brands-heading { align-items: flex-end; }
  .brand-logo-card { flex-basis: calc((100% - 1rem) / 2); height: 125px; }
  .review-set { grid-template-columns: 1fr; }
  .review-sets { min-height: 850px; }
  .review-card { min-height: 400px; }
  .review-content { padding: 1.25rem; }
  .review-content blockquote { font-size: 1rem; }
  .contact-details strong { font-size: .85rem; overflow-wrap: anywhere; }
  .whatsapp-float { width: 48px; height: 48px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
