:root {
  --brand-deep: #123f49;
  --brand-dark: #092d35;
  --brand-ink: #071f25;
  --brand-orange: #f6a52a;
  --brand-orange-light: #ffc35a;
  --brand-cream: #f7f3ea;
  --surface: #ffffff;
  --surface-soft: #f4f6f4;
  --text: #15282d;
  --text-soft: #65757a;
  --line: rgba(13, 51, 59, 0.13);
  --shadow: 0 24px 70px rgba(6, 31, 37, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

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

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand-ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 28, 34, .8), rgba(4, 28, 34, 0));
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(7, 31, 37, .94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 0;
  border-radius: 0;
  animation: lamp-on 3s ease-in-out 1 both;
}

.brand-symbol::before {
  display: none;
}

.brand-symbol span {
  display: none;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes lamp-on {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(246,165,42,0)); }
  22% { filter: drop-shadow(0 0 5px rgba(246,165,42,.45)); transform: scale(1.05); }
  42% { filter: drop-shadow(0 0 15px rgba(246,165,42,.9)); transform: scale(1.1); }
  58% { filter: drop-shadow(0 0 5px rgba(246,165,42,.42)); transform: scale(1.03); }
}

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

.brand-copy strong {
  color: #fff;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.05em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .68);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav > a:not(.button):hover {
  color: #fff;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 27px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: .78rem;
}

.nav-cta {
  border-radius: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--brand-ink);
  background: var(--brand-orange);
  box-shadow: 0 12px 30px rgba(246, 165, 42, .2);
}

.button-primary:hover {
  background: var(--brand-orange-light);
  box-shadow: 0 16px 34px rgba(246, 165, 42, .3);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .03);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.button-dark {
  color: #fff;
  background: var(--brand-ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding: 155px 0 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(255,255,255,.015), transparent 45%),
    var(--brand-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: -340px;
  right: -280px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(246, 165, 42, .19), transparent 65%);
}

.hero-glow-two {
  bottom: -330px;
  left: -280px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(33, 115, 128, .3), transparent 64%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--brand-deep);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--brand-orange);
}

.eyebrow.light {
  color: var(--brand-orange-light);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.2vw, 6.15rem);
  font-weight: 700;
  letter-spacing: -.065em;
}

.hero h1 em {
  display: block;
  color: var(--brand-orange);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.045em;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .71);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  display: flex;
  margin-top: 45px;
  gap: 36px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  min-width: 116px;
  padding: 14px 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 28px rgba(0,0,0,.08);
}

.hero-proof div:last-child {
  padding-right: 18px;
}

.hero-proof strong {
  color: #fff;
  font-size: 1.2rem;
}

.hero-proof span {
  color: rgba(255,255,255,.55);
  font-size: .74rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-main-photo {
  position: absolute;
  inset: 0 14px 18px 50px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 220px 220px 30px 30px;
  box-shadow: 0 38px 80px rgba(0,0,0,.3);
}

.hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,19,23,.02) 45%, rgba(2,19,23,.72));
}

.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 63%;
  transform: scale(1.04);
}

.hero-main-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  background: #061b20;
}

.hero-main-video::after {
  pointer-events: none;
}

.hero-main-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-main-photo figcaption span {
  width: 8px;
  height: 8px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(246,165,42,.15);
}

.hero-logo-card {
  position: absolute;
  top: 42px;
  left: -30px;
  z-index: 3;
  overflow: hidden;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-rating-card {
  position: absolute;
  right: -28px;
  bottom: 58px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 220px;
  padding: 20px 22px;
  color: var(--brand-ink);
  background: var(--brand-cream);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--brand-orange);
  font-size: .88rem;
  letter-spacing: .12em;
}

.hero-rating-card strong {
  margin: 5px 0 2px;
  font-size: .9rem;
}

