:root {
  --navy: #06111b;
  --navy-soft: #0d1d2a;
  --navy-card: #101f2d;
  --gold: #d7a63d;
  --gold-light: #e3ba5b;
  --white: #ffffff;
  --off-white: #f5f5f2;
  --text: #0a1117;
  --muted: #68737d;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(3, 11, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 35px;
  line-height: 1;
  transform: rotate(-8deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 39px;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.brand-text span {
  margin-top: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-navigation > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-navigation > a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-cta,
.primary-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  background: var(--gold);
  color: #101820;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.nav-cta:hover,
.primary-button:hover,
.submit-button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.nav-cta {
  min-height: 48px;
  padding: 0 21px;
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 24px;
  cursor: pointer;
}

/* Hero */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding-top: 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, #334451 0%, #14232e 25%, transparent 48%),
    linear-gradient(120deg, #02080d 0%, #06111b 48%, #101f2b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 22%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(215, 166, 61, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(215, 166, 61, 0.03),
    0 0 0 120px rgba(215, 166, 61, 0.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 13, 0.98) 0%,
      rgba(2, 8, 13, 0.85) 43%,
      rgba(2, 8, 13, 0.2) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  padding-top: 75px;
  padding-bottom: 75px;
}

.hero-copy {
  max-width: 640px;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.gold-rule {
  width: 56px;
  height: 3px;
  margin: 27px 0;
  background: var(--gold);
}

.hero-text {
  max-width: 600px;
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

.primary-button {
  min-height: 54px;
  padding: 0 25px;
  font-size: 12px;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 390px);
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-panel p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel ul {
  margin: 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
}

/* Services */

.services-section {
  scroll-margin-top: 92px;
  padding: 76px 0 86px;
  background: var(--off-white);
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 45px);
  letter-spacing: -0.025em;
}

.section-heading > span {
  display: block;
  width: 48px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--gold);
}

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

.service-card {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(5, 13, 20, 0.12);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(5, 13, 20, 0.18);
}

.service-visual {
  position: relative;
  height: 185px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 19px;
  overflow: hidden;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.service-visual::before {
  width: 200px;
  height: 200px;
  right: -50px;
  top: -65px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-visual::after {
  width: 120px;
  height: 120px;
  left: 25px;
  bottom: -55px;
  background: rgba(255, 255, 255, 0.05);
}

.service-visual span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.3);
  font-size: 45px;
  font-weight: 900;
}

.visual-surveillance {
  background: linear-gradient(135deg, #172f3f, #071019);
}

.visual-insurance {
  background: linear-gradient(135deg, #4e5c65, #16232c);
}

.visual-legal {
  background: linear-gradient(135deg, #5f4b2e, #171410);
}

.visual-locate {
  background: linear-gradient(135deg, #777261, #29333a);
}

.visual-background {
  background: linear-gradient(135deg, #13384f, #060d13);
}

.visual-business {
  background: linear-gradient(135deg, #49433a, #161c22);
}

.service-body {
  min-height: 155px;
  display: flex;
  gap: 18px;
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-icon {
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

/* About */

.about-section {
  scroll-margin-top: 92px;
  padding: 90px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 85px;
}

.about-copy h2,
.coverage-copy h2,
.contact-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4.3vw, 52px);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.about-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e2e5e7;
}

.about-stats div {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border-right: 1px solid #e2e5e7;
}

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

.about-stats strong {
  color: var(--gold);
  font-size: 35px;
}

.about-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Coverage */

.coverage-section {
  scroll-margin-top: 92px;
  padding: 75px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, #07131d, #0b263a);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 75px;
}

.state-display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.state-card {
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--gold);
  color: #111820;
}

.state-card strong {
  font-size: 53px;
}

.state-card span {
  margin-top: 5px;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-copy h2 {
  margin-bottom: 14px;
}

.coverage-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.coverage-copy a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
}

/* Contact */

.contact-section {
  scroll-margin-top: 92px;
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, #192834, transparent 35%),
    #070c11;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  align-items: start;
}

.contact-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 19px;
}

.contact-details a,
.contact-details p {
  margin: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
}

.contact-details span {
  color: var(--gold);
  font-size: 20px;
}

.contact-form {
  padding: 34px;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h3 {
  margin: 0 0 7px;
  font-size: 25px;
}

.form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b1722;
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

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

.contact-form textarea {
  resize: vertical;
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px !important;
  line-height: 1.55;
}

.checkbox-label input {
  width: auto;
  margin-top: 3px;
}

.submit-button {
  min-height: 51px;
  width: 100%;
  margin-top: 5px;
  font-size: 12px;
}

/* Footer */

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #03070a;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-top {
  padding-top: 42px;
  padding-bottom: 30px;
}

.footer-top strong {
  color: var(--white);
  font-size: 19px;
}

.footer-top p {
  margin: 7px 0 0;
  color: var(--gold);
  font-size: 13px;
}

.footer-links,
.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-links a,
.footer-bottom a {
  font-size: 13px;
}

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.legal-copy {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-copy h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 15px;
}

.legal-copy p {
  max-width: 860px;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

/* Responsive */

@media (max-width: 980px) {
  .navbar {
    min-height: 80px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    font-size: 27px;
  }

  .brand-text strong {
    font-size: 31px;
  }

  .brand-text span {
    font-size: 8px;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .main-navigation {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    transition: max-height 220ms ease;
  }

  .main-navigation.open {
    max-height: calc(100vh - 80px);
    padding: 18px 20px 24px;
  }

  .main-navigation > a:not(.nav-cta) {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .nav-cta {
    margin-top: 18px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-inner,
  .about-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

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

  .about-grid,
  .coverage-grid,
  .contact-grid {
    gap: 45px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }

  .brand-text strong {
    font-size: 27px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-panel {
    display: none;
  }

  .services-grid,
  .state-display,
  .form-row,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid #e2e5e7;
  }

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

  .contact-form {
    padding: 24px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links,
  .footer-bottom > div {
    flex-wrap: wrap;
  }
}

/* Final navigation and accessibility fixes */

section,
.legal-copy {
  scroll-margin-top: 110px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 2px;
}

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

@media (max-width: 980px) {
  section,
  .legal-copy {
    scroll-margin-top: 94px;
  }
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #07111a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  }

  .navbar {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-text span {
    max-width: 155px;
    line-height: 1.3;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 56px);
    overflow-wrap: anywhere;
  }

  .hero-text {
    font-size: 17px;
  }

  .primary-button {
    width: 100%;
  }

  .service-body {
    min-height: auto;
  }

  .about-section,
  .services-section,
  .coverage-section,
  .contact-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .contact-copy h2,
  .coverage-copy h2,
  .about-copy h2 {
    font-size: 37px;
  }

  .contact-details a {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    padding-bottom: 28px;
  }
}

/* Thank-you page */

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 30%, #173044, transparent 36%),
    #050c12;
}

.thank-you-card {
  width: min(650px, 100%);
  padding: 55px;
  text-align: center;
  background: rgba(13, 29, 42, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.thank-you-logo {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  margin: 0 auto 27px;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.thank-you-card h1 {
  margin: 0 0 20px;
  font-size: clamp(36px, 6vw, 55px);
  line-height: 1.08;
}

.thank-you-card > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.thank-you-notice {
  margin-bottom: 30px;
  padding: 16px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
  .thank-you-card {
    padding: 35px 23px;
  }
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}


/* SIG IMAGE INTEGRATION START */

/* Hero photography */
.hero-image-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 20, 0.98) 0%,
            rgba(3, 12, 20, 0.88) 38%,
            rgba(3, 12, 20, 0.48) 67%,
            rgba(3, 12, 20, 0.30) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 12, 20, 0.10) 0%,
            rgba(3, 12, 20, 0.36) 100%
        ),
        url("../images/hero.jpg") center 35% / cover no-repeat;
}

.hero-image-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(207, 159, 60, 0.10),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            transparent 72%,
            rgba(3, 12, 20, 0.85) 100%
        );
}

.hero-image-section > * {
    position: relative;
    z-index: 1;
}

/* Service photo cards */
.service-card {
    position: relative;
    isolation: isolate;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(207, 159, 60, 0.30);
    background-color: #07131d;
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.01);
    transition:
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 350ms ease;
    filter: saturate(0.80) contrast(1.04);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 18, 0.12) 0%,
            rgba(3, 11, 18, 0.30) 38%,
            rgba(3, 11, 18, 0.95) 82%,
            rgba(3, 11, 18, 0.99) 100%
        );
    transition: background 300ms ease;
}

.service-card.surveillance::before {
    background-image: url("../images/surveillance.jpg");
}

.service-card.insurance::before {
    background-image: url("../images/insurance.jpg");
}

.service-card.legal::before {
    background-image: url("../images/legal.jpg");
}

.service-card.locate::before {
    background-image: url("../images/locate.jpg");
}

.service-card.background::before {
    background-image: url("../images/background.jpg");
}

.service-card.business::before {
    background-image: url("../images/business.jpg");
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}

.service-card p {
    color: rgba(255, 255, 255, 0.80);
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(218, 171, 72, 0.78);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(218, 171, 72, 0.10);
}

.service-card:hover::before {
    transform: scale(1.075);
    filter: saturate(0.95) contrast(1.07);
}

.service-card:hover::after {
    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 18, 0.04) 0%,
            rgba(3, 11, 18, 0.20) 36%,
            rgba(3, 11, 18, 0.91) 80%,
            rgba(3, 11, 18, 0.98) 100%
        );
}

/* Mobile photo positioning */
@media (max-width: 768px) {
    .hero-image-section {
        background:
            linear-gradient(
                90deg,
                rgba(3, 12, 20, 0.95) 0%,
                rgba(3, 12, 20, 0.74) 100%
            ),
            linear-gradient(
                180deg,
                rgba(3, 12, 20, 0.18) 0%,
                rgba(3, 12, 20, 0.72) 100%
            ),
            url("../images/hero.jpg") 62% center / cover no-repeat;
    }

    .service-card {
        min-height: 320px;
    }
}

/* SIG IMAGE INTEGRATION END */

/* FULL PHOTO SERVICE CARDS START */

.services-grid {
    gap: 20px !important;
    background: transparent !important;
}

/*
  Reset the original decorative card layers so the photograph
  fills the complete card from top to bottom.
*/
.service-card {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;

    min-height: 390px !important;
    padding: 34px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;

    background-color: #06111b !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    border: 1px solid rgba(215, 166, 61, 0.38) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22) !important;

    transform: translateY(0);
    transition:
        transform 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        background-size 600ms ease !important;
}

/* Connect each photograph directly to the complete card */
.service-card.surveillance {
    background-image: url("../images/surveillance.jpg") !important;
}

.service-card.insurance {
    background-image: url("../images/insurance.jpg") !important;
}

.service-card.legal {
    background-image: url("../images/legal.jpg") !important;
}

.service-card.locate {
    background-image: url("../images/locate.jpg") !important;
}

.service-card.background {
    background-image: url("../images/background.jpg") !important;
}

.service-card.business {
    background-image: url("../images/business.jpg") !important;
}

/* Remove the old photo/decorative pseudo-element */
.service-card::before {
    content: none !important;
    display: none !important;
}

/* One clean dark gradient over the full photograph */
.service-card::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;

    background:
        linear-gradient(
            180deg,
            rgba(3, 10, 17, 0.08) 0%,
            rgba(3, 10, 17, 0.22) 35%,
            rgba(3, 10, 17, 0.78) 70%,
            rgba(3, 10, 17, 0.97) 100%
        ) !important;
}

/*
  Remove opaque backgrounds from the card's original inner wrappers.
  This is what was covering the upper part of the photos.
*/
.service-card > *,
.service-card > div,
.service-card header,
.service-card footer,
.service-card .service-card-content,
.service-card .service-content,
.service-card .card-content,
.service-card .service-card-header,
.service-card .service-header,
.service-card .card-header,
.service-card .service-card-body,
.service-card .service-body,
.service-card .card-body {
    position: relative !important;
    z-index: 1 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Disable decorative backgrounds on inner pseudo-elements */
.service-card > *::before,
.service-card > *::after,
.service-card .service-card-content::before,
.service-card .service-card-content::after,
.service-card .service-content::before,
.service-card .service-content::after,
.service-card .card-content::before,
.service-card .card-content::after {
    background: transparent !important;
    box-shadow: none !important;
}

/* Keep the large service number subtle */
.service-card .service-number,
.service-card [class*="number"] {
    position: absolute !important;
    top: 22px !important;
    right: 24px !important;
    z-index: 1 !important;

    color: rgba(255, 255, 255, 0.22) !important;
    font-size: clamp(3rem, 5vw, 5rem) !important;
    line-height: 1 !important;
}

/* Service card text */
.service-card h3 {
    position: relative !important;
    z-index: 2 !important;

    margin: 0 0 12px !important;
    color: #ffffff !important;
    font-size: clamp(1.25rem, 1.6vw, 1.55rem) !important;
    line-height: 1.15 !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9) !important;
}

.service-card p {
    position: relative !important;
    z-index: 2 !important;

    margin: 0 !important;
    max-width: 34rem !important;
    color: rgba(255, 255, 255, 0.84) !important;
    line-height: 1.65 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88) !important;
}

/* Keep service icons gold */
.service-card svg,
.service-card i,
.service-card .icon,
.service-card [class*="icon"] {
    position: relative !important;
    z-index: 2 !important;
    color: #d7a63d !important;
}

/* Hover treatment */
.service-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(215, 166, 61, 0.88) !important;
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(215, 166, 61, 0.12) !important;
}

