:root {
  --navy: #0b2d5b;
  --navy-dark: #071d3b;
  --ink: #142033;
  --charcoal: #1c2633;
  --gold: #c8b56a;
  --grey: #f4f6f8;
  --line: #dbe1e7;
  --muted: #5f6b78;
  --white: #fff;
  --shell: min(1240px, calc(100vw - 48px));
  font-family:
    Inter,
    Aptos,
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--charcoal);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
}
body,
button,
input,
select,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
p {
  line-height: 1.7;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.site-shell {
  overflow: clip;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
}
.skip-link:focus {
  top: 12px;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-heading {
  max-width: 760px;
}
.section-heading.center {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}
.section-heading > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}
.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.68rem;
}
.button-quiet {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}
.button-quiet:hover {
  border-color: var(--navy);
  background: var(--grey);
}
.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-dark);
}
.button-light:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.button-outline-light {
  border-color: #ffffff73;
  background: transparent;
  color: var(--white);
}
.button-outline-light:hover {
  border-color: var(--white);
  background: #ffffff14;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link svg {
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translate(4px);
}
.text-link.inverse {
  color: var(--gold);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 86px;
  border-bottom: 1px solid rgba(11, 45, 91, 0.1);
  background: #fffffff5;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition:
    height 0.25s,
    box-shadow 0.25s;
}
.site-header.is-compact {
  height: 70px;
  box-shadow: 0 8px 30px #071d3b14;
}
.header-inner {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  gap: 28px;
}
.brand-link {
  width: 218px;
  margin-right: auto;
}
.brand-link img {
  width: 100%;
  height: auto;
}
.desktop-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}
.desktop-nav > a,
.service-menu > button {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: none;
  color: #344153;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}
.desktop-nav > a:after,
.service-menu > button:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s;
}
.desktop-nav > a.active:after,
.desktop-nav > a:hover:after,
.service-menu > button.active:after,
.service-menu > button:hover:after {
  transform: scaleX(1);
}
.service-menu {
  height: 100%;
}
.service-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  width: 360px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 50px #071d3b24;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.service-dropdown.open,
.service-menu:focus-within .service-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.service-dropdown a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
.service-dropdown a:last-child {
  border: 0;
}
.service-dropdown a:hover {
  background: var(--grey);
}
.service-dropdown span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}
.service-dropdown small {
  color: var(--muted);
  font-size: 0.72rem;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.mobile-panel {
  display: none;
}
main {
  padding-top: 86px;
}
.home-hero {
  padding: 86px 0 72px;
  background: linear-gradient(180deg, #fff, #f7f9fb);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 54px;
}
.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 5.7vw, 6rem);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}
.hero-art {
  position: relative;
  margin: 0;
  padding: 16px 16px 46px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 26px 60px #071d3b1f;
}
.hero-art:before {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
}
.hero-art img {
  width: 100%;
  aspect-ratio: 1983 / 793;
  object-fit: contain;
}
.hero-art figcaption {
  position: absolute;
  right: 20px;
  bottom: 15px;
  left: 20px;
  color: var(--muted);
  font-size: 0.72rem;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 30px;
  padding-block: 28px;
}
.trust-strip span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.trust-strip p {
  margin: 0;
  color: var(--muted);
}
.trust-strip strong {
  color: var(--ink);
}
.problem-section .section-heading {
  margin-bottom: 64px;
}
.problem-chain {
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
  align-items: center;
}
.problem-chain article {
  min-height: 270px;
  padding: 34px 30px;
  border-top: 3px solid var(--navy);
  background: var(--grey);
}
.problem-chain article span {
  color: var(--gold);
  font-weight: 800;
}
.problem-chain h3 {
  margin: 42px 0 14px;
  font-size: 1.45rem;
}
.problem-chain p {
  margin: 0;
  color: var(--muted);
}
.chain-line {
  height: 1px;
  background: var(--gold);
}
.services-section {
  background: var(--grey);
}
.services-section .section-heading {
  margin-bottom: 56px;
}
.service-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: 38px;
  background: var(--white);
}
.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  color: var(--gold);
}
.service-card-head span {
  font-size: 1rem;
  font-weight: 900;
}
.service-card-head svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
  stroke-width: 1.5;
}
.service-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}
.service-card > strong {
  color: var(--navy);
  font-size: 0.9rem;
}
.service-card > p {
  margin: 22px 0;
  color: var(--muted);
}
.service-card ul {
  margin: 0 0 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.service-card li {
  padding: 8px 0;
  color: #3f4a57;
  font-size: 0.88rem;
}
.service-card li:before {
  margin-right: 10px;
  color: var(--gold);
  content: "—";
}
.service-card .text-link {
  margin-top: auto;
}
.why-section {
  background: var(--navy-dark);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}
.why-section h2,
.why-section .section-heading > p {
  color: var(--white);
}
.why-section .section-heading > p {
  opacity: 0.72;
}
.why-section .eyebrow {
  color: var(--gold);
}
.difference-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.difference-list article {
  display: grid;
  grid-template-columns: 48px 38px 1fr;
  gap: 22px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.difference-list article > span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}
.difference-list svg {
  color: var(--gold);
  stroke-width: 1.6;
}
.difference-list h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}
.difference-list p {
  margin: 0;
  color: #ffffffa8;
  font-size: 0.9rem;
}
.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.project-card {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.project-visual {
  --project-accent: #c8b56a;
  position: relative;
  display: block;
  width: 100%;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--project-accent);
  background: #e9edf1;
  contain: paint;
}
.project-visual.compact {
  min-height: 0;
  aspect-ratio: 16 / 10;
}
.project-visual img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.42s ease;
}
.project-card:hover .project-visual img {
  transform: scale(1.018);
}
.project-visual figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  width: fit-content;
  max-width: calc(100% - 44px);
  padding: 9px 12px;
  background: #0b2d5beb;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}
