:root {
  --ink: #111827;
  --muted: #64717d;
  --soft: #f3f5f2;
  --white: #ffffff;
  --accent: #13a9bf;
  --accent-dark: #075f6d;
  --whatsapp: #20c768;
  --green: var(--accent);
  --green-dark: var(--accent-dark);
  --blue: #1e6673;
  --dark: #071018;
  --deep: #111b23;
  --line: rgba(17, 24, 39, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 20px 50px rgba(17, 24, 21, 0.16);
  font-family: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--soft); color: var(--ink); overflow-x: hidden; }
body.service-loading {
  background: #f3f5f2;
}

body.service-loading .info-strip,
body.service-loading .topbar,
body.service-loading .service-page,
body.service-loading .footer {
  opacity: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

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

.info-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
  min-height: 38px;
  padding: 8px 44px;
  background: #075fbd;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
}

.info-strip a,
.info-strip span {
  color: #ffffff;
}

.info-location,
.info-actions,
.info-actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.info-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
}

.info-actions a {
  font-style: italic;
  font-weight: 900;
}

.info-actions a:hover,
.info-actions a:focus-visible {
  color: #d8fbff;
}

.info-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
}

.info-icon.location::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px 999px 999px 2px;
  background: #54d6f2;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 3px rgba(84, 214, 242, 0.18);
}

.info-icon.location::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #075fbd;
}

.info-icon.whatsapp::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 0 0 3px rgba(32, 199, 104, 0.18);
}

.info-icon.whatsapp::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(20deg);
}

.info-icon.email::before {
  content: "";
  width: 15px;
  height: 10px;
  border: 2px solid #54d6f2;
  border-radius: 2px;
}

.info-icon.email::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-right: 2px solid #54d6f2;
  border-bottom: 2px solid #54d6f2;
  transform: translateY(-2px) rotate(45deg);
}

.info-social-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: var(--whatsapp);
  filter: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 14px 44px;
  background: linear-gradient(180deg, #111315, #080c0f);
  border-bottom: 2px solid rgba(19, 169, 191, 0.55);
  backdrop-filter: blur(14px);
}