.hero-rating-card a {
  color: #647477;
  font-size: .7rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-video-card {
  position: absolute;
  right: -28px;
  bottom: 45px;
  z-index: 3;
  overflow: hidden;
  width: 260px;
  margin: 0;
  color: #fff;
  background: var(--brand-ink);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-video-card video {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  background: #061b20;
}

.hero-small-photo img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: 50% 63%;
}

.hero-video-card figcaption {
  display: flex;
  align-items: center;
  padding: 12px 15px 13px;
  gap: 7px;
  font-size: .68rem;
  font-weight: 800;
}

.hero-video-card figcaption small {
  margin-left: auto;
  color: rgba(255,255,255,.48);
  font-size: .58rem;
  font-weight: 600;
}

.video-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(246,165,42,.14);
}

.emergency-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 68px;
  padding: 29px 34px;
  gap: 22px;
  color: var(--brand-ink);
  background: var(--brand-orange);
  border-radius: 20px 20px 0 0;
}

.emergency-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--brand-orange);
  background: var(--brand-ink);
  border-radius: 50%;
  font-weight: 800;
}

.emergency-bar div:nth-child(2) {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.emergency-bar div:nth-child(2) strong {
  font-size: 1.08rem;
}

.emergency-bar div:nth-child(2) span {
  font-size: .9rem;
  opacity: .74;
}

.emergency-bar > a {
  padding: 11px 0 8px;
  border-bottom: 1px solid rgba(7,31,37,.28);
  font-size: .9rem;
  font-weight: 800;
}

.trust-strip {
  color: #fff;
  background: var(--brand-deep);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 82px;
}

.trust-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.trust-list span:last-child {
  border-right: 0;
}

.trust-list i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.about {
  overflow: hidden;
  background: var(--brand-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(370px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 95px;
}

.about-visual {
  position: relative;
  min-height: 620px;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -22px;
  right: 18px;
  width: 78%;
  height: 92%;
  border: 1px solid rgba(18,63,73,.22);
  border-radius: 230px 230px 30px 30px;
}

.about-photo-wrap {
  position: absolute;
  inset: 0 48px 0 0;
  overflow: hidden;
  background: var(--brand-deep);
  border-radius: 230px 230px 30px 30px;
  box-shadow: var(--shadow);
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(1.08);
  transform-origin: 50% 45%;
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  padding: 21px 24px;
  color: var(--brand-ink);
  background: var(--brand-orange);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-badge strong {
  font-size: 1.05rem;
}

.about-badge span {
  margin-top: 2px;
  font-size: .72rem;
}

.about-copy .lead {
  color: var(--brand-deep);
  font-size: 1.15rem;
  font-weight: 600;
}

.about-copy > p:not(.lead) {
  color: var(--text-soft);
}

.about-values {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.about-values article {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 20px 0;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.about-values article > span {
  color: var(--brand-orange);
  font-size: .75rem;
  font-weight: 800;
}

.about-values strong {
  display: block;
  margin-bottom: 4px;
  font-size: .95rem;
}

.about-values p {
  margin: 0;
  color: var(--text-soft);
  font-size: .82rem;
}

.services {
  background: #fff;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  margin-bottom: 52px;
  gap: 70px;
}

.services-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.services-heading > p {
  margin-bottom: 5px;
  color: var(--text-soft);
  font-size: .95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: 34px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--brand-cream);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 45px;
  color: var(--brand-ink);
  background: var(--brand-orange);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--brand-ink);
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: .84rem;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 26px 30px;
  gap: 30px;
  color: var(--brand-ink);
  background: var(--brand-cream);
}

.services-cta > div {
  display: flex;
  flex-direction: column;
}

.services-cta strong {
  font-size: 1rem;
}

.services-cta span {
  color: var(--text-soft);
  font-size: .78rem;
}

.solutions,
.process,
.contact {
  color: #fff;
  background: var(--brand-dark);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  align-items: end;
  margin-bottom: 58px;
  gap: 70px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  color: rgba(255,255,255,.58);
  font-size: .95rem;
}

.section-heading-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-heading-side > p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .95rem;
}

.solutions-video-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: min(100%, 220px);
  align-self: flex-end;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}

.solutions-video-card video {
  display: block;
  width: 100%;
  height: 320px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.solutions-video-card figcaption {
  display: flex;
  align-items: center;
  padding: 9px 12px 10px;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: .68rem;
  font-weight: 800;
}

.section-heading.dark > p {
  color: var(--text-soft);
}

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

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 38px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.08);
  border-color: rgba(246,165,42,.35);
}

.solution-card-featured {
  color: var(--brand-ink);
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.solution-card-featured:hover {
  background: var(--brand-orange-light);
}

.solution-number {
  margin-bottom: 60px;
  color: rgba(255,255,255,.45);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.solution-card-featured .solution-number {
  color: rgba(7,31,37,.45);
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
  color: var(--brand-orange);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  font-size: 1.5rem;
}

.solution-card-featured .solution-icon {
  color: var(--brand-ink);
  border-color: rgba(7,31,37,.2);
}

.solution-card h3 {
  margin-bottom: 15px;
  font-size: 1.55rem;
}

.solution-card p {
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}

.solution-card-featured p {
  color: rgba(7,31,37,.72);
}

.solution-card ul {
  margin: 25px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.11);
  list-style: none;
}

.solution-card-featured ul {
  border-color: rgba(7,31,37,.14);
}

.solution-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 17px;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
}

.solution-card-featured li {
  color: rgba(7,31,37,.8);
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--brand-orange);
}