.service-card:hover::after {
    background:
        linear-gradient(
            180deg,
            rgba(3, 10, 17, 0.02) 0%,
            rgba(3, 10, 17, 0.16) 34%,
            rgba(3, 10, 17, 0.72) 69%,
            rgba(3, 10, 17, 0.95) 100%
        ) !important;
}

/* Improve individual image crops */
.service-card.surveillance {
    background-position: center center !important;
}

.service-card.insurance {
    background-position: center 38% !important;
}

.service-card.legal {
    background-position: center center !important;
}

.service-card.locate {
    background-position: center center !important;
}

.service-card.background {
    background-position: center 32% !important;
}

.service-card.business {
    background-position: center center !important;
}

@media (max-width: 900px) {
    .services-grid {
        gap: 16px !important;
    }

    .service-card {
        min-height: 360px !important;
        padding: 28px !important;
    }
}

@media (max-width: 640px) {
    .service-card {
        min-height: 330px !important;
        padding: 24px !important;
    }

    .service-card .service-number,
    .service-card [class*="number"] {
        top: 18px !important;
        right: 18px !important;
    }
}

/* FULL PHOTO SERVICE CARDS END */

/* FINAL STRUCTURE POLISH START */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

section[id],
footer[id] {
    scroll-margin-top: 92px;
}

