:root {
  --orange: #f06818;
  --orange-deep: #c95110;
  --blue: #3078b0;
  --sky: #52b8e4;
  --navy: #181818;
  --ink: #202020;
  --muted: #62666b;
  --line: #dddddd;
  --soft: #f1f1f1;
  --paper: #f7f7f7;
  --charcoal: #101010;
  --panel: #1f1f1f;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 16, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 99, 23, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px 5vw;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(241, 241, 241, 0.96)),
    linear-gradient(24deg, transparent 0 37%, rgba(48, 120, 176, 0.09) 37% 58%, transparent 58%),
    linear-gradient(156deg, transparent 0 42%, rgba(16, 16, 16, 0.05) 42% 68%, transparent 68%);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  width: 160px;
  min-width: 150px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange);
  background: rgba(240, 104, 24, 0.1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(240, 104, 24, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 600px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-image:
    linear-gradient(110deg, rgba(8, 8, 8, 0.96) 0%, rgba(24, 24, 24, 0.88) 42%, rgba(24, 24, 24, 0.56) 72%, rgba(48, 120, 176, 0.34) 100%),
    linear-gradient(28deg, transparent 0 36%, rgba(255, 255, 255, 0.06) 36% 52%, transparent 52%),
    linear-gradient(150deg, transparent 0 58%, rgba(0, 0, 0, 0.32) 58% 74%, transparent 74%),
    var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero--home {
  background-position: center center;
}

.hero--signage {
  background-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 13%, var(--orange) 13% 14.3%, transparent 14.3%),
    radial-gradient(circle at 100% 0, var(--sky) 0 12%, var(--orange) 12% 13.5%, transparent 13.6%),
    linear-gradient(120deg, transparent 0 72%, rgba(0, 0, 0, 0.52) 72% 100%);
  opacity: 0.88;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 86px 0 76px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sky);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.96;
  font-weight: 900;
}

.hero p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(240, 104, 24, 0.3);
}

.button:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--white);
}

.button--light {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--white);
}

.button--outline {
  color: var(--charcoal);
  background: transparent;
  border-color: var(--blue);
  box-shadow: none;
}

.button--outline:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #07150c;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.button--whatsapp:hover {
  background: #1fb95a;
  border-color: #1fb95a;
}

.stats-strip {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(90deg, #0b0b0b, #202020);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-strip__inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.stat-item {
  min-height: 92px;
  padding: 20px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid transparent;
}

.stat-item:nth-child(odd) {
  border-top-color: var(--orange);
}

.stat-item:nth-child(even) {
  border-top-color: var(--blue);
}

.stat-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item strong {
  display: block;
  color: var(--sky);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.proof-strip {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(28deg, var(--charcoal), var(--panel));
  color: var(--white);
}

.proof-strip__inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.proof-item {
  min-height: 106px;
  padding: 22px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(240, 104, 24, 0.28);
}

.proof-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item strong {
  display: block;
  color: var(--sky);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.section {
  padding: 86px 0;
  background: var(--white);
}

.section--soft {
  background:
    linear-gradient(122deg, transparent 0 28%, rgba(255, 255, 255, 0.72) 28% 43%, transparent 43%),
    linear-gradient(30deg, rgba(16, 16, 16, 0.045) 0 18%, transparent 18% 70%, rgba(48, 120, 176, 0.07) 70% 100%),
    var(--soft);
}

.section--navy {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%),
    linear-gradient(28deg, var(--charcoal), var(--panel));
}

.section__inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.65rem;
  line-height: 1.08;
  font-weight: 900;
}

.section--navy h2,
.section--navy .section-kicker {
  color: var(--white);
}

.section-heading p,
.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section--navy .section-heading p,
.section--navy .lead {
  color: rgba(255, 255, 255, 0.8);
}

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

.service-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 16, 16, 0.1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.service-card__body {
  padding: 20px;
}

.service-card h3,
.feature-card h3,
.focus-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p,
.feature-card p,
.focus-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-card .text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.process {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.process-step__num {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--blue);
  border: 4px solid rgba(48, 120, 176, 0.25);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  margin: 0;
  color: var(--navy);
}

.process-step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.feature-grid,
.focus-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.focus-card,
.industry-item {
  padding: 22px;
  background:
    linear-gradient(142deg, rgba(48, 120, 176, 0.06), transparent 36%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card::before,
.focus-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--orange);
  border-radius: 4px;
}

.focus-card:nth-child(2n)::before {
  background: var(--blue);
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 48%, var(--blue) 50%, var(--blue) 58%, transparent 60%),
    linear-gradient(45deg, transparent 44%, var(--blue) 46%, var(--blue) 56%, transparent 58%);
}