.project-card-copy {
  padding: 28px 4px 34px;
}
.project-card-copy > span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.project-card-copy h3 {
  margin: 12px 0 10px;
  font-size: 1.8rem;
}
.project-card-copy p {
  min-height: 52px;
  color: var(--muted);
}
.project-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 22px;
}
.project-links .text-link {
  margin: 0;
}
.project-platform {
  display: block;
  margin-top: 22px;
  color: #687583;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-live-link {
  width: fit-content;
  margin-top: 28px;
}
.process-preview {
  background: var(--grey);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid article {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid var(--line);
}
.process-grid article:last-child {
  border-right: 0;
}
.process-grid span {
  color: var(--gold);
  font-weight: 900;
}
.process-grid h3 {
  margin: 70px 0 12px;
  font-size: 1.5rem;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.partnership-section {
  padding: 104px 0;
  background: var(--navy);
  color: var(--white);
}
.partnership-section .shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
}
.partnership-label {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.partnership-rule {
  height: 1px;
  background: #ffffff3d;
}
.partnership-section h2 {
  grid-column: 1 / -1;
  max-width: 800px;
  margin: 64px 0 20px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}
.partnership-section p {
  grid-column: 1 / 3;
  max-width: 650px;
  margin: 0;
  color: #ffffffb8;
}
.partnership-section .button {
  grid-column: 3;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 96px;
}
.about-mark {
  position: relative;
  overflow: hidden;
  background: var(--grey);
}
.about-mark:after {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}
.about-mark img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.faq-preview {
  background: var(--grey);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 740px;
  margin: 0;
  padding: 0 46px 26px 0;
  color: var(--muted);
}
.final-cta {
  padding: 92px 0;
  background: var(--navy-dark);
}
.final-cta .shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.final-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}
.final-cta p {
  max-width: 650px;
  margin: 0;
  color: #ffffffa6;
}
.final-cta .eyebrow {
  color: var(--gold);
}
.cta-actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}
.page-hero {
  padding: 106px 0 100px;
  background: var(--grey);
}
.page-hero .shell {
  position: relative;
}
.page-hero .shell:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
}
.page-hero h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}
.page-hero .shell > div > p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.foundation-model {
  background: var(--navy-dark);
  color: var(--white);
}
.model-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.model-track > div {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.model-track > div:last-child {
  border: 0;
}
.model-track span {
  color: var(--gold);
  font-weight: 900;
}
.model-track strong {
  max-width: 220px;
  font-size: 1.7rem;
}
.model-track svg {
  position: absolute;
  right: -18px;
  top: calc(50% - 18px);
  z-index: 2;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: var(--gold);
  color: var(--navy-dark);
}
.model-explanation {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  margin-top: 70px;
}
.model-explanation h2 {
  color: var(--white);
  font-size: 2.6rem;
}
.model-explanation p {
  color: #ffffffad;
}
.service-comparison .shell > article {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr auto;
  gap: 42px;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}
.service-comparison .shell > article:last-child {
  border-bottom: 1px solid var(--line);
}
.service-comparison h2 {
  margin: 8px 0;
  font-size: 2rem;
}
.service-comparison span {
  color: var(--gold);
  font-weight: 900;
}
.service-comparison strong {
  color: var(--navy);
  font-size: 0.8rem;
}
.service-comparison h3 {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-comparison p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.scope-section {
  background: var(--grey);
}
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.scope-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.scope-grid li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}
.scope-grid li span {
  color: var(--gold);
  font-size: 0.7rem;
}
.service-hero {
  padding: 110px 0;
  background: var(--navy-dark);
  color: var(--white);
}
.service-hero.business-systems {
  background: #102942;
}
.service-hero.growth-infrastructure {
  background: #132e4c;
}
.service-hero .shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 90px;
}
.service-hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}
.service-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 32px;
  color: #ffffffb3;
  font-size: 1.08rem;
}
.service-hero .eyebrow {
  color: var(--gold);
}
.pillar-visual {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.pillar-visual > svg {
  width: 76px;
  height: 76px;
  color: var(--gold);
  stroke-width: 1.2;
}
.pillar-visual > span {
  position: relative;
  z-index: 1;
  max-width: 330px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
}
.pillar-lines {
  position: absolute;
  top: 25%;
  right: -35%;
  bottom: -35%;
  left: 25%;
  border: 55px solid rgba(200, 181, 106, 0.22);
  transform: rotate(45deg);
}
.split-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}
.numbered-list {
  border-top: 1px solid var(--line);
}
.numbered-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.numbered-list span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}
.numbered-list p {
  margin: 0;
  color: var(--muted);
}
.inclusions {
  background: var(--grey);
}
.inclusions.business-systems {
  background: var(--navy-dark);
}
.inclusions.business-systems h2 {
  color: var(--white);
}
.inclusions.business-systems .section-heading > p {
  color: #ffffffa6;
}
.inclusions .section-heading {
  margin-bottom: 54px;
}
.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.inclusion-grid > div {
  min-height: 160px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inclusions.business-systems .inclusion-grid,
.inclusions.business-systems .inclusion-grid > div {
  border-color: #ffffff2e;
}
.inclusion-grid span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}
.inclusion-grid p {
  margin: 54px 0 0;
  color: var(--ink);
  font-weight: 800;
}
.inclusions.business-systems .inclusion-grid p {
  color: var(--white);
}
.suitable-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
}
.suitable ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.suitable li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.suitable li svg {
  flex: 0 0 auto;
  color: var(--gold);
}
.approach-panel {
  padding: 46px;
  background: var(--navy);
  color: var(--white);
}
.approach-panel .eyebrow {
  color: var(--gold);
}
.approach-panel > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.approach-panel span {
  color: var(--gold);
  font-weight: 900;
}
.approach-panel p {
  margin: 0;
  color: #ffffffb8;
}
.relevant-work {
  background: var(--grey);
}
.relevant-work .section-heading,
.related-services .section-heading {
  margin-bottom: 48px;
}
.related-grid {
  grid-template-columns: repeat(2, 1fr);
}
.related-grid .service-card {
  min-height: 520px;
}
.work-page {
  background: var(--white);
}
.case-hero {
  padding: 100px 0;
  background: var(--grey);
}
.case-hero .shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 74px;
}
.case-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}
.case-hero p:not(.eyebrow) {
  color: var(--muted);
}
.back-link {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 110px;
}
.case-layout aside {
  position: sticky;
  top: 105px;
  display: flex;
  height: fit-content;
  flex-direction: column;
  padding-top: 24px;
  border-top: 2px solid var(--navy);
}
.case-layout aside span {
  margin-top: 24px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-layout aside strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.9rem;
}
.case-content {
  max-width: 760px;
}
.case-content section {
  padding: 0 0 70px;
}
.case-content h2 {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
.case-content p {
  color: var(--muted);
  font-size: 1.05rem;
}
.case-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0;
  list-style: none;
}
.case-content li {
  display: flex;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--line);
}
.case-content li svg {
  flex: 0 0 auto;
  color: var(--gold);
}
.case-content blockquote {
  padding: 42px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.35;
}
.case-content blockquote span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.origin-grid h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.origin-grid > div:last-child p {
  color: var(--muted);
  font-size: 1.05rem;
}
.mission-vision {
  padding: 90px 0;
  background: var(--navy-dark);
}
.mission-vision .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ffffff2e;
}
.mission-vision article {
  padding: 50px;
  background: var(--navy-dark);
}
.mission-vision span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.mission-vision h2 {
  margin: 52px 0 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.3;
}
.values-section {
  background: var(--grey);
}
.values-section .section-heading {
  margin-bottom: 56px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.values-grid article {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.values-grid article:last-child {
  border: 0;
}
.values-grid span {
  color: var(--gold);
  font-weight: 900;
}
.values-grid h3 {
  margin: 76px 0 14px;
}
.values-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}
.operating-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}
.operating-mark {
  padding: 60px;
  background: var(--grey);
}
.operating-mark img {
  mix-blend-mode: multiply;
}
.process-page article {
  display: grid;
  grid-template-columns: 120px 0.8fr 1.2fr;
  gap: 60px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.process-page article:last-child {
  border-bottom: 1px solid var(--line);
}
.process-number {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}
.process-main h2 {
  font-size: 2.2rem;
}
.process-detail > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.process-detail strong {
  color: var(--ink);
  font-size: 0.8rem;
}
.process-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.expectations {
  background: var(--grey);
}
.expectations .section-heading {
  margin-bottom: 48px;
}
.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.expectation-grid article {
  min-height: 220px;
  padding: 30px;
  background: var(--white);
}
.expectation-grid h3 {
  margin-bottom: 54px;
}
.expectation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.faq-page .shell {
  max-width: 940px;
}
.contact-section {
  background: var(--grey);
}
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: start;
  gap: 70px;
}
.contact-grid aside {
  position: sticky;
  top: 105px;
  padding: 34px;
  background: var(--navy-dark);
  color: var(--white);
}
.contact-grid aside .eyebrow {
  color: var(--gold);
}
.contact-grid aside h2 {
  color: var(--white);
  font-size: 2rem;
}
.contact-grid aside > p {
  color: #ffffffa6;
}
.contact-grid aside > a,
.contact-grid aside > span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}
.contact-grid aside svg {
  flex: 0 0 auto;
  color: var(--gold);
}
.project-form {
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #cfd6de;
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
}
.project-form textarea {
  resize: vertical;
}
.project-form [aria-invalid="true"] {
  border-color: #a52929;
}
.field-error {
  color: #a52929;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
}
.form-submit {
  margin-top: 6px;
  cursor: pointer;
}
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.form-confirmation {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid #2d7c56;
  background: #eef8f2;
}
.form-confirmation svg {
  flex: 0 0 auto;
  color: #2d7c56;
}
.form-confirmation p {
  margin: 4px 0 0;
  color: #456154;
  font-size: 0.84rem;
}
.legal-page .shell {
  max-width: 840px;
}
.legal-page h2 {
  margin: 50px 0 14px;
  font-size: 1.55rem;
}
.legal-page h2:first-child {
  margin-top: 0;
}
.legal-page p {
  color: var(--muted);
}
.legal-page a {
  color: var(--navy);
  text-decoration: underline;
}
.not-found {
  min-height: calc(100vh - 86px);
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
}
.not-found img {
  width: 120px;
  margin-bottom: 40px;
  mix-blend-mode: screen;
}
.not-found .eyebrow {
  color: var(--gold);
}
.not-found h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 7rem);
}
.not-found p {
  color: #ffffffad;
}
.not-found .shell > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.95fr 1fr;
  gap: 70px;
  padding-block: 74px;
}
.footer-brand img {
  width: 270px;
  margin-bottom: 26px;
}
.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-main h2 {
  margin-bottom: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-main > div:not(.footer-brand) > a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-main a:hover {
  color: var(--navy);
}
.footer-contact svg {
  color: var(--gold);
}
.footer-bottom {
  padding: 22px 0;
  background: var(--navy-dark);
  color: #ffffff9e;
  font-size: 0.72rem;
}
.footer-bottom .shell {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-bottom .shell > div {
  display: flex;
  gap: 24px;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #1f6b4e;
  color: var(--white);
  box-shadow: 0 14px 36px #071d3b33;
  font-size: 0.75rem;
  font-weight: 800;
}
.whatsapp-float:hover {
  background: #195a41;
}
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }
  .desktop-nav {
    gap: 18px;
  }
  .brand-link {
    width: 190px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 820px;
  }
  .hero-art {
    width: min(860px, 100%);
  }
  .why-grid,
  .faq-grid {
    gap: 60px;
  }
  .inclusion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid article {
    border-bottom: 1px solid var(--line);
  }
  .process-page article {
    grid-template-columns: 80px 0.8fr 1.2fr;
    gap: 36px;
  }
  .footer-main {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
  }
  .footer-contact {
    grid-column: 2 / 4;
  }
}
@media (max-width: 840px) {
  :root {
    --shell: calc(100% - 32px);
  }
  .section {
    padding: 84px 0;
  }
  .site-header,
  .site-header.is-compact {
    height: 70px;
  }
  main {
    padding-top: 70px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .brand-link {
    width: 186px;
  }
  .mobile-panel {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    opacity: 0;
    transition:
      max-height 0.3s,
      opacity 0.2s;
  }
  .mobile-panel.open {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    opacity: 1;
  }
  .mobile-panel nav {
    width: var(--shell);
    margin: auto;
    padding: 18px 0 30px;
  }
  .mobile-panel a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
  }
  .mobile-service-links {
    padding-left: 20px;
  }
  .mobile-service-links a {
    color: var(--muted);
    font-size: 0.86rem;
  }
  .home-hero {
    padding: 68px 0 58px;
  }
  .hero-grid {
    gap: 44px;
  }
  .hero-copy h1 {
    font-size: clamp(3rem, 11vw, 5rem);
  }
  .trust-strip .shell {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .problem-chain {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .problem-chain article {
    min-height: auto;
  }
  .chain-line {
    width: 1px;
    height: 34px;
    margin-left: 40px;
  }
  .service-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .why-grid,
  .about-preview-grid,
  .faq-grid,
  .scope-grid,
  .service-hero .shell,
  .split-heading,
  .suitable-grid,
  .case-hero .shell,
  .origin-grid,
  .operating-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .heading-row {
    align-items: start;
    flex-direction: column;
  }
  .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 var(--line);
  }
  .partnership-section .shell {
    grid-template-columns: auto 1fr;
  }
  .partnership-label:last-of-type {
    grid-column: 1 / 3;
    margin-top: 20px;
  }
  .partnership-section h2,
  .partnership-section p,
  .partnership-section .button {
    grid-column: 1 / -1;
  }
  .partnership-section .button {
    width: fit-content;
    margin-top: 30px;
  }
  .final-cta .shell {
    align-items: start;
    flex-direction: column;
  }
  .model-explanation {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-comparison .shell > article {
    grid-template-columns: 1fr 1fr;
  }
  .service-comparison .text-link {
    justify-self: start;
  }
  .pillar-visual {
    width: min(560px, 100%);
  }
  .case-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .case-layout aside {
    position: static;
  }
  .mission-vision .shell {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-page article {
    grid-template-columns: 70px 1fr;
  }
  .process-detail {
    grid-column: 2;
  }
  .expectation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid aside {
    position: static;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-contact {
    grid-column: auto;
  }
}
@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
  }
  .section {
    padding: 70px 0;
  }
  .section-heading h2 {
    font-size: 2.25rem;
  }
  .brand-link {
    width: 168px;
  }
  .hero-copy h1 {
    font-size: 3.05rem;
  }
  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }
  .hero-art {
    padding: 8px 8px 44px;
  }
  .problem-chain article {
    padding: 28px 24px;
  }
  .service-card {
    padding: 28px 24px;
  }
  .service-card-head {
    margin-bottom: 42px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .project-visual.compact {
    min-height: 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-grid article:last-child {
    border-bottom: 0;
  }
  .process-grid h3 {
    margin-top: 44px;
  }
  .partnership-section .shell {
    display: block;
  }
  .partnership-rule {
    margin: 16px 0;
  }
  .partnership-label:last-of-type {
    margin-top: 0;
  }
  .about-preview-grid {
    gap: 40px;
  }
  .final-cta {
    padding: 74px 0;
  }
  .page-hero {
    padding: 74px 0 68px;
  }
  .page-hero .shell:after {
    display: none;
  }
  .page-hero h1 {
    font-size: 3.1rem;
  }
  .model-track {
    grid-template-columns: 1fr;
  }
  .model-track > div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .model-track svg {
    right: 24px;
    top: auto;
    bottom: -18px;
    transform: rotate(90deg);
  }
  .service-comparison .shell > article {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-hero {
    padding: 78px 0;
  }
  .service-hero h1 {
    font-size: 3.15rem;
  }
  .pillar-visual {
    padding: 32px;
  }
  .inclusion-grid {
    grid-template-columns: 1fr;
  }
  .inclusion-grid > div {
    min-height: 130px;
  }
  .inclusion-grid p {
    margin-top: 36px;
  }
  .approach-panel {
    padding: 30px 24px;
  }
  .project-visual {
    min-height: 360px;
  }
  .case-hero {
    padding: 72px 0;
  }
  .case-hero h1 {
    font-size: 3.1rem;
  }
  .case-content ul {
    grid-template-columns: 1fr;
  }
  .case-content blockquote {
    padding: 30px 24px;
    font-size: 1.35rem;
  }
  .mission-vision article {
    padding: 34px 24px;
  }
  .mission-vision h2 {
    margin-top: 36px;
    font-size: 1.55rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-grid article {
    min-height: 230px;
    border-right: 0;
  }
  .values-grid h3 {
    margin-top: 50px;
  }
  .process-page article {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 50px 0;
  }
  .process-detail {
    grid-column: 1;
  }
  .process-detail > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .expectation-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 34px;
  }
  .project-form {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 58px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
  .footer-brand img {
    width: 230px;
  }
  .footer-bottom .shell {
    flex-direction: column;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float span {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