a,
button,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(215, 166, 61, 0.85);
    outline-offset: 4px;
}

button,
.primary-button,
.secondary-button,
.case-request-button {
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

button:hover,
.primary-button:hover,
.case-request-button:hover {
    transform: translateY(-2px);
}

button:active,
.primary-button:active,
.secondary-button:active,
.case-request-button:active {
    transform: translateY(0);
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button {
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 76px;
    }

    section[id],
    footer[id] {
        scroll-margin-top: 76px;
    }

    .hero-image-section {
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        width: 100%;
    }

    .contact-grid,
    .about-grid,
    .coverage-grid {
        grid-template-columns: 1fr !important;
    }

    input,
    textarea,
    select,
    button {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* FINAL STRUCTURE POLISH END */


/* CLICKABLE SERVICE DETAILS START */

.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-card-link:focus-visible {
    outline: 3px solid rgba(215, 166, 61, 0.9);
    outline-offset: 5px;
}

.service-details-section {
    padding: 100px 0;
    background:
        linear-gradient(
            180deg,
            #07131d 0%,
            #0a1823 100%
        );
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.service-detail-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(215, 166, 61, 0.28);
    background: rgba(4, 15, 24, 0.84);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.service-detail-number {
    margin: 0 0 18px;
    color: #d7a63d;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.service-detail-card h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.service-detail-card p,
.service-detail-card li {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.service-detail-card ul {
    margin: 22px 0 28px;
    padding-left: 20px;
}

.service-detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid #d7a63d;
    color: #07131d;
    background: #d7a63d;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.service-detail-button:hover {
    transform: translateY(-2px);
    background: #e4b84f;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

#surveillance-details,
#insurance-details,
#legal-details,
#locate-details,
#background-details,
#business-details {
    scroll-margin-top: 110px;
}

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

    .service-details-section {
        padding: 72px 0;
    }

    .service-detail-card {
        padding: 26px;
    }
}

/* CLICKABLE SERVICE DETAILS END */

/* INDIVIDUAL SERVICE PAGES START */

.service-card[data-service-url] {
    cursor: pointer;
}

.service-card[data-service-url]:focus-visible {
    outline: 3px solid rgba(215, 166, 61, 0.95);
    outline-offset: 5px;
}

.service-page {
    margin: 0;
    color: #ffffff;
    background: #06111b;
}

.service-page-header {
    position: sticky;
    top: 0;
    z-index: 50;

    min-height: 92px;
    padding: 18px clamp(22px, 5vw, 78px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    background: rgba(3, 13, 22, 0.96);
    border-bottom: 1px solid rgba(215, 166, 61, 0.18);
    backdrop-filter: blur(16px);
}

.service-page-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}

.service-page-logo-mark {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    color: #d7a63d;
    border: 2px solid #d7a63d;
    font-size: 1.6rem;
}

.service-page-logo strong,
.service-page-logo small {
    display: block;
}

.service-page-logo strong {
    font-size: 1.7rem;
    letter-spacing: 0.13em;
}

.service-page-logo small {
    margin-top: 3px;
    color: #d7a63d;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-page-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.service-page-nav a {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    text-decoration: none;
}

.service-page-nav-button {
    padding: 14px 20px;
    color: #06111b !important;
    background: #d7a63d;
}

.service-page-shell {
    width: min(1180px, calc(100% - 44px));
    margin-inline: auto;
}

.service-page-hero {
    position: relative;
    min-height: 680px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 20, 0.97) 0%,
            rgba(3, 12, 20, 0.82) 46%,
            rgba(3, 12, 20, 0.30) 100%
        ),
        var(--service-image) center / cover no-repeat;
}

.service-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(3, 12, 20, 0.08),
            rgba(3, 12, 20, 0.78)
        );
}