.plain-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.service-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-scope span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(48, 120, 176, 0.34);
  border-radius: 6px;
  font-weight: 900;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.gallery-image {
  overflow: hidden;
  border: 8px solid var(--blue);
  border-left-color: var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.cta-band {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 8, 8, 0.98), rgba(24, 24, 24, 0.9)),
    linear-gradient(28deg, transparent 0 40%, rgba(255, 255, 255, 0.05) 40% 58%, transparent 58%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.cta-band__inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.1;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.contact-panel {
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(48, 120, 176, 0.2), transparent 34%),
    linear-gradient(28deg, var(--charcoal), var(--panel));
  border-radius: 8px;
  border-bottom: 4px solid var(--orange);
}

.contact-panel h3 {
  margin: 0 0 18px;
  font-size: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-list span {
  color: var(--sky);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list a,
.contact-list address {
  color: var(--white);
  font-style: normal;
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.quote-form textarea {
  min-height: 138px;
  resize: vertical;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form button {
  justify-self: start;
  cursor: pointer;
  font: inherit;
}

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

.industry-item {
  font-weight: 900;
  color: var(--charcoal);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(48, 120, 176, 0.14) 54% 100%),
    linear-gradient(26deg, var(--charcoal), #000000);
  border-top: 5px solid var(--orange);
}

.site-footer__inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 230px;
  padding: 0;
  background: transparent;
  border-radius: 6px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.26));
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 16px 0 0;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sky);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 16px 10px 10px;
  color: #07150c;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  font-weight: 900;
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.whatsapp-float:hover {
  background: #1fb95a;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-call {
    justify-self: end;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .proof-strip__inner,
  .stats-strip__inner,
  .service-grid,
  .feature-grid,
  .focus-grid,
  .industry-grid,
  .split,
  .gallery-band,
  .quote-layout,
  .cta-band__inner,
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 72px;
  }

  .brand {
    width: 155px;
    min-width: 0;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 660px;
    background-image:
      linear-gradient(110deg, rgba(8, 8, 8, 0.96), rgba(24, 24, 24, 0.82)),
      linear-gradient(28deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 42% 58%, transparent 58%),
      var(--hero-image);
  }

  .hero--home,
  .hero--signage {
    background-position: 58% center;
  }

  .hero__inner {
    padding: 76px 0 72px;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .section {
    padding: 64px 0;
  }

  .section h2,
  .cta-band h2 {
    font-size: 2rem;
  }

  .proof-strip__inner,
  .stats-strip__inner,
  .service-grid,
  .feature-grid,
  .focus-grid,
  .industry-grid,
  .split,
  .gallery-band,
  .quote-layout,
  .cta-band__inner,
  .site-footer__inner,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat-item {
    min-height: 76px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .stat-item strong {
    font-size: 1.28rem;
  }

  .stat-item span {
    font-size: 0.9rem;
  }

  .cta-band__inner .button {
    justify-self: start;
  }

  .footer-bottom__inner {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 8px 12px 8px 8px;
  }

  .whatsapp-float strong {
    display: none;
  }
}