.topbar,
.topbar a {
  color: #ffffff;
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.identity img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.identity strong,
.identity small {
  display: block;
  letter-spacing: 0;
}

.identity strong {
  font-size: 1.22rem;
  text-transform: uppercase;
}

.identity small {
  color: #a7dce4;
  font-size: 0.76rem;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  position: relative;
  color: #f5fbfc;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 8px 12px;
  font-weight: 900;
}

.cover {
  position: relative;
  display: block;
  min-height: calc(100vh - 88px);
  padding: 0;
  overflow: hidden;
  background: #050b10;
  color: #ffffff;
}

.cover::before {
  display: none;
}

.hero-stage {
  position: relative;
  height: calc(100vh - 88px);
  min-height: 680px;
  overflow: hidden;
}

.hero-stage-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  height: 100%;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hero-stage-track::-webkit-scrollbar {
  display: none;
}

.hero-stage-card {
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #050b10;
  box-shadow: none;
}

.hero-stage-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(0.78);
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding: clamp(42px, 8vw, 118px);
  background:
    linear-gradient(90deg, rgba(4, 9, 7, 0.94) 0%, rgba(7, 16, 13, 0.68) 44%, rgba(7, 16, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(4, 9, 7, 0.08), rgba(4, 9, 7, 0.62));
}

.hero-stage-copy {
  display: grid;
  align-items: start;
  row-gap: 12px;
  max-width: 720px;
}

.hero-copy-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(19, 169, 191, 0.17);
  color: #b9f4fb;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stage-copy h1,
.hero-stage-copy h2 {
  margin: 0;
  max-width: 20ch;
  min-height: 3em;
  font-size: clamp(1.95rem, 3.2vw, 3.4rem);
  line-height: 1;
}

.hero-stage-copy p {
  margin: 0;
  max-width: 48ch;
  min-height: 4.6em;
  color: #d6e0e8;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.hero-points {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 108px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  width: fit-content;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 13px;
  color: #ffffff;
  font-size: clamp(1rem, 1.9vw, 1.32rem);
  font-weight: 800;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 0;
  border-radius: 8px;
  background: var(--green);
  color: #03150a;
  padding: 0 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-icon-link {
  display: none;
}

.hero-icon-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-icon-link span {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 999px;
  background: rgba(7, 16, 24, 0.92);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-icon-link:hover span,
.hero-icon-link:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(7, 16, 24, 0.48);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  z-index: 4;
}

.hero-control.prev { left: 20px; }
.hero-control.next { right: 20px; }

.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 17px;
  border: 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.primary {
  background: var(--green);
  color: #041209;
}

.outline {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.section {
  padding: 70px 52px;
}

.heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.heading h2,
.about h2,
.contact h2,
.field-heading h2 {
  margin: 0;
  font-size: 2.18rem;
  line-height: 1.12;
}

.heading p,
.about p,
.contact p,
.field-heading p {
  color: var(--muted);
  line-height: 1.62;
}

.solutions {
  background:
    radial-gradient(circle at 14% 0%, rgba(19, 169, 191, 0.18), transparent 34%),
    linear-gradient(180deg, #0e1820, #142331);
  color: #ffffff;
}

.solutions .heading h2,
.proof .heading h2,
.fieldwork .heading h2,
.why .heading h2,
.testimonials .heading h2 {
  color: #ffffff;
}

.solutions .heading p,
.proof .heading p,
.fieldwork .heading p,
.why .heading p,
.testimonials .heading p {
  color: #c4d3dc;
}

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

.solution-card {
  overflow: hidden;
  position: relative;
  display: grid;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0b130f;
  color: #ffffff;
  padding: 0;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.72);
}

.solution-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 100%;
  padding: 34px 28px;
  background: linear-gradient(180deg, rgba(6, 12, 9, 0.1), rgba(6, 12, 9, 0.84));
}

.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0d2735;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 18px;
}

.solution-card h3 {
  margin: 0;
  max-width: 15ch;
  font-size: 1.46rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
}

.solution-card p {
  display: none;
}

.solution-card button {
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #041209;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link {
  align-self: center;
  min-width: 156px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #041209;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solutions .tag,
.proof .tag,
.fieldwork .tag,
.why .tag {
  color: #b9f4fb;
}

.solution-grid > .solution-card:last-child:nth-child(odd) {
  grid-column: auto;
  max-width: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  justify-items: center;
  align-items: start;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%);
  color: var(--ink);
}

.about-heading,
.about-copy {
  display: grid;
  justify-items: center;
}

.about-heading {
  gap: 4px;
}

.about h2 {
  color: #071018;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
}

.about h3 {
  margin: 8px 0 18px;
  max-width: 880px;
  color: #16242e;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.35;
}

.about p {
  max-width: 900px;
  color: #53615a;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 8px;
  background: var(--green);
  color: #041209;
  padding: 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-person {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: min(100%, 840px);
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-person::before {
  display: none;
}

.about-person > img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.about-brand-mark {
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.about-brand-mark img {
  width: 72px;
  height: 54px;
  border-radius: 6px;
  object-fit: contain;
  background: transparent;
}

.about-person figcaption {
  display: none;
}

.about-person strong,
.about-person span {
  display: block;
}

.about-person strong {
  text-transform: uppercase;
}

.about-person span {
  margin-top: 5px;
  color: #c7d8de;
  font-size: 0.92rem;
}

.about-person .about-brand-mark span {
  display: none;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 900px);
  margin-top: 8px;
}

.about-points article {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 10px;
  border: 0;
  border-top: 2px solid rgba(19, 169, 191, 0.35);
  border-radius: 0;
  background: transparent;
  padding: 18px 10px 0;
  text-align: center;
  box-shadow: none;
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #e8f6fb;
  color: var(--green-dark);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.about-points span {
  color: #4f5f6a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.proof {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(19, 169, 191, 0.16), transparent 32%),
    linear-gradient(180deg, #142331, #071018);
  color: #ffffff;
}

.logo-row {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logoLoop 30s linear infinite;
}

.logo-row:hover {
  animation-play-state: paused;
}

.logo-row article {
  flex: 0 0 340px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef4f7;
  color: #101820;
  padding: 14px;
}

@keyframes logoLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-row img {
  width: 100%;
  height: 108px;
  object-fit: contain;
}

.logo-row span {
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.fieldwork {
  background:
    radial-gradient(circle at 82% 12%, rgba(19, 169, 191, 0.17), transparent 28%),
    linear-gradient(180deg, #071018, #101b24);
  color: #ffffff;
}

.field-heading {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.portfolio-heading {
  margin-bottom: 30px;
}

.field-heading p {
  display: none;
}

.brand-stamp {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-stamp img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.work-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.work-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(285px, 365px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.work-track::-webkit-scrollbar {
  display: none;
}

.work-track article {
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #18221d, #0c130f);
  color: #edf6f8;
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.work-track img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.work-track h3 {
  margin: 16px 16px 8px;
  font-size: 1.08rem;
}

.work-track p {
  margin: 0 16px 18px;
  color: #a9b8c3;
  line-height: 1.45;
}

.arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.6rem;
}

.why {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.78), rgba(7, 16, 24, 0.86)),
    url("assets/why-background.jpg") center/cover;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-grid article {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 21, 28, 0.82);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.why-grid span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(19, 169, 191, 0.15);
  color: #b9f4fb;
  font-size: 1.25rem;
  font-weight: 900;
}

.why-grid h3 {
  margin: 20px 0 12px;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  color: #d7e3e9;
  line-height: 1.6;
}

.testimonials {
  background:
    radial-gradient(circle at 80% 0%, rgba(19, 169, 191, 0.1), transparent 30%),
    linear-gradient(180deg, #f3f5f2, #eceff1);
  color: var(--ink);
}

.testimonials .heading h2 {
  color: var(--ink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-grid article {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.testimonial-grid p {
  margin: 0 0 22px;
  color: #424f5a;
  font-size: 1.02rem;
  line-height: 1.62;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--ink);
  text-transform: uppercase;
}

.testimonial-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 34px;
  background:
    linear-gradient(90deg, rgba(19, 169, 191, 0.08), transparent 32%),
    #f6f7f4;
  color: #101820;
}

.contact p,
.contact-list li {
  color: #4f5f6a;
}

.contact-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-list a {
  color: var(--green-dark);
  font-weight: 900;
}

form {
  display: grid;
  gap: 11px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #101820;
  outline: none;
  padding: 13px;
}

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

.footer {
  padding: 0 52px 12px;
  background: var(--dark);
  color: #c5d1dc;
}

.footer > * {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 0.72fr) minmax(170px, 0.9fr) minmax(220px, 1fr) minmax(150px, 0.62fr);
  gap: 32px 38px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand strong,
.footer-column strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.88rem;
}

.footer-brand span {
  display: block;
  margin-bottom: 12px;
  color: #a7dce4;
  font-weight: 800;
}

.footer-brand p {
  margin: 0;
  max-width: 330px;
  color: #b6c5d4;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
}

.footer-column a,
.footer-column span {
  display: block;
  color: #c5d1dc;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 800;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 20px;
  padding-bottom: 6px;
  color: #b5c3d1;
  font-size: 0.9rem;
  text-align: center;
}

.service-page {
  background: #f3f5f2;
  color: #101820;
}

.service-page.is-loading {
  opacity: 0;
}

.service-breadcrumb {
  display: grid;
  gap: 7px;
  padding: 28px 52px 18px;
  color: #667282;
  font-size: 0.92rem;
  background: #f3f5f2;
}

.service-breadcrumb strong {
  color: var(--green-dark);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.service-breadcrumb a {
  color: var(--green-dark);
  font-weight: 700;
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  padding: 74px 52px;
  background: #071018;
  color: #ffffff;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(4, 10, 14, 0.94), rgba(4, 10, 14, 0.7) 48%, rgba(4, 10, 14, 0.22)),
    linear-gradient(180deg, rgba(4, 10, 14, 0.18), rgba(4, 10, 14, 0.74));
  pointer-events: none;
}

.service-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.service-hero h1 {
  margin: 0;
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  line-height: 1.02;
}

.service-hero p {
  max-width: 640px;
  color: #d8e8ef;
  line-height: 1.62;
}

.service-location {
  margin: 18px 0 14px;
  color: #eaf7fb;
  font-size: 1.22rem;
  font-weight: 900;
}

.service-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.04) contrast(1.04) brightness(0.72);
}

.service-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  grid-template-areas:
    "visual intro"
    "visual target";
  gap: 24px;
  padding: 64px 52px 42px;
}

.service-detail-visual {
  grid-area: visual;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border-radius: 8px;
  background: #071018;
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.12);
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.service-content article:first-of-type {
  grid-area: intro;
}

.service-content article:nth-of-type(2) {
  grid-area: target;
}

.service-content article {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 16px 35px rgba(16, 24, 32, 0.08);
}

.service-content h2 {
  margin: 0 0 12px;
}

.service-content article:first-of-type p + p {
  margin-top: 16px;
}

.service-content p,
.service-content li {
  color: #4f5f6a;
  line-height: 1.62;
}

.service-content ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 52px 62px;
}

.service-panel {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 16px 35px rgba(16, 24, 32, 0.08);
}

.service-panel h2 {
  margin: 0 0 14px;
}

.service-panel ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.service-panel li {
  color: #4f5f6a;
  line-height: 1.62;
}

.service-content li,
.service-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(16, 24, 32, 0.1);
}

#service-solutions-list {
  display: grid;
  gap: 14px;
  padding-left: 0;
  list-style: none;
}

#service-solutions-list li {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: #f4f8fb;
  padding: 18px;
}

#service-solutions-list strong,
#service-solutions-list span {
  display: block;
}

#service-solutions-list strong {
  margin-bottom: 8px;
  color: #101820;
  font-size: 1.02rem;
}

#service-solutions-list span {
  color: #4f5f6a;
  line-height: 1.55;
}