.service-page-hero-content {
    position: relative;
    z-index: 2;
    padding-block: 110px;
}

.service-page-number {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.25);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
}

.service-page-hero h1 {
    max-width: 850px;
    margin: 10px 0 24px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.service-page-intro {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.7;
}

.service-page-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-page-back-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #d7a63d;
}

.service-page-content {
    padding: 100px 0;
    background: #f2f0ea;
}

.service-page-content-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(42px, 7vw, 90px);
}

.service-page-content h2,
.service-page-list h2 {
    color: #07131d;
}

.service-page-content p,
.service-page-list li {
    color: #46515a;
    line-height: 1.8;
}

.service-page-list {
    padding: 34px;
    border: 1px solid rgba(215, 166, 61, 0.52);
    background: #ffffff;
    box-shadow: 0 24px 50px rgba(7, 19, 29, 0.10);
}

.service-page-list ul {
    margin: 22px 0 0;
    padding-left: 20px;
}

.service-page-list li + li {
    margin-top: 12px;
}

.service-page-cta {
    padding: 100px 0;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(215, 166, 61, 0.11),
            transparent 42%
        ),
        #07131d;
}

.service-page-cta h2 {
    max-width: 850px;
    margin: 12px auto 20px;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.service-page-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

.service-page-footer {
    padding: 30px 0;
    border-top: 1px solid rgba(215, 166, 61, 0.18);
    background: #030d16;
}

.service-page-footer .service-page-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.service-page-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.service-page-footer div div {
    display: flex;
    gap: 20px;
}

.service-page-footer a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

@media (max-width: 820px) {
    .service-page-header {
        position: relative;
        align-items: flex-start;
        flex-direction: column;
    }

    .service-page-nav {
        width: 100%;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .service-page-nav a {
        flex: 0 0 auto;
    }

    .service-page-hero {
        min-height: 600px;
        background:
            linear-gradient(
                90deg,
                rgba(3, 12, 20, 0.94),
                rgba(3, 12, 20, 0.64)
            ),
            var(--service-image) 62% center / cover no-repeat;
    }

    .service-page-content-grid {
        grid-template-columns: 1fr;
    }

    .service-page-footer .service-page-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* INDIVIDUAL SERVICE PAGES END */


/* UNIQUE SERVICE PAGE CONTENT START */

.service-best-for {
    margin-top: 34px;
    padding: 26px;
    border-left: 4px solid #d7a63d;
    background: rgba(215, 166, 61, 0.08);
}

.service-best-for h3 {
    margin: 0 0 10px;
    color: #07131d;
    font-size: 1.25rem;
}

.service-best-for p {
    margin: 0;
}

.service-deliverables-section {
    padding: 92px 0;
    background: #0a1823;
}

.service-deliverables-section h2 {
    margin: 10px 0 34px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

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

.service-deliverable-card {
    min-height: 160px;
    padding: 26px;
    border: 1px solid rgba(215, 166, 61, 0.28);
    background: rgba(3, 13, 22, 0.72);
}

.service-deliverable-card span {
    display: block;
    margin-bottom: 18px;
    color: #d7a63d;
    font-size: 1.5rem;
    font-weight: 800;
}

.service-deliverable-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .service-deliverables-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* UNIQUE SERVICE PAGE CONTENT END */

/* SERVICE PAGE HERO FIX START */

.service-page-hero {
    position: relative !important;
    min-height: 680px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 12, 20, 0.97) 0%,
            rgba(3, 12, 20, 0.80) 48%,
            rgba(3, 12, 20, 0.28) 100%
        ),
        var(--service-image) !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.service-page-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(3, 12, 20, 0.05) 0%,
            rgba(3, 12, 20, 0.72) 100%
        ) !important;
}

.service-page-hero-content {
    position: relative !important;
    z-index: 2 !important;
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.service-page-number,
.service-page-hero .section-kicker,
.service-page-hero h1,
.service-page-intro,
.service-page-actions {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-page-hero h1 {
    color: #ffffff !important;
}

.service-page-intro {
    color: rgba(255, 255, 255, 0.84) !important;
}

@media (max-width: 820px) {
    .service-page-hero {
        min-height: 560px !important;

        background-image:
            linear-gradient(
                90deg,
                rgba(3, 12, 20, 0.94) 0%,
                rgba(3, 12, 20, 0.62) 100%
            ),
            var(--service-image) !important;

        background-position: 62% center !important;
    }

    .service-page-hero-content {
        padding-top: 84px !important;
        padding-bottom: 84px !important;
    }
}

/* SERVICE PAGE HERO FIX END */

/* PREMIUM SERVICE EXPERIENCE START */

.premium-service-shell {
    width: min(1180px, calc(100% - 44px));
    margin-inline: auto;
}

.premium-service-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 20, 0.98) 0%,
            rgba(3, 12, 20, 0.86) 46%,
            rgba(3, 12, 20, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 12, 20, 0.02),
            rgba(3, 12, 20, 0.72)
        ),
        var(--service-image) center / cover no-repeat;
}