.solution-card-featured li::before {
  background: var(--brand-ink);
}

.other-services {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  margin-top: 55px;
  padding-top: 42px;
  gap: 60px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.other-services .label {
  color: var(--brand-orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.other-services h3 {
  margin: 8px 0 0;
  font-size: 1.55rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.service-tags span {
  padding: 10px 15px;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .74rem;
}

.projects {
  background: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--brand-deep);
  border: 0;
  border-radius: 18px;
  cursor: zoom-in;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,22,27,.84));
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.project-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--brand-deep);
}

.project-video::after {
  pointer-events: none;
}

.project-card:hover img {
  transform: scale(1.055);
}

.project-card > span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: .94rem;
  font-weight: 700;
  text-align: left;
}

.project-card small {
  margin-bottom: 4px;
  color: var(--brand-orange-light);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-tall {
  grid-row: span 2;
}

.project-wide {
  grid-column: span 2;
}

.project-grid .project-card:nth-child(1) img {
  object-position: 50% 54%;
}

.project-grid .project-card:nth-child(4) img {
  object-position: 50% 48%;
}

.project-grid .project-card:nth-child(5) img {
  object-position: 50% 54%;
}

.center {
  margin-top: 42px;
  text-align: center;
}

.audiences {
  background: var(--brand-cream);
}

.audiences-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 110px;
}

.audiences-copy {
  position: sticky;
  top: 115px;
}

.audiences-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.audiences-copy p {
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  gap: 10px;
  padding-bottom: 7px;
  color: var(--brand-deep);
  border-bottom: 1px solid rgba(18,63,73,.35);
  font-size: .84rem;
  font-weight: 800;
}

.text-link span {
  color: var(--brand-orange);
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 31px 0;
  gap: 19px;
  border-bottom: 1px solid var(--line);
}

.audience-list article > span {
  color: var(--brand-orange);
  font-size: .75rem;
  font-weight: 800;
}

.audience-list h3 {
  margin-bottom: 7px;
  font-size: 1.3rem;
}

.audience-list p {
  margin: 0;
  color: var(--text-soft);
  font-size: .88rem;
}

.process {
  position: relative;
  overflow: hidden;
}

.process::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -280px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(246,165,42,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(246,165,42,.025), 0 0 0 160px rgba(246,165,42,.018);
  pointer-events: none;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
}

.process-grid article {
  min-height: 265px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--brand-orange);
  font-size: .72rem;
  font-weight: 800;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-top i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
}

.process-grid h3 {
  margin: 80px 0 12px;
  font-size: 1.25rem;
}

.process-grid p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

.reviews {
  background: #fff;
}

.reviews-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 50px;
}

.reviews-header h2 {
  margin-bottom: 0;
}