.service-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 34px;
  background:
    linear-gradient(90deg, rgba(19, 169, 191, 0.08), transparent 30%),
    #f3f5f2;
  color: #101820;
}

.service-contact p,
.service-contact .contact-list li {
  color: #4f5f6a;
}

.service-contact input,
.service-contact textarea {
  background: #ffffff;
  color: #101820;
}

.whatsapp-action {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-height: 62px;
  margin-top: 18px;
  border-radius: 8px;
  background: var(--whatsapp);
  color: #03150a;
  padding: 12px 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-action span {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: none;
}

.service-footer-cta {
  padding: 48px 52px;
  background: #0d161d;
  color: #ffffff;
  text-align: center;
}

.service-footer-cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.service-footer-cta p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #c7d8de;
  line-height: 1.6;
}

@media (max-width: 1030px) {
  .about,
  .contact,
  .service-contact,
  .service-details,
  .service-hero,
  .service-content {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 520px;
  }

  .service-content {
    grid-template-areas:
      "visual"
      "intro"
      "target";
  }

  .service-detail-visual img {
    min-height: 340px;
  }

  .why-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cover {
    min-height: calc(100vh - 88px);
  }

  .about {
    grid-template-areas:
      "copy"
      "visual"
      "proof";
    justify-items: center;
    text-align: center;
  }

  .about > div:first-child {
    display: grid;
    justify-items: center;
  }

  .about-person {
    width: min(100%, 520px);
  }

  .about-person > img {
    width: min(100%, 400px);
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .about-points {
    width: 100%;
    max-width: 720px;
  }

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

  .solution-grid > .solution-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
    justify-self: center;
  }

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .field-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 760px) {
  .info-strip {
    justify-content: center;
    padding: 8px 18px;
    text-align: center;
    font-size: 0.76rem;
  }

  .topbar {
    padding: 10px 18px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 126px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0b141b;
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .cover {
    min-height: calc(100vh - 88px);
    padding: 0;
  }

  .hero-stage {
    min-height: 590px;
  }

  .hero-stage-card,
  .hero-stage-card img {
    min-height: 590px;
  }

  .hero-stage-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
  }

  .hero-stage-copy {
    display: grid;
    justify-items: center;
    row-gap: 12px;
    max-width: 100%;
  }

  .hero-stage-copy h1,
  .hero-stage-copy h2 {
    font-size: 2rem;
    max-width: 14ch;
    min-height: 4em;
  }

  .hero-stage-copy p {
    max-width: 32ch;
    min-height: 4.8em;
  }

  .hero-points {
    justify-items: center;
    min-height: 110px;
  }

  .hero-points li {
    width: auto;
    border-left: 0;
    border-top: 3px solid var(--green);
    text-align: center;
  }

  .hero-cta {
    width: min(100%, 260px);
  }

  .hero-control {
    display: none;
  }

  .section {
    padding: 52px 20px;
  }

  .service-breadcrumb,
  .service-content,
  .service-details {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-hero {
    min-height: 520px;
    padding: 52px 20px;
    text-align: center;
  }

  .service-hero > div {
    margin-right: auto;
    margin-left: auto;
  }

  .service-hero img {
    height: 100%;
  }

  .service-breadcrumb {
    text-align: center;
  }

  .service-footer-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .heading h2,
  .about h2,
  .contact h2,
  .field-heading h2 {
    font-size: 1.72rem;
  }

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

  .about,
  .contact,
  .service-contact,
  .service-content,
  .service-details,
  .service-panel,
  .testimonials,
  .why {
    text-align: center;
  }

  .about > div:first-child,
  .contact > div,
  .service-contact > div {
    display: grid;
    justify-items: center;
  }

  .about-points article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-list {
    text-align: center;
  }

  .whatsapp-action {
    align-items: center;
    text-align: center;
  }

  .service-content ul,
  .service-panel ul {
    padding-left: 0;
    list-style: none;
  }

  .solution-card {
    min-height: 470px;
  }

  .solution-grid > .solution-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .solution-card img {
    height: 290px;
  }

  .solution-card h3 {
    font-size: 1.2rem;
  }

  .about-person > img {
    width: min(100%, 340px);
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .about-brand-mark {
    top: 12px;
    right: 12px;
    left: auto;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .about-brand-mark img {
    width: 34px;
    height: 34px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .work-carousel {
    grid-template-columns: 1fr;
  }

  .arrow {
    display: none;
  }

  .work-track {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .footer {
    padding: 0 20px 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-bottom: 20px;
  }

  .footer-brand img {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand p {
    max-width: 320px;
  }

  .footer-column {
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

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

@media (max-width: 520px) {
  .topbar {
    gap: 12px;
  }

  .identity {
    gap: 10px;
  }

  .logo {
    width: 48px;
    height: 48px;
  }

  .identity strong {
    font-size: 1.08rem;
  }

  .identity small {
    font-size: 0.78rem;
  }

  .nav {
    top: 116px;
    max-height: calc(100vh - 132px);
    overflow-y: auto;
  }

  .hero-stage {
    height: auto;
    min-height: 540px;
  }

  .hero-stage-card,
  .hero-stage-card img {
    min-height: 540px;
  }

  .hero-stage-overlay {
    gap: 18px;
    padding: 20px 16px 24px;
  }

  .hero-stage-copy {
    row-gap: 10px;
  }

  .hero-stage-copy h1,
  .hero-stage-copy h2 {
    max-width: 11ch;
    min-height: auto;
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .hero-stage-copy p {
    max-width: 28ch;
    min-height: auto;
    font-size: 0.95rem;
  }

  .hero-points {
    width: 100%;
    min-height: 0;
  }

  .hero-points li {
    width: 100%;
    padding: 8px 10px;
    font-size: 0.98rem;
  }

  .hero-cta,
  .about-link,
  .card-link,
  .whatsapp-action,
  form button,
  .service-contact form button {
    width: 100%;
    min-width: 0;
  }

  .section,
  .service-breadcrumb,
  .service-content,
  .service-details,
  .service-footer-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .solution-card {
    min-height: 430px;
  }

  .solution-card > div {
    gap: 16px;
    padding: 24px 18px;
  }

  .solution-card h3 {
    max-width: 12ch;
    font-size: 1.12rem;
  }

  .about h2 {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
  }

  .about h3 {
    font-size: 1.08rem;
  }

  .about p {
    font-size: 0.98rem;
  }

  .about-person {
    width: 100%;
  }

  .about-person > img {
    width: min(100%, 320px);
  }

  .about-points article,
  .why-grid article,
  .testimonial-grid article,
  .service-content article,
  .service-panel {
    padding: 20px 16px;
  }

  .work-track {
    grid-auto-columns: minmax(240px, 88vw);
  }

  .service-breadcrumb {
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .service-hero {
    min-height: 470px;
    padding: 42px 16px;
  }

  .service-hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.6rem);
  }

  .service-location {
    font-size: 1.02rem;
  }

  .service-detail-visual img {
    min-height: 260px;
  }

  .footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}