.premium-service-hero-content {
    padding-block: 110px;
}

.premium-service-number {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.20);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.76;
}

.premium-service-hero h1 {
    max-width: 940px;
    margin: 12px 0 12px;
    color: #ffffff;
    font-size: clamp(3.3rem, 7vw, 6.6rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.premium-service-hero h2 {
    margin: 0 0 24px;
    color: #d7a63d;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.premium-service-hero-content > p:last-of-type {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.75;
}

.premium-service-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.premium-outline-button {
    min-height: 50px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 800;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.premium-outline-button:hover {
    color: #06111b;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.premium-service-overview {
    padding: 110px 0;
    background: #f2f0ea;
}

.premium-overview-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
}

.premium-service-overview h2,
.premium-process-section h2,
.premium-case-types h2,
.premium-deliverables h2 {
    margin: 10px 0 24px;
    font-size: clamp(2.3rem, 4.5vw, 4.4rem);
    line-height: 1;
}

.premium-service-overview h2 {
    color: #07131d;
}

.premium-service-overview article > p {
    color: #48545d;
    font-size: 1.06rem;
    line-height: 1.85;
}

.premium-text-link {
    display: inline-block;
    margin-top: 16px;
    color: #8b681e;
    font-weight: 800;
    text-decoration: none;
}

.premium-includes-card {
    padding: 36px;
    background: #ffffff;
    border: 1px solid rgba(215, 166, 61, 0.52);
    box-shadow: 0 28px 55px rgba(7, 19, 29, 0.10);
}

.premium-includes-card h3 {
    margin: 0 0 24px;
    color: #07131d;
    font-size: 1.65rem;
}

.premium-includes-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.premium-includes-card li {
    padding: 15px 0;
    display: flex;
    gap: 14px;
    color: #46515a;
    border-bottom: 1px solid rgba(7, 19, 29, 0.10);
}

.premium-includes-card li:last-child {
    border-bottom: 0;
}

.premium-includes-card li span {
    color: #b98b2f;
    font-weight: 900;
}

.premium-process-section {
    padding: 110px 0;
    background: #07131d;
}

.premium-process-section h2 {
    color: #ffffff;
}

.premium-process-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.premium-process-card {
    min-height: 300px;
    padding: 30px;
    border: 1px solid rgba(215, 166, 61, 0.28);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        );
}

.premium-process-step {
    display: block;
    margin-bottom: 46px;
    color: rgba(215, 166, 61, 0.58);
    font-size: 3rem;
    font-weight: 900;
}

.premium-process-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
}

.premium-process-card p {
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.7;
}

.premium-case-types {
    padding: 110px 0;
    background: #0b1a25;
}

.premium-case-types h2 {
    color: #ffffff;
}

.premium-case-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.premium-case-card {
    min-height: 120px;
    padding: 26px;

    display: flex;
    align-items: center;

    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;

    border-left: 4px solid #d7a63d;
    background: rgba(255, 255, 255, 0.045);
}

.premium-deliverables {
    padding: 110px 0;
    background: #f2f0ea;
}

.premium-deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 110px);
}

.premium-deliverables h2 {
    color: #07131d;
}

.premium-deliverables article > p {
    color: #48545d;
    line-height: 1.8;
}

.premium-deliverables-list {
    display: grid;
    gap: 14px;
}