.google-score {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-score > strong {
  font-size: 3rem;
  letter-spacing: -.08em;
}

.google-score > div {
  display: flex;
  flex-direction: column;
}

.google-score small {
  color: var(--text-soft);
  font-size: .7rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 29px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.review-card blockquote {
  margin: 38px 0 28px;
  color: var(--brand-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.35;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.review-card footer strong {
  font-size: .82rem;
}

.review-card footer span {
  color: var(--text-soft);
  font-size: .66rem;
}

.review-source {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: .72rem;
}

.review-source a {
  color: var(--brand-deep);
  font-weight: 800;
}

.review-source a span {
  color: var(--brand-orange);
}

.faq {
  background: var(--brand-cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
}

.faq-intro p {
  color: var(--text-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0;
  gap: 22px;
  color: var(--brand-ink);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--brand-ink);
  background: var(--brand-orange);
  border-radius: 50%;
  font-size: 1.12rem;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 27px;
  color: var(--text-soft);
  font-size: .87rem;
}

.contact {
  padding-top: 105px;
  background:
    radial-gradient(circle at 80% 0%, rgba(246,165,42,.11), transparent 30%),
    var(--brand-dark);
}

.contact-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 85px;
}

.contact-copy h2 {
  max-width: 650px;
  font-size: clamp(2.6rem, 5vw, 5.15rem);
}

.contact-copy p {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.6);
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.contact-info {
  border-top: 1px solid rgba(255,255,255,.13);
}

.contact-info article {
  display: grid;
  grid-template-columns: 145px 1fr;
  padding: 21px 0;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.contact-info article > span {
  color: rgba(255,255,255,.42);
  font-size: .7rem;
}

.contact-info a,
.contact-info strong {
  color: rgba(255,255,255,.86);
  font-size: .86rem;
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--brand-orange);
}

.budget-form {
  padding: 40px;
  color: var(--brand-ink);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

.form-heading > span {
  color: var(--brand-orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 8px 0 10px;
  font-size: 1.85rem;
}

.form-heading p {
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: .8rem;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--brand-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid input,
.form-grid select {
  height: 50px;
  padding: 0 15px;
}

.form-grid textarea {
  min-height: 115px;
  padding: 13px 15px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(246,165,42,.12);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: .68rem;
  text-align: center;
}

.site-footer {
  padding: 70px 0 25px;
  color: #fff;
  background: var(--brand-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .5fr .7fr;
  padding-bottom: 58px;
  gap: 90px;
}

.brand-footer {
  margin-bottom: 20px;
}

.footer-grid > div:first-child > p {
  max-width: 390px;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid nav strong,
.footer-contact strong {
  margin-bottom: 9px;
  color: var(--brand-orange);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-contact a {
  color: rgba(255,255,255,.58);
  font-size: .77rem;
  transition: color .2s ease;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  padding-top: 23px;
  gap: 28px;
  color: rgba(255,255,255,.34);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .66rem;
}

.site-signature {
  color: rgba(255,255,255,.52);
  transition: color .2s ease;
}

.site-signature strong {
  color: #fff;
  font-weight: 800;
}

.site-signature:hover {
  color: var(--brand-orange);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 19px;
  gap: 9px;
  color: #fff;
  background: #20b75a;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(15,101,48,.3);
  font-size: .77rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float.is-visible:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(15,101,48,.38);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lightbox {
  width: min(94vw, 980px);
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(3,18,22,.92);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox p {
  margin: 12px 0 0;
  font-size: .8rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.lead-popup[hidden] {
  display: none;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,18,22,.82);
  backdrop-filter: blur(7px);
}

.lead-popup-card {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  padding: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(246,165,42,.18), transparent 38%),
    var(--brand-dark);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0,0,0,.4);
  text-align: center;
}

.lead-popup-label {
  color: var(--brand-orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.lead-popup-card h2 {
  margin: 13px 0 15px;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.lead-popup-card p {
  margin-bottom: 28px;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}

.lead-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
}

.lead-popup-later {
  display: block;
  margin: 17px auto 0;
  padding: 3px 0;
  color: rgba(255,255,255,.55);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: .72rem;
  cursor: pointer;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: .8rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.04fr .96fr;
    gap: 35px;
  }

  .hero-main-photo {
    left: 35px;
  }

  .hero-rating-card {
    right: -5px;
  }

  .hero-video-card {
    right: -5px;
  }

  .about-grid {
    gap: 55px;
  }

  .solution-card {
    min-height: 510px;
    padding: 30px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
    z-index: 4;
  }

  .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);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 38px;
    gap: 22px;
    background: rgba(7,31,37,.985);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a:not(.button) {
    color: #fff;
    font-size: 1.5rem;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 18px;
  }

  .hero-main-photo {
    inset: 0 40px 20px 80px;
  }

  .hero-logo-card {
    left: 12px;
  }

  .hero-rating-card {
    right: 6px;
  }

  .hero-video-card {
    right: 6px;
  }

  .emergency-bar {
    margin-top: 48px;
  }

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

  .trust-list span {
    min-height: 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .about-grid,
  .audiences-grid,
  .contact-shell,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-visual {
    width: min(100%, 560px);
    min-height: 650px;
    margin-inline: auto;
  }

  .section-heading,
  .services-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-number {
    margin-bottom: 40px;
  }

  .other-services {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-tags {
    justify-content: flex-start;
  }

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

  .project-wide {
    grid-column: span 1;
  }

  .project-tall {
    grid-row: span 1;
  }

  .audiences-copy {
    position: static;
  }

  .faq-intro {
    position: static;
  }

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .brand-copy small {
    font-size: .53rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero h1 em {
    display: inline;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    justify-content: space-between;
    margin-top: 36px;
    gap: 8px;
  }

  .hero-proof div {
    min-width: 0;
    padding: 10px 9px;
  }

  .hero-proof div:last-child {
    padding-right: 9px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .hero-proof span {
    font-size: .61rem;
  }

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

  .hero-main-photo {
    inset: 0 0 18px 30px;
    border-radius: 160px 160px 24px 24px;
  }

  .hero-logo-card {
    top: 35px;
    left: 0;
    width: 105px;
    height: 105px;
  }

  .hero-rating-card {
    right: 8px;
    bottom: 40px;
    width: 178px;
    padding: 15px 17px;
  }

  .hero-video-card {
    right: 8px;
    bottom: 31px;
    width: 178px;
  }

  .hero-video-card video {
    height: 118px;
  }

  .hero-small-photo img {
    height: 118px;
  }

  .hero-video-card figcaption {
    padding: 10px 11px;
    font-size: .6rem;
  }

  .hero-video-card figcaption small {
    display: none;
  }

  .solutions-video-card {
    width: min(100%, 240px);
    align-self: flex-start;
  }

  .hero-rating-card strong {
    font-size: .78rem;
  }

  .emergency-bar {
    grid-template-columns: auto 1fr;
    padding: 19px;
    border-radius: 16px 16px 0 0;
  }

  .emergency-bar > a {
    grid-column: 2;
    justify-self: start;
  }

  .trust-list span {
    justify-content: flex-start;
    padding-left: 14px;
    font-size: .62rem;
  }

  .about-visual {
    min-height: 510px;
  }

  .about-photo-wrap {
    right: 20px;
  }

  .about-badge {
    min-width: 160px;
    padding: 17px 19px;
  }

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

  .service-card {
    min-height: auto;
    padding: 27px;
  }

  .service-card-icon {
    margin-bottom: 30px;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 23px;
  }

  .services-cta .button {
    width: 100%;
  }

  .other-services {
    margin-top: 40px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 335px;
  }

  .project-card:nth-child(1) {
    min-height: 440px;
  }

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

  .process-grid article,
  .process-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .process-grid h3 {
    margin-top: 42px;
  }

  .reviews-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 250px;
  }

  .review-source {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-info article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .budget-form {
    padding: 26px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid > div:first-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .lead-popup-card {
    padding: 42px 23px 30px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

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

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

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

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