.premium-deliverable-item {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(7, 19, 29, 0.12);
    background: #ffffff;
}

.premium-deliverable-item span {
    color: #b98b2f;
    font-weight: 900;
}

.premium-deliverable-item p {
    margin: 0;
    color: #46515a;
    font-weight: 700;
}

.premium-service-cta {
    padding: 120px 0;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(215, 166, 61, 0.12),
            transparent 38%
        ),
        #06111b;
}

.premium-service-cta h2 {
    max-width: 950px;
    margin: 12px auto 22px;
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 0.98;
}

.premium-service-cta > div > p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.premium-service-actions-center {
    justify-content: center;
}

@media (max-width: 940px) {
    .premium-overview-grid,
    .premium-deliverables-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 620px) {
    .premium-service-hero {
        min-height: 640px;

        background:
            linear-gradient(
                90deg,
                rgba(3, 12, 20, 0.95),
                rgba(3, 12, 20, 0.60)
            ),
            linear-gradient(
                180deg,
                transparent,
                rgba(3, 12, 20, 0.74)
            ),
            var(--service-image) 62% center / cover no-repeat;
    }

    .premium-service-hero-content {
        padding-block: 82px;
    }

    .premium-process-grid,
    .premium-case-grid {
        grid-template-columns: 1fr;
    }

    .premium-process-card {
        min-height: auto;
    }

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

    .premium-service-actions a {
        width: 100%;
    }
}

/* PREMIUM SERVICE EXPERIENCE END */


/* REAL SIG LOGO */
.real-logo-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.real-logo {
  display: block;
  width: 190px;
  height: 64px;
  padding: 6px 12px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(213, 166, 61, 0.55);
}

@media (max-width: 700px) {
  .real-logo {
    width: 145px;
    height: 52px;
    padding: 5px 9px;
  }
}

/* FINAL SIG LOGO */
.real-logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.real-logo {
  display: block;
  width: 210px;
  height: 68px;
  object-fit: contain;
  background: #ffffff;
  padding: 5px 10px;
  border: 1px solid rgba(213, 166, 61, 0.45);
}

@media (max-width: 700px) {
  .real-logo {
    width: 155px;
    height: 52px;
  }
}

/* TRANSPARENT SIG LOGO */
.real-logo {
  width: 205px;
  height: 64px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
}

@media (max-width: 700px) {
  .real-logo {
    width: 150px;
    height: 50px;
  }
}

.real-logo {
  width: 205px;
  height: 64px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

/* Improve dark-header logo visibility */
.real-logo {
  filter:
    brightness(1.7)
    contrast(1.15)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

/* FINAL HEADER LOGO SIZE */
.real-logo-brand {
  width: 280px;
  height: 82px;
  display: flex;
  align-items: center;
}

.real-logo {
  width: 265px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  filter:
    brightness(1.75)
    contrast(1.18)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

@media (max-width: 700px) {
  .real-logo-brand {
    width: 175px;
    height: 58px;
  }

  .real-logo {
    width: 170px;
    height: 54px;
  }
}

/* FINAL HOMEPAGE HEADER ALIGNMENT */
.site-header,
header.site-header {
  min-height: 96px;
  height: 96px;
  overflow: visible;
}

.header-shell {
  min-height: 96px;
  height: 96px;
  align-items: center;
}

.real-logo-brand {
  width: 255px;
  height: 84px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.real-logo {
  width: 240px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  padding: 0;
}

.hero,
.hero-section,
#home {
  margin-top: 0;
}

@media (max-width: 700px) {
  .site-header,
  header.site-header,
  .header-shell {
    min-height: 72px;
    height: 72px;
  }

  .real-logo-brand {
    width: 170px;
    height: 64px;
  }

  .real-logo {
    width: 160px;
    height: 60px;
  }
}

/* CLEAN FINAL LOGO PRESENTATION */
.real-logo-brand {
  width: 255px;
  height: 76px;
  padding: 8px 14px;
  display: flex;
  align-items: center;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(213, 166, 61, 0.48);
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.real-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  filter: none;
}

@media (max-width: 700px) {
  .real-logo-brand {
    width: 178px;
    height: 58px;
    padding: 6px 10px;
  }
}

/* FINAL WEBSITE LOGO */
.sig-web-logo {
  width: 255px;
  min-width: 255px;
  height: 76px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: inherit;
  text-decoration: none;
}

.sig-logo-main {
  position: relative;
  width: fit-content;
  display: block;
}

.sig-logo-letters {
  display: block;
  color: #ffffff;
  font-size: 43px;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 4px;
}

.sig-logo-star {
  position: absolute;
  top: -21px;
  left: 50%;
  color: #d5a63d;
  font-size: 25px;
  line-height: 1;
  transform: translateX(-50%);
}

.sig-logo-line {
  width: 194px;
  height: 2px;
  margin-top: 9px;
  display: block;
  background: #d5a63d;
}

.sig-logo-name {
  margin-top: 5px;
  color: #d5a63d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.2px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .sig-web-logo {
    width: 170px;
    min-width: 170px;
    height: 60px;
  }

  .sig-logo-letters {
    font-size: 31px;
  }

  .sig-logo-star {
    top: -16px;
    font-size: 19px;
  }

  .sig-logo-line {
    width: 145px;
    margin-top: 7px;
  }

  .sig-logo-name {
    font-size: 6.5px;
    letter-spacing: 1.5px;
  }
}

/* FINAL LOGO POLISH */
.sig-web-logo {
  width: 225px;
  min-width: 225px;
  height: 70px;
  transform: translateY(-3px);
}

.sig-logo-letters {
  font-size: 39px;
  letter-spacing: 3.5px;
}

.sig-logo-line {
  width: 175px;
}

.sig-logo-name {
  color: #e4b64c;
  font-size: 8.5px;
  letter-spacing: 2px;
}

@media (max-width: 700px) {
  .sig-web-logo {
    width: 160px;
    min-width: 160px;
    height: 56px;
    transform: translateY(-2px);
  }

  .sig-logo-letters {
    font-size: 29px;
  }

  .sig-logo-line {
    width: 138px;
  }

  .sig-logo-name {
    font-size: 6.3px;
    letter-spacing: 1.35px;
  }
}


/* =========================================================
   FINAL CLIENT MOBILE REVISION
   Official logo, white header, menu, headline, call button
   ========================================================= */

.sig-client-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

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

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title span {
  display: block;
}

.hero-call-button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid rgba(227, 177, 52, 0.8);
  background: rgba(3, 19, 31, 0.92);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.hero-call-button:hover {
  background: #e3b134;
  color: #071520;
}

@media (max-width: 700px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .site-header,
  header.site-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(7, 21, 32, 0.14);
  }

  .site-header .container,
  .site-header .header-inner,
  header.site-header > div {
    min-height: 88px;
  }

  .sig-web-logo {
    display: block;
    width: 164px !important;
    min-width: 0 !important;
    height: 70px !important;
    margin: 0;
    transform: none !important;
  }

  .sig-client-logo {
    width: 164px;
    height: 70px;
    object-position: left center;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 29px;
    height: 3px;
    border-radius: 999px;
    background: #071520;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    z-index: 1001;
    top: 88px;
    right: 0;
    left: 0;
    display: none !important;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    padding: 16px 22px 28px;
    border-top: 1px solid rgba(7, 21, 32, 0.1);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  }

  .main-navigation.is-open {
    display: flex !important;
  }

  .main-navigation a {
    display: block;
    width: 100%;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(7, 21, 32, 0.1);
    color: #071520 !important;
    font-size: 16px;
    font-weight: 750;
    text-decoration: none;
  }

  .main-navigation .nav-cta {
    margin-top: 14px;
    padding: 16px;
    border: 0;
    background: #e3b134;
    color: #071520 !important;
    text-align: center;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    gap: 0;
    font-size: clamp(36px, 10vw, 42px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .hero-actions,
  .hero-buttons {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .hero-call-button {
    min-height: 58px;
    margin-top: 12px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .sig-web-logo,
  .sig-client-logo {
    width: 145px !important;
  }

  .hero-title {
    font-size: 35px !important;
  }
}

/* FINAL MOBILE HEADER + MENU POLISH */
@media (max-width: 700px) {
  .site-header,
  header.site-header {
    min-height: 78px !important;
  }

  .site-header .container,
  .site-header .header-inner,
  header.site-header > div {
    min-height: 78px !important;
  }

  .sig-web-logo {
    width: 188px !important;
    height: 76px !important;
    display: flex !important;
    align-items: center;
  }

  .sig-client-logo {
    width: 188px !important;
    height: 76px !important;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
  }

  .main-navigation {
    top: 78px !important;
    padding: 24px 22px 28px !important;
    border-top: 2px solid #e3b134 !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2) !important;
  }

  .main-navigation a {
    padding: 16px 4px !important;
  }

  .main-navigation .nav-cta {
    margin-top: 18px !important;
  }
}

@media (max-width: 380px) {
  .sig-web-logo,
  .sig-client-logo {
    width: 168px !important;
  }
}

/* FINAL LOGO INTEGRATION */
@media (max-width: 700px) {
  .site-header,
  header.site-header {
    background: #06111b !important;
    border-bottom: 2px solid #d6a93a !important;
  }

  .site-header .container,
  .site-header .header-inner,
  header.site-header > div {
    min-height: 78px !important;
    background: #06111b !important;
  }

  .sig-web-logo {
    width: 188px !important;
    height: 76px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    transform: none !important;
  }

  .sig-client-logo {
    width: 188px !important;
    height: 76px !important;
    object-fit: contain !important;
    object-position: left center !important;
    background: transparent !important;
  }

  .mobile-menu-toggle span {
    background: #ffffff !important;
  }

  .mobile-menu-toggle.is-open span {
    background: #071520 !important;
  }

  .main-navigation {
    top: 78px !important;
  }
}

@media (max-width: 380px) {
  .sig-web-logo,
  .sig-client-logo {
    width: 166px !important;
  }
}


/* FINAL WHITE HEADER LOGO */
@media (max-width: 700px) {
  .site-header,
  header.site-header {
    background: #ffffff !important;
    border-bottom: 2px solid #d8a629 !important;
  }

  .site-header .container,
  .site-header .header-inner,
  header.site-header > div {
    min-height: 82px !important;
    background: #ffffff !important;
  }

  .sig-white-logo {
    display: flex !important;
    width: 178px !important;
    height: 74px !important;
    min-width: 178px !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none;
    transform: none !important;
  }

  .sig-white-logo-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .sig-white-logo-star {
    position: absolute;
    top: -12px;
    left: 50%;
    color: #d8a629;
    font-size: 24px;
    line-height: 1;
    transform: translateX(-50%);
  }

  .sig-white-logo-letters {
    color: #050505;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 0.95;
  }

  .sig-white-logo-line {
    width: 150px;
    height: 2px;
    margin-top: 2px;
    background: #d8a629;
  }

  .sig-white-logo-name {
    color: #050505;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-menu-toggle span,
  .mobile-menu-toggle.is-open span {
    background: #071520 !important;
  }

  .main-navigation {
    top: 82px !important;
  }
}

@media (max-width: 380px) {
  .sig-white-logo {
    width: 158px !important;
    min-width: 158px !important;
  }

  .sig-white-logo-letters {
    font-size: 37px;
  }

  .sig-white-logo-line {
    width: 136px;
  }

  .sig-white-logo-name {
    font-size: 6.2px;
    letter-spacing: 1.2px;
  }
}

/* FINAL HEADER ALIGNMENT */
@media (max-width: 700px) {
  .site-header .container,
  .site-header .header-inner,
  header.site-header > div {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 82px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .sig-white-logo {
    position: relative;
    top: 3px;
    display: flex !important;
    height: 72px !important;
    justify-content: center;
    margin: 0 !important;
  }

  .sig-white-logo-main {
    transform: translateY(2px);
  }

  .sig-white-logo-line {
    margin-top: 1px !important;
  }

  .sig-white-logo-name {
    margin-top: 1px !important;
  }

  .mobile-menu-toggle {
    margin-top: 0 !important;
    align-self: center !important;
  }
}


/* TRUE FINAL MOBILE LOGO ALIGNMENT */
@media (max-width: 700px) {
  .site-header,
  header.site-header {
    height: 84px !important;
    min-height: 84px !important;
    padding: 0 !important;
  }

  .site-header .container,
  .site-header .header-inner,
  header.site-header > div {
    height: 84px !important;
    min-height: 84px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .sig-white-logo {
    position: static !important;
    top: auto !important;
    width: 176px !important;
    min-width: 176px !important;
    height: 68px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: center !important;
    justify-content: center !important;
    transform: translateY(1px) !important;
  }

  .sig-white-logo-main {
    transform: none !important;
  }

  .sig-white-logo-star {
    top: -10px !important;
  }

  .sig-white-logo-letters {
    line-height: 0.9 !important;
  }

  .mobile-menu-toggle {
    position: static !important;
    align-self: center !important;
    margin: 0 !important;
    transform: none !important;
  }

  .main-navigation {
    top: 84px !important;
  }
}

/* FULL-WIDTH GOLD HEADER DIVIDER */
@media (max-width: 700px) {
  .site-header,
  header.site-header {
    position: relative !important;
    border-bottom: 0 !important;
  }

  .site-header::after,
  header.site-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: block;
    width: 100%;
    height: 3px;
    background: #d8a629;
    pointer-events: none;
  }

  .site-header .container,
  .site-header .header-inner,
  header.site-header > div {
    border-bottom: 0 !important;
  }

  .sig-white-logo-line {
    display: none !important;
  }
}

/* Final star alignment */
.sig-white-logo-star{
    left: 4px !important;
}

/* TRUE STAR POSITION — CENTERED OVER THE I */
@media (max-width: 700px) {
  .sig-white-logo-main {
    position: relative !important;
  }

  .sig-white-logo-star {
    left: 50% !important;
    top: -12px !important;
    transform: translateX(-50%) !important;
  }
}

/* FINAL BALANCED STAR ALIGNMENT */
@media (max-width: 700px) {
  .sig-white-logo-main {
    position: relative !important;
  }

  .sig-white-logo-star {
    left: calc(50% + 3px) !important;
    top: -15px !important;
    font-size: 23px !important;
    transform: translateX(-50%) !important;
  }

  .sig-white-logo-letters {
    letter-spacing: 4px !important;
  }
}

/* Tiny star adjustment */
@media (max-width:700px){
  .sig-white-logo-star{
    left: calc(50% + 1px) !important;
  }
}

/* STAR ATTACHED DIRECTLY TO THE I */
@media (max-width: 700px) {
  .sig-white-logo-letters {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 4px !important;
    color: #050505 !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    line-height: 0.92 !important;
    letter-spacing: 0 !important;
  }

  .sig-letter {
    display: block;
    position: relative;
  }

  .sig-letter-i {
    position: relative;
  }

  .sig-i-star {
    position: absolute;
    left: 50%;
    bottom: calc(100% - 1px);
    color: #d8a629;
    font-size: 20px;
    line-height: 1;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .sig-white-logo-star {
    display: none !important;
  }
}

/* HOMEPAGE HERO BACKGROUND IMAGE */
.hero-image-section {
  position: relative;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 16, 27, 0.96) 0%,
      rgba(3, 16, 27, 0.86) 48%,
      rgba(3, 16, 27, 0.58) 100%
    ),
    url("../images/background.jpg") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.hero-image-section .hero-shade {
  background:
    radial-gradient(
      circle at 72% 35%,
      rgba(218, 168, 41, 0.08),
      transparent 46%
    ) !important;
}

@media (max-width: 700px) {
  .hero-image-section {
    background-image:
      linear-gradient(
        180deg,
        rgba(3, 16, 27, 0.80) 0%,
        rgba(3, 16, 27, 0.90) 58%,
        rgba(3, 16, 27, 0.98) 100%
      ),
      url("../images/background.jpg") !important;
    background-position: 62% center !important;
  }
}
